vote up 3 vote down star
3

Hi all,

Can anyone recommend software or even a .net library to develop software, that will check for bounced emails and the reason for the bounce? I get bounced emails into a pop3 account that I can read then...

I need it to keep my user database clean from invalid email addresses and want to automate this (mark user as invalid email).

Thanks

flag

6 Answers

vote up 3 vote down check

I have done a great deal of work handling bounce emails and there different types. If you want to be absolutely sure that the email your looking at is indeed a bounce of a specific kind I highly recommend getting a good filter. I have worked with Boogie Tools and it has worked very well. It lets you know what kind of bounce it is, Hard, Soft, Transient or if its even someone trying to unsubscribe. It has a muliple API's including .Net and I found it quite easy to get working.

link|flag
vote up 1 vote down

It's pretty easy to do with a TcpClient. Open the server:

TcpClient tcpClient = new TcpClient();
tcpClient.Connect(POP3Server, POP3Port);
NetworkStream stream = tcpClient.GetStream();

Read the welcome message:

int read = stream.Read(inBuffer, 0, inBuffer.Length);
string response = Encoding.ASCII.GetString(inBuffer, 0, read);
if (response.IndexOf("+OK") != 0) throw new ...;

Write back to the server:

byte[] outBuffer = Encoding.ASCII.GetBytes("USER " + account + "\r\n");
stream.Write(outBuffer, 0, outBuffer.Length);

That sends the USER command. You need to login and then you can start grabbing messages - see the POP3 RFC for the full list of commands. If you're not looking to roll your own check out this CodeProject article.

link|flag
vote up 1 vote down

as abfo says, the POP3 protocol is super simple, getting the messages is a no brainer. Parsing the messages to get the failures is harder, and reliably parsing out which email caused the failure and why it failed is really hard. The problem is that bounce messages don't have a standard format, the default forms vary from MTA to MTA. Then the failure reason can be tweaked by the site admin making it harder to recognize, and the site admin could modify the failure message template which makes it darn near impossible.

See if you can find a .NET mailing list manager and if you can repurpose the bounce handling code. Failing that, see if you can change the tool that's sending the messages to send each email from a unique (and reversible) enveloper sender (VERP I think it's called?). That way you don't need to scan the body of the email, you can tell which recipient failed by examining the recipient address of the failure message.

link|flag
vote up 0 vote down

Thanks for the answer, great! I did some research myself and found ListNanny - also super simple to use and tells you the type of bounce. Will write some proof of concept and see which one I like better...

link|flag
vote up 0 vote down

Your question made me realize that the Wordpress Newsletter plugin I was going to use, did not have bounce management, and I'd need something as well.

I looked around for awhile, and I've settled on the free and open-source PHPlist newsletter manager.

They describe in detail their settings for handling bounces and they do have an experimental advanced bounce handling feature that will allow you to customize the bounce handling exactly the way you want.

Evem if you decide not to use PHPlist, reading how they do it will be useful information for you.

link|flag
vote up 1 vote down

Check out Mail.dll .NET mail component, it has SSL support, unicode, and multi-national email support.

Mail.dll includes POP3, IMAP and SMTP clients and powerful MIME parser:

Pop3 pop3 = new Pop3();
pop3.Connect("mail.host.com");           // Connect to the server 

pop3.User = "user";               
pop3.Password = "password";
pop3.Login();                            // Login

pop3.GetAccountStat();                   // Get account statistics

SimpleMailMessageBuilder builder = new SimpleMailMessageBuilder();

for(int i = 1; i <= pop3.MessageCount; i++)
{
    ISimpleMailMessage simpleMail = builder.CreateFromEml(pop3.GetMessage(i));

    Console.WriteLine( simpleMail.Subject );
}
pop3.Close(true);

You can download it here: http://www.lesnikowski.com/mail.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.