comparison auto/sources @ 1487:f69493e8faab

ngx_mail_pop3_module, ngx_mail_imap_module, and ngx_mail_smtp_module
author Igor Sysoev <igor@sysoev.ru>
date Sat, 15 Sep 2007 16:51:16 +0000
parents 67578e966dcc
children a3c0b8dadc16
comparison
equal deleted inserted replaced
1486:0e7074ef7303 1487:f69493e8faab
421 MAIL_MODULES="ngx_mail_module ngx_mail_core_module" 421 MAIL_MODULES="ngx_mail_module ngx_mail_core_module"
422 422
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_pop3_handler.c \
427 src/mail/ngx_mail_imap_handler.c \
428 src/mail/ngx_mail_smtp_handler.c \
429 src/mail/ngx_mail_parse.c" 426 src/mail/ngx_mail_parse.c"
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"
430 442
431 MAIL_SSL_MODULE="ngx_mail_ssl_module" 443 MAIL_SSL_MODULE="ngx_mail_ssl_module"
432 MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h" 444 MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h"
433 MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c" 445 MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c"
434 446