Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In progress

 

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

...

  • 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: 25995)
  • username: The username for POP3 auth (optional)
  • password: The password for POP3 auth (optional)

...

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)