comparison auto/modules @ 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 2ceaee987f37
children 9121a0a91f47
comparison
equal deleted inserted replaced
335:9a32ae248b7a 336:1c519aff5c0c
306 done 306 done
307 fi 307 fi
308 308
309 309
310 if [ $MAIL_SSL = YES ]; then 310 if [ $MAIL_SSL = YES ]; then
311 MAIL_DEPS="$MAIL_DEPS $MAIL_SSL_DEPS"
312 MAIL_SRCS="$MAIL_SRCS $MAIL_SSL_SRCS"
313 have=NGX_MAIL_SSL . auto/have 311 have=NGX_MAIL_SSL . auto/have
314 USE_OPENSSL=YES 312 USE_OPENSSL=YES
315 fi 313 fi
316 314
317 315
339 if [ $MAIL = YES ]; then 337 if [ $MAIL = YES ]; then
340 modules="$modules $MAIL_MODULES" 338 modules="$modules $MAIL_MODULES"
341 339
342 if [ $MAIL_SSL = YES ]; then 340 if [ $MAIL_SSL = YES ]; then
343 modules="$modules $MAIL_SSL_MODULE" 341 modules="$modules $MAIL_SSL_MODULE"
342 MAIL_DEPS="$MAIL_DEPS $MAIL_SSL_DEPS"
343 MAIL_SRCS="$MAIL_SRCS $MAIL_SSL_SRCS"
344 fi
345
346 if [ $MAIL_POP3 = YES ]; then
347 modules="$modules $MAIL_POP3_MODULE"
348 MAIL_DEPS="$MAIL_DEPS $MAIL_POP3_DEPS"
349 MAIL_SRCS="$MAIL_SRCS $MAIL_POP3_SRCS"
350 fi
351
352 if [ $MAIL_IMAP = YES ]; then
353 modules="$modules $MAIL_IMAP_MODULE"
354 MAIL_DEPS="$MAIL_DEPS $MAIL_IMAP_DEPS"
355 MAIL_SRCS="$MAIL_SRCS $MAIL_IMAP_SRCS"
356 fi
357
358 if [ $MAIL_SMTP = YES ]; then
359 modules="$modules $MAIL_SMTP_MODULE"
360 MAIL_DEPS="$MAIL_DEPS $MAIL_SMTP_DEPS"
361 MAIL_SRCS="$MAIL_SRCS $MAIL_SMTP_SRCS"
344 fi 362 fi
345 363
346 modules="$modules $MAIL_AUTH_HTTP_MODULE" 364 modules="$modules $MAIL_AUTH_HTTP_MODULE"
347 MAIL_SRCS="$MAIL_SRCS $MAIL_AUTH_HTTP_SRCS" 365 MAIL_SRCS="$MAIL_SRCS $MAIL_AUTH_HTTP_SRCS"
348 366