From b8a90c69039046ff6196b9e174e21c5377ed07dd Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Mon, 17 Dec 2012 12:08:53 +0000 Subject: Implemented IPv6 support for URLs specified using domain names. This includes "debug_connection", upstreams, "proxy_pass", etc. (ticket #92) To preserve compatibility, "listen" specified with a domain name selects the first IPv4 address, if available. If not available, the first IPv6 address will be used (ticket #186). --- src/mail/ngx_mail_auth_http_module.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/mail') diff --git a/src/mail/ngx_mail_auth_http_module.c b/src/mail/ngx_mail_auth_http_module.c index d2bd4ad61..a8bdc728a 100644 --- a/src/mail/ngx_mail_auth_http_module.c +++ b/src/mail/ngx_mail_auth_http_module.c @@ -1388,7 +1388,6 @@ ngx_mail_auth_http(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) u.url = value[1]; u.default_port = 80; u.uri_part = 1; - u.one_addr = 1; if (ngx_strncmp(u.url.data, "http://", 7) == 0) { u.url.len -= 7; -- cgit