Skip to content

Commit

Permalink
submission_ssl: Fix to use same allowed values as submission_relay_ssl
Browse files Browse the repository at this point in the history
See GitHub Issue #868
  • Loading branch information
slusarz authored and sirainen committed Aug 31, 2024
1 parent 48f5686 commit b0421cc
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions data/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -6971,9 +6971,21 @@ User name for authentication to the relay MTA if authentication is required.`
submission_ssl: {
default: 'no',
seealso: [ 'submission_host' ],
values: setting_types.BOOLEAN,
values: setting_types.STRING,
values_enum: [ 'no', 'smtps', 'starttls' ],
text: `
If enabled, use SSL/TLS to connect to [[setting,submission_host]].`
If enabled, use SSL/TLS to connect to [[setting,submission_host]].
Available values:
\`no\`
: No SSL connection is used.
\`smtps\`
: An SMTPS connection (immediate SSL) is used.
\`starttls\`
: The STARTTLS command is used to establish the TLS layer.`
},

submission_timeout: {
Expand Down

0 comments on commit b0421cc

Please sign in to comment.