Versions Compared

Key

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

...

AttributeUsageDescription
mail.smtp.portOptional

The port number for SMTP access to the mail server. Frequent port numbers include:

  • 25 (plain text)
  • 465 (TLS)
  • 587 (SSL)
mail.smtp.timeoutOptional

Socket read timeout for mail server connection.

mail.smtp.connectiontimeoutOptionalSocket connection timeout for mail server.
mail.smtp.userOptionalUser name for the account that sends e-mail, for example user@domain.
mail.smtp.passwordOptionalPassword for the account that sends e-mail.
mail.smtp.ssl.enableOptionalEnables SSL
mail.smtp.starttls.enableOptionalEnables TLS
mail.smtp.ssl.protocolsOptional

Specifies the TLS protocol version

, e.g. TLSv1, TLSv1.1, TLSv1.2, should an SSL connection be used

 should a TLS/SSL connection be used:

  • TLSv1 (considered insecure)
  • TLSv1.1 (considered insecure)
  • TLSv1.2


Basically, any settings with the prefix mail.smtp. can be configured with a Job Resource that is assigned the MailFragment. JS7 makes use of JavaMail: a list of available settings for example can be found at https://javaee.github.io/javamail/docs/api/com/sun/mail/smtp/package-summary.html.

...