Versions Compared

Key

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

...

  • The variable names specified should match arguments available with the JITL MailInboxJob template.
  • Consider use of variable names that start with mail.store.mail.imap., mail.pop3, etc.
    • Names of variables correspond to Java properties available with the JavaMail API. Any of the JavaMail properties can be specified.
    • You will find a full list of available
    • Required properties include (but are not limited to):
      • mail.store.protocol
      • mail.imap.host
      • mail.imap.port
      • mail.imap.user
      • mail.imap.password
    • Optional properties include (but are not limited to):
      • For authentication the following settings are used:
        • the mail.imap.user setting is assigned the IMAP user account.
        • the mail.imap.password setting is assigned the password.
      • When using OAuth2 authentication then the following settings are used:
        • the mail.imap.auth setting is assigned the value true.
        • the mail.imap.auth.mechanisms setting is assigned the value XOAUTH2.
        • the mail.imap.user setting is assigned the OAuth2 user account.
        • the mail.imap.password setting is assigned the OAuth2 access token.
        • Some mail servers such as smtp.office365.com might force require the older SASL mechanism to be used:
          • the mail.imap.sasl.mechanisms.oauth2.oauthToken setting is assigned the OAuth2 access token.
          • the mail.imap.password setting is not specified.

...