Re: detecting bounced mails

From: Matti Aarnio (matti.aarnio@zmailer.org)
Date: Wed Jan 17 2001 - 06:10:16 EST


On Wed, Jan 17, 2001 at 04:33:08PM +0530, Rajiv Majumdar wrote:
> Sorry..the topic does not fit here. But wanted to know, how can we check
> validity of an email id "in advance" so that we can skip "bounce".

        There are theorethical ways using SMTP's VRFY command, however
        it has never been implemented at all systems, and modern
        environment of firewalls just simply doesn't allow it to work.

        The only thing you *can* verify is to look for the domain
        part in the address from the DNS. At first query for MX
        record(s), and if *not* found any, then query for A record(s).
        If you encounter CNAME, do resolve it couple times towards
        MX or A.

        If you find neither MX, nor A, then the DOMAIN part is non-routable
        in the internet, but nothing can be said about the left side of
        the @-character (the LOCAL part).

        If you have a RFC-821 statemachine scanner to recognize the address
        syntax and accept only LOCAL@DOMAIN form (not @GW1,@GW2:LOCL@DOM),
        plus do that MX/A lookup, you should pretty much be done.

        It will trap honest mistakes - usually.

        I have code to do this type of analysis at my ZMailer, works fine.

> Thanks!
> Rajiv

/Matti Aarnio
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue Jan 23 2001 - 21:00:15 EST