1

What options do I have to parse the e-mails that have bounced? I am receiving the bounce notification from e-mail servers but don't know what to do with it.

Kevin Reid
  • 37,492
  • 13
  • 80
  • 108
donald
  • 23,587
  • 42
  • 142
  • 223
  • I'm not sure what you mean. Are you having trouble getting the bounce notification from your mailbox or are you having trouble parsing the e-mail once you have it? – xoebus Jun 22 '11 at 23:10

3 Answers3

2

there is a bounce parsing library available for perl:

http://metacpan.org/pod/Mail::DeliveryStatus::BounceParser

szabgab
  • 6,202
  • 11
  • 50
  • 64
Gryphius
  • 75,626
  • 6
  • 48
  • 54
0

I know this question is old but maybe it can help others.

I couldn't find a solution so I made my own. It fetches the mails from an IMAP account and classifies them. It can post the resulting data to a remote http(s) endpoint or just to a simple csv file.

» Bouncefetch

Disclaimer: I'm the author of bouncefetch.

2called-chaos
  • 3,018
  • 3
  • 21
  • 29
0

I am not sure about your setup but if you have access to your mail server , you can pipe these messages to a script on your server, which parses these emails and then you can take some decision based on that, for instance flag the email address as invalid or something in your database and not sending any more emails.

Sabeen Malik
  • 10,816
  • 4
  • 33
  • 50