comparison src/mail/ngx_mail_core_module.c @ 400:6ebbca3d5ed7 NGINX_0_7_12

nginx 0.7.12 *) Feature: the "server_name" directive supports empty name "". *) Feature: the "gzip_disable" directive supports special "msie6" mask. *) Bugfix: if the "max_fails=0" parameter was used in upstream with several servers, then a worker process exited on a SIGFPE signal. Thanks to Maxim Dounin. *) Bugfix: a request body was dropped while redirection via an "error_page" directive. *) Bugfix: a full response was returned for request method HEAD while redirection via an "error_page" directive. *) Bugfix: the $r->header_in() method did not return value of the "Host", "User-Agent", and "Connection" request header lines; the bug had appeared in 0.7.0.
author Igor Sysoev <http://sysoev.ru>
date Tue, 26 Aug 2008 00:00:00 +0400
parents edf1cb6c328e
children a094317ba307
comparison
equal deleted inserted replaced
399:59e324e4d6d3 400:6ebbca3d5ed7
327 327
328 ngx_memzero(imls, sizeof(ngx_mail_listen_t)); 328 ngx_memzero(imls, sizeof(ngx_mail_listen_t));
329 329
330 imls->addr = u.addr.in_addr; 330 imls->addr = u.addr.in_addr;
331 imls->port = u.port; 331 imls->port = u.port;
332 imls->family = AF_INET; 332 imls->family = u.family;
333 imls->ctx = cf->ctx; 333 imls->ctx = cf->ctx;
334 334
335 for (m = 0; ngx_modules[m]; m++) { 335 for (m = 0; ngx_modules[m]; m++) {
336 if (ngx_modules[m]->type != NGX_MAIL_MODULE) { 336 if (ngx_modules[m]->type != NGX_MAIL_MODULE) {
337 continue; 337 continue;