comparison src/mail/ngx_mail_imap_module.c @ 420:ad0a34a8efa6 NGINX_0_7_22

nginx 0.7.22 *) Feature: the "none" parameter in the "smtp_auth" directive. Thanks to Maxim Dounin. *) Feature: the "$cookie_..." variables. *) Bugfix: the "directio" directive did not work in XFS filesystem. *) Bugfix: the resolver did not understand big DNS responses. Thanks to Zyb.
author Igor Sysoev <http://sysoev.ru>
date Thu, 20 Nov 2008 00:00:00 +0300
parents 984bb0b1399b
children d0f7a625f27c
comparison
equal deleted inserted replaced
419:b986babf3f57 420:ad0a34a8efa6
34 34
35 static ngx_str_t ngx_mail_imap_auth_methods_names[] = { 35 static ngx_str_t ngx_mail_imap_auth_methods_names[] = {
36 ngx_string("AUTH=PLAIN"), 36 ngx_string("AUTH=PLAIN"),
37 ngx_string("AUTH=LOGIN"), 37 ngx_string("AUTH=LOGIN"),
38 ngx_null_string, /* APOP */ 38 ngx_null_string, /* APOP */
39 ngx_string("AUTH=CRAM-MD5") 39 ngx_string("AUTH=CRAM-MD5"),
40 ngx_null_string /* NONE */
40 }; 41 };
41 42
42 43
43 static ngx_mail_protocol_t ngx_mail_imap_protocol = { 44 static ngx_mail_protocol_t ngx_mail_imap_protocol = {
44 ngx_string("imap"), 45 ngx_string("imap"),