comparison auto/sources @ 336:1c519aff5c0c NGINX_0_6_12

nginx 0.6.12 *) Change: mail proxy was split on three modules: pop3, imap and smtp. *) Feature: the --without-mail_pop3_module, --without-mail_imap_module, and --without-mail_smtp_module configuration parameters. *) Feature: the "smtp_greeting_delay" and "smtp_client_buffer" directives of the ngx_mail_smtp_module. *) Bugfix: the trailing wildcards did not work; bug appeared in 0.6.9. *) Bugfix: nginx could not start on Solaris if the shared PCRE library located in non-standard place was used. *) Bugfix: the "proxy_hide_header" and "fastcgi_hide_header" directives did not hide response header lines whose name was longer than 32 characters. Thanks to Manlio Perillo.
author Igor Sysoev <http://sysoev.ru>
date Fri, 21 Sep 2007 00:00:00 +0400
parents 3a91bfeffaba
children 4276c2f1f434
comparison
equal deleted inserted replaced
335:9a32ae248b7a 336:1c519aff5c0c
423 MAIL_SRCS="src/mail/ngx_mail.c \ 423 MAIL_SRCS="src/mail/ngx_mail.c \
424 src/mail/ngx_mail_core_module.c \ 424 src/mail/ngx_mail_core_module.c \
425 src/mail/ngx_mail_handler.c \ 425 src/mail/ngx_mail_handler.c \
426 src/mail/ngx_mail_parse.c" 426 src/mail/ngx_mail_parse.c"
427 427
428 MAIL_POP3_MODULE="ngx_mail_pop3_module"
429 MAIL_POP3_DEPS="src/mail/ngx_mail_pop3_module.h"
430 MAIL_POP3_SRCS="src/mail/ngx_mail_pop3_module.c \
431 src/mail/ngx_mail_pop3_handler.c"
432
433 MAIL_IMAP_MODULE="ngx_mail_imap_module"
434 MAIL_IMAP_DEPS="src/mail/ngx_mail_imap_module.h"
435 MAIL_IMAP_SRCS="src/mail/ngx_mail_imap_module.c \
436 src/mail/ngx_mail_imap_handler.c"
437
438 MAIL_SMTP_MODULE="ngx_mail_smtp_module"
439 MAIL_SMTP_DEPS="src/mail/ngx_mail_smtp_module.h"
440 MAIL_SMTP_SRCS="src/mail/ngx_mail_smtp_module.c \
441 src/mail/ngx_mail_smtp_handler.c"
442
428 MAIL_SSL_MODULE="ngx_mail_ssl_module" 443 MAIL_SSL_MODULE="ngx_mail_ssl_module"
429 MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h" 444 MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h"
430 MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c" 445 MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c"
431 446
432 MAIL_AUTH_HTTP_MODULE="ngx_mail_auth_http_module" 447 MAIL_AUTH_HTTP_MODULE="ngx_mail_auth_http_module"