Your message dated Sat, 17 Oct 2009 14:33:16 +0200
with message-id <[email protected]>
and subject line Re: Bug#550841: Smarthost authentication not working with IPv6
has caused the Debian Bug report #550841,
regarding Smarthost authentication not working with IPv6
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
550841: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550841
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: exim4-config
Version: 4.63-17
Severity: important
Tags: patch ipv6
The configuration template at /etc/exim4/exim4.conf.template is not
capable of handling IPv6 smarthosts with SMTP authentication.
The following section does a lookup in /etc/exim4/passwd.client and (if
found) returns the $host_address value in the hosts_try_auth list:
---cut---
remote_smtp_smarthost:
debug_print = "T: remote_smtp_smarthost for $local_p...@$domain"
driver = smtp
hosts_try_auth = ${if exists{CONFDIR/passwd.client} \
{\
${lookup{$host}nwildlsearch{CONFDIR/passwd.client}{$host_address}}\
}\
{} \
}
---cut---
If $host_address is an IPv6 address, the colons are interpreted as
address seperators. To use an IPv6 address, the hosts_try_auth list
should start with "<; ", thus only a semicolon will be used as seperator.
FIX:
- hosts_try_auth = ${if exists{CONFDIR/passwd.client} \
+ hosts_try_auth = <; ${if exists{CONFDIR/passwd.client} \
Best regards,
Klaus Keppler
--- End Message ---
--- Begin Message ---
Version: 4.67-1
On 2009-10-13 Klaus Keppler <[email protected]> wrote:
> Package: exim4-config
> Version: 4.63-17
> Severity: important
> Tags: patch ipv6
> The configuration template at /etc/exim4/exim4.conf.template is not
> capable of handling IPv6 smarthosts with SMTP authentication.
> The following section does a lookup in /etc/exim4/passwd.client and (if
> found) returns the $host_address value in the hosts_try_auth list:
> ---cut---
> remote_smtp_smarthost:
> debug_print = "T: remote_smtp_smarthost for $local_p...@$domain"
> driver = smtp
> hosts_try_auth = ${if exists{CONFDIR/passwd.client} \
> {\
> ${lookup{$host}nwildlsearch{CONFDIR/passwd.client}{$host_address}}\
> }\
> {} \
> }
> ---cut---
> If $host_address is an IPv6 address, the colons are interpreted as
> address seperators. To use an IPv6 address, the hosts_try_auth list
> should start with "<; ", thus only a semicolon will be used as seperator.
> FIX:
> - hosts_try_auth = ${if exists{CONFDIR/passwd.client} \
> + hosts_try_auth = <; ${if exists{CONFDIR/passwd.client} \
This was already fixed in
exim4 (4.67-1) unstable; urgency=low
[...]
* remote_smtp_smarthost transport: make hosts_try_auth host list
semicolon-separated to correctly handle IPv6
-- Marc Haber <[email protected]> Sat, 21 Apr 2007 11:48:48
+0200
closing.
cu andreas
--- End Message ---