mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
Update from 0.5.32 to latest bugfix release 0.5.33.
Add new MAIL_* knobs. Approved by: portmgr (erwin) <CommitLog> *) Change: now by default the "echo" SSI command uses entity encoding. *) Feature: the "encoding" parameter in the "echo" SSI command. *) 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. *) Feature: the "server_name" and "valid_referers" directives support regular expressions. *) Feature: the "server_name", "map", and "valid_referers" directives support the "www.example.*" wildcards. *) Bugfix: sub_filter did not work with empty substitution. *) Bugfix: in sub_filter parsing. *) Bugfix: a worker process may got caught in an endless loop, if the memcached was used. *) Bugfix: nginx supported low case only "close" and "keep-alive" values in the "Connection" request header line; bug appeared in 0.5.32. *) Bugfix: nginx could not start on Solaris if the shared PCRE library located in non-standard place was used. </CommitLog>
This commit is contained in:
parent
0d660e64ba
commit
20227ff1cd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=202678
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= nginx
|
||||
PORTVERSION= 0.5.32
|
||||
PORTVERSION= 0.5.33
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://sysoev.ru/nginx/
|
||||
MASTER_SITES+= ${MASTER_SITE_LOCAL}
|
||||
@ -27,6 +27,9 @@ OPTIONS= DEBUG "Enable nginx debugging" off \
|
||||
HTTP_STATUS_MODULE "Enable http_stub_status module" on \
|
||||
HTTP_SUB_MODULE "Enable http_sub module" off \
|
||||
MAIL_MODULE "Enable IMAP4/POP3/SMTP proxy module" off \
|
||||
MAIL_IMAP_MODULE "Enable IMAP4 proxy module" off \
|
||||
MAIL_POP3_MODULE "Enable POP3 proxy module" off \
|
||||
MAIL_SMTP_MODULE "Enable SMTP proxy module" off \
|
||||
MAIL_SSL_MODULE "Enable mail_ssl module" off \
|
||||
WWW "Enable html sample files" on
|
||||
|
||||
@ -122,6 +125,15 @@ PLIST_SUB+= WWWDATA="@comment "
|
||||
|
||||
.if defined(WITH_MAIL_MODULE)
|
||||
CONFIGURE_ARGS+=--with-mail
|
||||
.if defined(WITHOUT_MAIL_IMAP_MODULE)
|
||||
CONFIGURE_ARGS+=--without-mail_proxy_imap_module
|
||||
.endif
|
||||
.if defined(WITHOUT_MAIL_POP3_MODULE)
|
||||
CONFIGURE_ARGS+=--without-mail_proxy_pop3_module
|
||||
.endif
|
||||
.if defined(WITHOUT_MAIL_SMTP_MODULE)
|
||||
CONFIGURE_ARGS+=--without-mail_proxy_smtp_module
|
||||
.endif
|
||||
.if defined(WITH_MAIL_SSL_MODULE)
|
||||
NGINX_OPENSSL= yes
|
||||
CONFIGURE_ARGS+=--with-mail_ssl_module
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (nginx-0.5.32.tar.gz) = 0088269b8a59a146b0ba9c9ee29853bb
|
||||
SHA256 (nginx-0.5.32.tar.gz) = 8cb95cc61bafec7b0fe3e91f06f2e7aee7b12f12a6af8200d60038f8d5e52cac
|
||||
SIZE (nginx-0.5.32.tar.gz) = 479982
|
||||
MD5 (nginx-0.5.33.tar.gz) = a78be74b4fd8e009545ef02488fcac86
|
||||
SHA256 (nginx-0.5.33.tar.gz) = b7cf8c2ca93ac4ce474a98ed3f9ce49559c3b0aa90454d64aa24af890b51a72c
|
||||
SIZE (nginx-0.5.33.tar.gz) = 485441
|
||||
|
Loading…
Reference in New Issue
Block a user