comparison auto/options @ 1136:68f30ab68bb7

Many changes: *) rename imap to mail, sort pop3/imap functions *) smtp auth support *) pop3 starttls only *) fix segfault if cram-md5 was used without apop
author Igor Sysoev <igor@sysoev.ru>
date Mon, 19 Mar 2007 13:36:56 +0000
parents 7cb910b4a58a
children 383ae25c3171
comparison
equal deleted inserted replaced
1135:03f1133f24e8 1136:68f30ab68bb7
75 HTTP_UPSTREAM_IP_HASH=YES 75 HTTP_UPSTREAM_IP_HASH=YES
76 76
77 # STUB 77 # STUB
78 HTTP_STUB_STATUS=NO 78 HTTP_STUB_STATUS=NO
79 79
80 IMAP=NO 80 MAIL=NO
81 IMAP_SSL=NO 81 MAIL_SSL=NO
82 82
83 NGX_ADDONS= 83 NGX_ADDONS=
84 84
85 USE_PCRE=NO 85 USE_PCRE=NO
86 PCRE=NONE 86 PCRE=NONE
180 --with-perl=*) NGX_PERL="$value" ;; 180 --with-perl=*) NGX_PERL="$value" ;;
181 181
182 # STUB 182 # STUB
183 --with-http_stub_status_module) HTTP_STUB_STATUS=YES ;; 183 --with-http_stub_status_module) HTTP_STUB_STATUS=YES ;;
184 184
185 --with-imap) IMAP=YES ;; 185 --with-mail) MAIL=YES ;;
186 --with-imap_ssl_module) IMAP_SSL=YES ;; 186 --with-mail_ssl_module) MAIL_SSL=YES ;;
187 # STUB
188 --with-imap) MAIL=YES ;;
189 --with-imap_ssl_module) MAIL_SSL=YES ;;
187 190
188 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;; 191 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;;
189 192
190 --with-cc=*) CC="$value" ;; 193 --with-cc=*) CC="$value" ;;
191 --with-cpp=*) CPP="$value" ;; 194 --with-cpp=*) CPP="$value" ;;
290 --http-fastcgi-temp-path=PATH set path to the http fastcgi temporary 293 --http-fastcgi-temp-path=PATH set path to the http fastcgi temporary
291 files 294 files
292 295
293 --without-http disable HTTP server 296 --without-http disable HTTP server
294 297
295 --with-imap enable IMAP4/POP3 proxy module 298 --with-mail enable IMAP4/POP3/SMTP proxy module
296 --with-imap_ssl_module enable ngx_imap_ssl_module 299 --with-mail_ssl_module enable ngx_mail_ssl_module
297 300
298 --with-cc=PATH set path to C compiler 301 --with-cc=PATH set path to C compiler
299 --with-cpp=PATH set path to C preprocessor 302 --with-cpp=PATH set path to C preprocessor
300 --with-cc-opt=OPTIONS set additional options for C compiler 303 --with-cc-opt=OPTIONS set additional options for C compiler
301 --with-ld-opt=OPTIONS set additional options for linker 304 --with-ld-opt=OPTIONS set additional options for linker