Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

The POP3 transport handler allows the receiving of processing results as an email via POP3.

Options

  • folder: The folder (optional, default: INBOX)
  • keep: Do not delete mail after fetching (optional, default: true)
  • host: The mail host (optional, default: localhost)
  • port: The mail port. (optional, default: 995)
  • username: The username for POP3 auth (optional)
  • password: The password for POP3 auth (optional)

Example

PQL

Code Block
themeEclipse
titlePOP3 Transport Handler
linenumberstrue
output = ACCESS({source='Source',
wrapper='GenericPull',
transport='POP3',
protocol='CSV',
dataHandler='Tuple',
options=[
 ['host','smtp.example.com'],
 ['folder','INBOX'],
 ['keep','false']
 ['username','Alice'],
 ['password','***']],
}, result)