comparison xml/en/docs/mail/ngx_mail_imap_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 d7f34859645b
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_imap_module" 10 <module name="Module ngx_mail_imap_module"
11 link="/en/docs/mail/ngx_mail_imap_module.html" 11 link="/en/docs/mail/ngx_mail_imap_module.html"
12 lang="en" 12 lang="en"
13 rev="5"> 13 rev="6">
14 14
15 <section id="directives" name="Directives"> 15 <section id="directives" name="Directives">
16 16
17 <directive name="imap_auth"> 17 <directive name="imap_auth">
18 <syntax><value>method</value> ...</syntax> 18 <syntax><value>method</value> ...</syntax>
23 <para> 23 <para>
24 Sets permitted methods of authentication for IMAP clients. 24 Sets permitted methods of authentication for IMAP clients.
25 Supported methods are: 25 Supported methods are:
26 <list type="tag"> 26 <list type="tag">
27 27
28 <tag-name><literal>plain</literal></tag-name>
29 <tag-desc>
30 <link url="https://tools.ietf.org/html/rfc4616">AUTH=PLAIN</link>
31 </tag-desc>
32
28 <tag-name><literal>login</literal></tag-name> 33 <tag-name><literal>login</literal></tag-name>
29 <tag-desc> 34 <tag-desc>
30 <link url="https://tools.ietf.org/html/draft-murchison-sasl-login-00">AUTH=LOGIN</link> 35 <link url="https://tools.ietf.org/html/draft-murchison-sasl-login-00">AUTH=LOGIN</link>
31 </tag-desc>
32
33 <tag-name><literal>plain</literal></tag-name>
34 <tag-desc>
35 <link url="https://tools.ietf.org/html/rfc4616">AUTH=PLAIN</link>
36 </tag-desc> 36 </tag-desc>
37 37
38 <tag-name><literal>cram-md5</literal></tag-name> 38 <tag-name><literal>cram-md5</literal></tag-name>
39 <tag-desc> 39 <tag-desc>
40 <link url="https://tools.ietf.org/html/rfc2195">AUTH=CRAM-MD5</link>. 40 <link url="https://tools.ietf.org/html/rfc2195">AUTH=CRAM-MD5</link>.