Page History
...
- 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
- general mail settings from https://javaee.github.io/javamail/docs/api/javax/mail/package-summary.html
mail.imap.
properties from https://javaee.github.io/javamail/docs/api/com/sun/mail/imap/package-summary.htmlmail.pop3.
properties from https://javaee.github.io/javamail/docs/api/com/sun/mail/pop3/package-summary.html
- 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.
- the
- When using OAuth2 authentication then the following settings are used:
- the
mail.imap.auth
setting is assigned the valuetrue
. - the
mail.imap.auth.mechanisms
setting is assigned the valueXOAUTH2
. - 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.
- the
- the
- For authentication the following settings are used:
...
Overview
Content Tools