Your message dated Thu, 7 Sep 2006 13:26:13 +0300
with message-id <[EMAIL PROTECTED]>
and subject line Bug#386306: debian-specific patch causes errors sending to
e.g.: "test tester <[EMAIL PROTECTED]>"
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: libmime-lite-perl
Version: 3.01-4
A diff from CPAN source to the installed debian package shows line 513 of the
debian package has:
return map { $_->address } Mail::Address->parse($_[0]);
instead of
return map { $_->format } Mail::Address->parse($_[0]);
which is in the CPAN sources. The following script runs against the CPAN-built
module, but errors out when run against the Debian module:
[EMAIL PROTECTED]:~$ more test
#!/usr/bin/perl -w
use MIME::Lite;
use strict;
my $name = "Shane Allen";
my $email = '[EMAIL PROTECTED]';
my $myname = "test tester";
my $myemail = '[EMAIL PROTECTED]';
my $mail = MIME::Lite->new(
To => "$name <$email>",
From => "$myname <$myemail>",
Subject => "Debian MIME::Lite test",
Type => 'text/html',
Data => "<html><body>Test test</body></html>"
);
$mail->send();
[EMAIL PROTECTED]:~$ perl test
can't extract address at < tester <[EMAIL PROTECTED]>> in <test tester <[EMAIL
PROTECTED]>>
--- End Message ---
--- Begin Message ---
On Wed, Sep 06, 2006 at 02:51:44PM -0500, Shane Allen wrote:
> You are correct, my apologies. We did not have Mail::Address installed and
> furthermore we have modified MIME::Lite due to a different bug we have
> experienced, which is causing us to execute extract_addrs(). Since I have
> made the modifications across the board and it has been a while since I
> made them, I had forgotten about the change.
No problem. I'm closing this bug.
Cheers,
--
Niko Tyni [EMAIL PROTECTED]
--- End Message ---