You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

NOT WORKING

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

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

  • No labels