comparison auto/modules @ 290:f745bf973510 NGINX_0_5_15

nginx 0.5.15 *) Feature: the mail proxy supports authenticated SMTP proxying and the "smtp_auth", "smtp_capablities", and "xclient" directives. Thanks to Anton Yuzhaninov and Maxim Dounin. *) Feature: now the keep-alive connections are closed just after receiving the reconfiguration signal. *) Change: the "imap" and "auth" directives were renamed to the "mail" and "pop3_auth" directives. *) Bugfix: a segmentation fault occurred in worker process if the CRAM-MD5 authentication method was used and the APOP method was disabled. *) Bugfix: if the "starttls only" directive was used in POP3 protocol, then nginx allowed authentication without switching to the SSL mode. *) Bugfix: worker processes did not exit after reconfiguration and did not rotate logs if the eventport method was used. *) Bugfix: a worker process may got caught in an endless loop, if the "ip_hash" directive was used. *) Bugfix: now nginx does not log some alerts if eventport or /dev/poll methods are used.
author Igor Sysoev <http://sysoev.ru>
date Mon, 19 Mar 2007 00:00:00 +0300
parents 29a6403156b0
children 2ceaee987f37
comparison
equal deleted inserted replaced
289:a9323c9433a7 290:f745bf973510
300 fi 300 fi
301 done 301 done
302 fi 302 fi
303 303
304 304
305 if [ $IMAP_SSL = YES ]; then 305 if [ $MAIL_SSL = YES ]; then
306 IMAP_DEPS="$IMAP_DEPS $IMAP_SSL_DEPS" 306 MAIL_DEPS="$MAIL_DEPS $MAIL_SSL_DEPS"
307 IMAP_SRCS="$IMAP_SRCS $IMAP_SSL_SRCS" 307 MAIL_SRCS="$MAIL_SRCS $MAIL_SSL_SRCS"
308 have=NGX_IMAP_SSL . auto/have 308 have=NGX_MAIL_SSL . auto/have
309 USE_OPENSSL=YES 309 USE_OPENSSL=YES
310 fi 310 fi
311 311
312 312
313 modules="$CORE_MODULES $EVENT_MODULES" 313 modules="$CORE_MODULES $EVENT_MODULES"
329 329
330 NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(HTTP_DEPS)" 330 NGX_ADDON_DEPS="$NGX_ADDON_DEPS \$(HTTP_DEPS)"
331 fi 331 fi
332 332
333 333
334 if [ $IMAP = YES ]; then 334 if [ $MAIL = YES ]; then
335 modules="$modules $IMAP_MODULES" 335 modules="$modules $MAIL_MODULES"
336 336
337 if [ $IMAP_SSL = YES ]; then 337 if [ $MAIL_SSL = YES ]; then
338 modules="$modules $IMAP_SSL_MODULE" 338 modules="$modules $MAIL_SSL_MODULE"
339 fi 339 fi
340 340
341 modules="$modules $IMAP_AUTH_HTTP_MODULE" 341 modules="$modules $MAIL_AUTH_HTTP_MODULE"
342 IMAP_SRCS="$IMAP_SRCS $IMAP_AUTH_HTTP_SRCS" 342 MAIL_SRCS="$MAIL_SRCS $MAIL_AUTH_HTTP_SRCS"
343 343
344 modules="$modules $IMAP_PROXY_MODULE" 344 modules="$modules $MAIL_PROXY_MODULE"
345 IMAP_SRCS="$IMAP_SRCS $IMAP_PROXY_SRCS" 345 MAIL_SRCS="$MAIL_SRCS $MAIL_PROXY_SRCS"
346 fi 346 fi
347 347
348 348
349 cat << END > $NGX_MODULES_C 349 cat << END > $NGX_MODULES_C
350 350