comparison xml/en/docs/mail/ngx_mail_smtp_module.xml @ 2736:48004177276d

Reordered methods in imap_auth and smtp_auth. The "LOGIN" SASL mechanism is obsolete and expected to be only used for compatibility. Accordingly, the corresponding "login" method is now listed after the "plain" method.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 10 Jun 2021 18:34:32 +0300
parents 3d2c4bb34e82
children 9986e1f25cd7
comparison
equal deleted inserted replaced
2735:ff357b676c2e 2736:48004177276d
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_mail_smtp_module" 10 <module name="Module ngx_mail_smtp_module"
11 link="/en/docs/mail/ngx_mail_smtp_module.html" 11 link="/en/docs/mail/ngx_mail_smtp_module.html"
12 lang="en" 12 lang="en"
13 rev="6"> 13 rev="7">
14 14
15 <section id="directives" name="Directives"> 15 <section id="directives" name="Directives">
16 16
17 <directive name="smtp_auth"> 17 <directive name="smtp_auth">
18 <syntax><value>method</value> ...</syntax> 18 <syntax><value>method</value> ...</syntax>
19 <default>login plain</default> 19 <default>plain login</default>
20 <context>mail</context> 20 <context>mail</context>
21 <context>server</context> 21 <context>server</context>
22 22
23 <para> 23 <para>
24 Sets permitted methods of 24 Sets permitted methods of
25 <link url="https://tools.ietf.org/html/rfc2554">SASL authentication</link> 25 <link url="https://tools.ietf.org/html/rfc2554">SASL authentication</link>
26 for SMTP clients. 26 for SMTP clients.
27 Supported methods are: 27 Supported methods are:
28 <list type="tag"> 28 <list type="tag">
29 29
30 <tag-name><literal>plain</literal></tag-name>
31 <tag-desc>
32 <link url="https://tools.ietf.org/html/rfc4616">AUTH PLAIN</link>
33 </tag-desc>
34
30 <tag-name><literal>login</literal></tag-name> 35 <tag-name><literal>login</literal></tag-name>
31 <tag-desc> 36 <tag-desc>
32 <link url="https://tools.ietf.org/html/draft-murchison-sasl-login-00">AUTH LOGIN</link> 37 <link url="https://tools.ietf.org/html/draft-murchison-sasl-login-00">AUTH LOGIN</link>
33 </tag-desc>
34
35 <tag-name><literal>plain</literal></tag-name>
36 <tag-desc>
37 <link url="https://tools.ietf.org/html/rfc4616">AUTH PLAIN</link>
38 </tag-desc> 38 </tag-desc>
39 39
40 <tag-name><literal>cram-md5</literal></tag-name> 40 <tag-name><literal>cram-md5</literal></tag-name>
41 <tag-desc> 41 <tag-desc>
42 <link url="https://tools.ietf.org/html/rfc2195">AUTH CRAM-MD5</link>. 42 <link url="https://tools.ietf.org/html/rfc2195">AUTH CRAM-MD5</link>.