diff options
author | Marcin Serwin <marcin.serwin0@protonmail.com> | 2023-03-14 10:42:49 +0000 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-03-26 20:44:56 +0200 |
commit | c09b17a930cc58c13dd5dd2ba8e7a261833eb05a (patch) | |
tree | 3d876bd91e3d0c463e8bb79129dfeb09cef16fd2 /doc | |
parent | 6d59ad3f02bc97c0b5040f59259fa8450702a2e2 (diff) | |
download | aerc-c09b17a930cc58c13dd5dd2ba8e7a261833eb05a.tar.gz |
smtp: replace smtp-starttls with schema option
The "smtp-starttls" options is now ignored in favor of more detailed
schema specification, similarly to IMAP.
Fixes: https://todo.sr.ht/~rjarry/aerc/149
Signed-off-by: Marcin Serwin <marcin.serwin0@protonmail.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/aerc-smtp.5.scd | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/doc/aerc-smtp.5.scd b/doc/aerc-smtp.5.scd index 850a71b2..88fb6629 100644 --- a/doc/aerc-smtp.5.scd +++ b/doc/aerc-smtp.5.scd @@ -15,14 +15,17 @@ SMTP configuration may be done interactively with the *:new-account* command. In _accounts.conf_ (see *aerc-accounts*(5)), the following SMTP-specific options are available: -*outgoing* = _<scheme>_+_<auth>_://_<username>_[_:<password>_]_@<hostname>_[_:<port>_]?[_<oauth2_params>_] +*outgoing* = _<scheme>_[_+<auth>_]://_<username>_[_:<password>_]_@<hostname>_[_:<port>_]?[_<oauth2_params>_] Remember that all fields must be URL encoded. The _@_ symbol, when URL encoded, is _%40_. The value of _<scheme>_ can be: _smtp_ - Unencrypted SMTP + SMTP with STARTTLS + + _smtp+insecure_ + SMTP without STARTTLS _smtps_ SMTP with TLS/SSL @@ -58,12 +61,6 @@ are available: Example: outgoing-cred-cmd = pass hostname/username -*smtp-starttls* = _true_|_false_ - Set this to _true_ if the server uses STARTTLS. In that case you should - also use _smtp://_ instead of _smtps://_. - - Default: _false_ - *smtp-domain* = _<domain>_ Local domain name to use in the HELO/EHLO SMTP command. Set this to a fully qualified domain name if the server requires it as an antispam measure. |