comparison src/mail/ngx_mail_ssl_module.c @ 3938:1e90599af73b

use !aNULL to disable all anonymous cipher suites patch by Rob Stradling
author Igor Sysoev <igor@sysoev.ru>
date Mon, 27 Jun 2011 15:47:51 +0000
parents dd1570b6f237
children b1f48fa31e6c f87edc142316
comparison
equal deleted inserted replaced
3937:92badf634ba8 3938:1e90599af73b
7 #include <ngx_config.h> 7 #include <ngx_config.h>
8 #include <ngx_core.h> 8 #include <ngx_core.h>
9 #include <ngx_mail.h> 9 #include <ngx_mail.h>
10 10
11 11
12 #define NGX_DEFAULT_CIPHERS "HIGH:!ADH:!MD5" 12 #define NGX_DEFAULT_CIPHERS "HIGH:!aNULL:!MD5"
13 13
14 14
15 static void *ngx_mail_ssl_create_conf(ngx_conf_t *cf); 15 static void *ngx_mail_ssl_create_conf(ngx_conf_t *cf);
16 static char *ngx_mail_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child); 16 static char *ngx_mail_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child);
17 17