Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Mail-DeliveryStatus-BounceParser CPAN distribution.

Report information
The Basics
Id: 41874
Status: resolved
Priority: 0/
Queue: Mail-DeliveryStatus-BounceParser

People
Owner: Nobody in particular
Requestors: efm [...] ams.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: RE: Mail::DeliveryStatus::BounceParser Module Version: 1.519
Date: Mon, 22 Dec 2008 13:08:52 -0500
To: <bug-Mail-DeliveryStatus-BounceParser [...] rt.cpan.org>
From: "Erin Murray" <efm [...] ams.org>
I found out this is the line in _std_reason that is resulting in the false user_unknown: /no\s+(?:such\s+)?$user_re/i or # Gmail and other The email flagged as a bounce has the following text (which satisfies it): Name: Joe Borzellino Address: ... You need to take the \s+ out of the parenthesis. Fixed line is as follows: /no\s+(?:such)\s+?$user_re/i or # Gmail and other Thanks! Show quoted text
-----Original Message----- From: Erin Murray [mailto:efm@ams.org] Sent: Monday, December 22, 2008 9:09 AM To: 'bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org' Subject: Mail::DeliveryStatus::BounceParser Module Version: 1.519 I'm getting invalid user_unknown bounces and am currently debugging to try and figure out why. Meanwhile, I wanted to report some minor issues: 1) Your module fails to ignore vacation messages where vacation is spelled with capital V 2) You should also ignore "[rR]eturn receipt" messages Erin Murray Business and Publications Computing Department American Mathematical Society
Subject: RE: [rt.cpan.org #41874] Mail::DeliveryStatus::BounceParser Module Version: 1.519
Date: Tue, 23 Dec 2008 11:33:02 -0500
To: <bug-Mail-DeliveryStatus-BounceParser [...] rt.cpan.org>
From: "Erin Murray" <efm [...] ams.org>
FYI, I found a type of user_unknown that you do not have: /unrouteable address/i Show quoted text
-----Original Message----- From: Bugs in Mail-DeliveryStatus-BounceParser via RT [mailto:bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org] Sent: Monday, December 22, 2008 1:09 PM To: efm@ams.org Subject: [rt.cpan.org #41874] AutoReply: RE: Mail::DeliveryStatus::BounceParser Module Version: 1.519 Greetings, This message has been automatically generated in response to the creation of a trouble ticket regarding: "RE: Mail::DeliveryStatus::BounceParser Module Version: 1.519", a summary of which appears below. There is no need to reply to this message right now. Your ticket has been assigned an ID of [rt.cpan.org #41874]. Your ticket is accessible on the web at: http://rt.cpan.org/Ticket/Display.html?id=41874 Please include the string: [rt.cpan.org #41874] in the subject line of all future correspondence about this issue. To do so, you may reply to this message. Thank you, bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org ------------------------------------------------------------------------- I found out this is the line in _std_reason that is resulting in the false user_unknown: /no\s+(?:such\s+)?$user_re/i or # Gmail and other The email flagged as a bounce has the following text (which satisfies it): Name: Joe Borzellino Address: ... You need to take the \s+ out of the parenthesis. Fixed line is as follows: /no\s+(?:such)\s+?$user_re/i or # Gmail and other Thanks!
-----Original Message----- From: Erin Murray [mailto:efm@ams.org] Sent: Monday, December 22, 2008 9:09 AM To: 'bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org' Subject: Mail::DeliveryStatus::BounceParser Module Version: 1.519 I'm getting invalid user_unknown bounces and am currently debugging to try and figure out why. Meanwhile, I wanted to report some minor issues: 1) Your module fails to ignore vacation messages where vacation is spelled with capital V 2) You should also ignore "[rR]eturn receipt" messages Erin Murray Business and Publications Computing Department American Mathematical Society -- BEGIN-ANTISPAM-VOTING-LINKS ------------------------------------------------------ Teach CanIt if this mail (ID 18345687) is spam: Spam: https://canit.ams.org/canit/b.php?i=18345687&m=1cc4307dd789&c=s Not spam: https://canit.ams.org/canit/b.php?i=18345687&m=1cc4307dd789&c=n Forget vote: https://canit.ams.org/canit/b.php?i=18345687&m=1cc4307dd789&c=f ------------------------------------------------------ END-ANTISPAM-VOTING-LINKS
CC: "'Gerry Loon'" <gll [...] ams.org>
Subject: RE: [rt.cpan.org #41874] Mail::DeliveryStatus::BounceParser Module Version: 1.519
Date: Tue, 30 Dec 2008 10:46:08 -0500
To: <bug-Mail-DeliveryStatus-BounceParser [...] rt.cpan.org>
From: "Erin Murray" <efm [...] ams.org>
After additional debugging, I found errors in the multipart/report logic section of BounceParser.pm. I wasn't getting anything from my $report = Mail::Header->new([split /\n/, $para]); although I could clearly see Action, Final-Recipient, etc if I printed $para. I fixed the problem by adding the following line just before (the above line): $para =~ s/\r/ /g; Furthermore, I amended your definition of $Really_An_Error to be as follows: my $Really_An_Error = qr/(this is a permanent error|permanent fatal errors)/i; Thank you. Erin Murray Business and Publications Computing Department American Mathematical Society Show quoted text
-----Original Message----- From: Bugs in Mail-DeliveryStatus-BounceParser via RT [mailto:bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org] Sent: Monday, December 22, 2008 1:09 PM To: efm@ams.org Subject: [rt.cpan.org #41874] AutoReply: RE: Mail::DeliveryStatus::BounceParser Module Version: 1.519 Greetings, This message has been automatically generated in response to the creation of a trouble ticket regarding: "RE: Mail::DeliveryStatus::BounceParser Module Version: 1.519", a summary of which appears below. There is no need to reply to this message right now. Your ticket has been assigned an ID of [rt.cpan.org #41874]. Your ticket is accessible on the web at: http://rt.cpan.org/Ticket/Display.html?id=41874 Please include the string: [rt.cpan.org #41874] in the subject line of all future correspondence about this issue. To do so, you may reply to this message. Thank you, bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org ------------------------------------------------------------------------- I found out this is the line in _std_reason that is resulting in the false user_unknown: /no\s+(?:such\s+)?$user_re/i or # Gmail and other The email flagged as a bounce has the following text (which satisfies it): Name: Joe Borzellino Address: ... You need to take the \s+ out of the parenthesis. Fixed line is as follows: /no\s+(?:such)\s+?$user_re/i or # Gmail and other Thanks!
-----Original Message----- From: Erin Murray [mailto:efm@ams.org] Sent: Monday, December 22, 2008 9:09 AM To: 'bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org' Subject: Mail::DeliveryStatus::BounceParser Module Version: 1.519 I'm getting invalid user_unknown bounces and am currently debugging to try and figure out why. Meanwhile, I wanted to report some minor issues: 1) Your module fails to ignore vacation messages where vacation is spelled with capital V 2) You should also ignore "[rR]eturn receipt" messages Erin Murray Business and Publications Computing Department American Mathematical Society -- BEGIN-ANTISPAM-VOTING-LINKS ------------------------------------------------------ Teach CanIt if this mail (ID 18345687) is spam: Spam: https://canit.ams.org/canit/b.php?i=18345687&m=1cc4307dd789&c=s Not spam: https://canit.ams.org/canit/b.php?i=18345687&m=1cc4307dd789&c=n Forget vote: https://canit.ams.org/canit/b.php?i=18345687&m=1cc4307dd789&c=f ------------------------------------------------------ END-ANTISPAM-VOTING-LINKS
CC: undisclosed-recipients: ;
Subject: Re: [rt.cpan.org #41874] Mail::DeliveryStatus::BounceParser Module Version: 1.519
Date: Tue, 30 Dec 2008 16:07:03 -0500
To: Erin Murray via RT <bug-Mail-DeliveryStatus-BounceParser [...] rt.cpan.org>
From: Ricardo SIGNES <rjbs [...] cpan.org>
* Erin Murray via RT <bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org> [2008-12-30T10:46:25] Show quoted text
> > After additional debugging, I found errors in the multipart/report logic > section of BounceParser.pm. I wasn't getting anything from
I'm just replying to let you know that I am seeing these, I do appreciate your feedback, and I'll get to it when I can, hopefully soon. If you'd like this to get released faster, you could fork on github and make commits. Either way, I will merge things as time permits. Thanks! -- rjbs
Subject: RE: [rt.cpan.org #41874] Mail::DeliveryStatus::BounceParser Module Version: 1.519
Date: Thu, 8 Jan 2009 14:55:48 -0500
To: <bug-Mail-DeliveryStatus-BounceParser [...] rt.cpan.org>
From: "Erin Murray" <efm [...] ams.org>
A coworker explained what forking on github was. I did it; I documented my changes as fixes for bugs #41870 and 41874. Erin Murray Show quoted text
-----Original Message----- From: Ricardo SIGNES via RT [mailto:bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org] Sent: Tuesday, December 30, 2008 4:07 PM To: efm@ams.org Subject: Re: [rt.cpan.org #41874] Mail::DeliveryStatus::BounceParser Module Version: 1.519 <URL: http://rt.cpan.org/Ticket/Display.html?id=41874 > * Erin Murray via RT <bug-Mail-DeliveryStatus-BounceParser@rt.cpan.org> [2008-12-30T10:46:25]
> > After additional debugging, I found errors in the multipart/report logic > section of BounceParser.pm. I wasn't getting anything from
I'm just replying to let you know that I am seeing these, I do appreciate your feedback, and I'll get to it when I can, hopefully soon. If you'd like this to get released faster, you could fork on github and make commits. Either way, I will merge things as time permits. Thanks! -- rjbs -- BEGIN-ANTISPAM-VOTING-LINKS ------------------------------------------------------ Teach CanIt if this mail (ID 18403614) is spam: Spam: https://canit.ams.org/canit/b.php?i=18403614&m=6a45595ef1cd&c=s Not spam: https://canit.ams.org/canit/b.php?i=18403614&m=6a45595ef1cd&c=n Forget vote: https://canit.ams.org/canit/b.php?i=18403614&m=6a45595ef1cd&c=f ------------------------------------------------------ END-ANTISPAM-VOTING-LINKS
thanks. applied, released. sorry for the delay -- rjbs