Bouncing emails

Been having email issues this week - in and outgoing - don't know if it's Mail to MobileMe to blame.
Here's an example:
This report relates to a message you sent with the following header fields:
Message-id: <[email protected]>
Date: Thu, 25 Nov 2010 13:34:04 +0100
From: Andrew Power <an*e.com>
To: Dara <dar*o.cz>
Subject: Re: English lessons
Your message cannot be delivered to the following recipients:
Recipient address: dar*o.cz
Reason: Server rejected MAIL FROM address.
Diagnostic code: smtp;501 5.7.1 <an*e.com>... Sender refused by the DNSBL db.wpbl.info
Remote system: dns;arcane.core.prudent.cz (TCP|17.148.16.98|54264|77.93.217.139|25) (arcane.core.prudent.cz ESMTP Merak 8.9.1; Thu, 25 Nov 2010 13:34:46 +0100)
Original-envelope-id: [email protected]
Reporting-MTA: dns;asmtp023-bge351000 (tcp-daemon)
Original-recipient: rfc822;dar*o.cz
Final-recipient: rfc822;dar*o.cz
Action: failed
Status: 5.0.0 (Server rejected MAIL FROM address.)
Remote-MTA: dns;arcane.core.prudent.cz
(TCP|17.148.16.98|54264|77.93.217.139|25)
(arcane.core.prudent.cz ESMTP Merak 8.9.1; Thu, 25 Nov 2010 13:34:46 +0100)
Diagnostic-code: smtp;501 5.7.1 <an*e.com>... Sender refused by the
DNSBL db.wpbl.info
Any ideas?
<Edited by Host>

I know you said you closed this thread, but I thought you, and others here, might want to know why your email was blocked. The recipient's email server identified your ip address or email as SPAM.
This does not mean that your email was SPAM, only that it was identified as SPAM. Maybe you have a term regularly used by spammers in your subject, body, or signature area of your email. Or, maybe your recipient does not want to receive your emails and reported your emails to wpbl or other reporting/tracking organization.
The header information you provided includes the reason. Here is the explanation in detail: http://www.wpbl.info/
Message was edited by: BobTheFisherman

Similar Messages

  • Suddenly Bounced emails - Is there something changed or bugged with the HPePrint services?

    Hello,
    We are using HPePrint with several printers on different locations for over a year now, without any real problems.
    But since yesterday, we get bounced email our of the blue. Nothing changed on our end, same email adresses used, but now our people all get the following error (except for the Received-From-MTA, which is different for most people from different offices):
      ----- Transcript of session follows -----
    ... while talking to email.hpeprint.com.:
    DATA
    <<< 550 5.7.1 Command rejected
    554 5.0.0 Service unavailable
    Reporting-MTA: dns; f-serve.identitycompany.net
    Received-From-MTA: DNS; idc-vls.xs4all.nl
    Arrival-Date: Sun, 11 Dec 2011 15:20:56 +0100 (CET)
    Final-Recipient: RFC822; *****@hpeprint.com
    Action: failed
    Status: 5.7.1
    Remote-MTA: DNS; email.hpeprint.com
    Diagnostic-Code: SMTP; 550 5.7.1 Command rejected
    Last-Attempt-Date: Sun, 11 Dec 2011 15:21:02 +0100 (CET)
    What gives? Is the service REALLY unavaible for 2 days now, which I can't imagine from a large company as HP with it's prime marketing service ePrint.
    We checked Spam/Blacklists to be sure that our Mailservers and office IPs aren't listed suddenly, and they are all not listed anywhere, so this can't be the problem.
    Please explain what suddenly changed, and we missed somehow, or what we should change/update on our ends to get this working again, as it did up to a few days ago.

    For those who are experiencing ongoing issues with their web services, you can attempt to try the following steps that may help resolve your problems.
    1.)    Completely shut down your printer and restart it
    2.)    If you have prints that have not printed, log into ePrint Center (or create an account if you do not have one) and then look for your printer status. If printer status is green but you still have pending jobs, delete the pending jobs one at a time (Starting with the oldest first). There may be a print job stuck in the queue that further restricts other jobs from completing.
    If option 1 or 2 above still doesn’t work, removing web services and re-adding web services will cause the printer to reattach to the cloud.
    Please note that if you attempt option 3, you will get a new eprint email address (and lose your custom one with no ability to get it back) furthermore, you will need to re-add your printer back to your ePC account.
    I am an HP employee

  • Where has the 'bounce email' feature gone from Lion?

    Mail works OK after upgrade to LIon, I have set it up in classic mode for now.   However, I can't find the 'bounce email' feature.   This used to be a good way to reduce spam.
    Please Apple, let me have this feature back.

    i have just 'upgraded' to osx LION and CANNOT believe you have dropped the BOUNCE feature from mail.
    Why??????  PLEASE PUT IT BACK immediately - it is one of the main differences between apple mail and postbox.  You are losing customers doing this - I am going back to snow leopard till you fix it.   RIDICULOUS decision !!!!

  • Bounced emails: automatically deactivating bad addresses...

    Just wanted a little feedback on what strategy might be best for automating the deactivation process. I have a database with a list of addresses that needs to be frequently updated-- any messages that I receive in a certain inbox are typically bounced emails and I wish to deactivate these addresses in my database so I no longer send to them.
    The best method I can think of, short of going through and manually identifying the original address I sent to (I've got better things to do!), seems to be to develop a method which parses the entire header and finds any email addresses (rebuilding any tokens that contain '@') and through brute force, simply tries to deactivate any and all reconstructed email addresses that I find. Not a very elegant method, I know. Since I won't be needing to automatically send emails to myself (return addresses and original sender) and anyone else of the 'postmaster' or 'MAILER-DAEMON' variety, I assume that any other email addresses contained within the header (somewhere)will be the one(s) that I'm looking for. Is this a fair assumption?
    Has any got a suggestion on how to improve this crude parsing? Everything I've read online suggests that a 100% success rate is impossible due to the lack of standards imposed on header content. Anything I send out is not guaranteed to come back to me, according to my understanding, so what other options may be available?
    Cheers,
    Sean

    Here's the first bit of code for testing my brute-force method... It seems to work fine as long for generating possible addresses as there are no instances of '@' at the beginning or end of a parsable-string-- ie. " @xxx", "xxx@ ", etc.. I'm working on that part right now... shouldn't be too hard. Can anyone see possible/definite flaws or improvements/issues I may want to consider? Any comments on this code are much appreciated.
    <code>
    String content = new String("a string generated from email content");
                   StringTokenizer st1 = new StringTokenizer( content, "@" );     //finds possible instances of email addresses
                   int numberTokens=st1.countTokens();
                   int record=0;
                   String garbage;
    if(numberTokens>1){
                   // create array to hold user and hostname values for all addresses
                   String address[] = new String[ 2*(numberTokens-1) ];
                   for( int i=0; i<numberTokens; i++ ){
                        String content2 = new String( st1.nextToken() );
                        StringTokenizer st2 = new StringTokenizer( content2, " <>()" );     //set characters which may denote/separate addresses
                        int numberTokens2 = st2.countTokens();
                        for( int j=0; j<numberTokens2; j++ ){
                             if( ((i==0)&&(j==numberTokens2-1)) ||     //to get first username     (first '@' token)
                                  ((i==numberTokens-1)&&(j==0)) ||     //to get last domain name (last '@' token)
                                  ((i>0&&i<numberTokens-1)&&(j==0||j==(numberTokens2-1))) ){     //get username/domain (encapuslated '@' tokens)
                                       address[record] = st2.nextToken();
                                       record++;
                             }else if( (st2.hasMoreTokens()) )     //move parser to next token if exists
                                                                          //or let for-loop expire.                          
                                       garbage = st2.nextToken();
                   for(int k=0;k<address.length;k++ )     
                        System.out.println(address[k]);     //let's see how we did
    </code>

  • Ironport alt-mailhost filter and bounced emails.

    Hello!
    I have problem with ironport configuration and hope someone help me )
    I use filter with alt-mailhost rule for users within domain but located on another server.
    It's work fine. But... i have problem with bounced emails. They don't affected by filter and use smtp route.
    How to attach my filter with bounced emails?
    Thanks for any help.

    Hello,
    bounce email messages are handled outside the work queue so they are not subject to Message Filter or Content Filter processing. Only SMTP routes will apply here, an alt-mailhost action is not possible.
    The only possible workaround would be to loop the delivered bounce message over the appliance again (e.g an SMTP route that points to a secondary listener on the appliance), so that it can be reprocessed by alt-mailhost. Please note that looping certain messages over the appliance again bears the risk of an endless mail loop so you may need to adjust your filters accordingly to prevent this.
    Hope this helps. If not, please let us know.
    Regards,
    Martin

  • Bounced email causes mail app to close

    After reading many many posts across the internet, I finally figured that a bounced email message (which may show up in your inbox as "mail delivery error" or something similar) was crashing my mail app.
    The symptoms? I would open my mail app, it would try to retrieve mail and then close about 3 seconds later.
    The fix? I had to log into my POP mail account via the web, delete the email with the delivery error and then on my iPhone, delete/add back my mail account. If you don't delete the message on the server first, you just end up back in the same boat the next time you retrieve messages from the server.
    The fix is simple enough but how can the folks at Apple expect us to do this every time we get a bounced email? We really need a fix ASAP unless there is one on the way?

    I seriously doubt Apple expects us to do this everytime there is a bounced email.
    For me, a bounced email is few and far between - only when the recipient's incoming mail server allocation has been exceeded and not accepting any new messages, or the incoming mail server incorrectly detects my email address or a message as being spam, which is even more few and far between. Regardless, a bounced message - a return error message from the recipient's incoming mail server did not crash the iPhone's Mail client, but this is with an IMAP account. Since these are so few and far between, I don't recall the last time I recieved one.
    Not sure what the fix is or if a fix for POP accounts is on the way but in the interim if you are getting many bounced messages, you may want to look into why.

  • Bounced emails detections

    how can I track the bounced emails?
    [email protected]

    Isn't this a FAQ yet? Search the forum for the word "bounced".

  • Hard Bounces - Email Campaign

    My client sent out an email campaign to 81 recipients. The campaign generated 25 hard bounces. Is there a way to get more detailed information about the reason for these bounces? We are trying to evaluate this result -- a high rate of hard bounces (over 30%) Your reporting does not provide much information.
    Thank you.
    Catherine

    Hello Catherine,
    Please submit a case if you haven't already on this so we can investigate further with the following details...
    Site URL
    Email campaign name
    Is this happening with any other campaigns/sites?
    If there is any specific domain emails for hard bounce, please mention that.
    We'll may need to look into this further.
    Thank you,
    Sanjit

  • Bounced emails are not coming back to me

    I send out many emails and to keep my email lists accurate I need to know which emails bounce back to me. As of the last 2 weeks I am not receiving any bounced back emails. I have sent several test bogus emails and they do not come back as well. What is the solution!

    How do you figure this is a Thunderbird problem? Thunderbird hands the email off to your providers SMTP server and then it is done. It has no control over what the servers that the message pass through do with it.

  • EX2010 Hard Bounce email from one specific domain

    Hi
    I have exchange 2010 install no edge role as i use a smart host. lately it seems exchange is bouncing mails from a particular domain, i view the logs in smart host and see the remote host as my external IP. The smart host vendor is saying that its my exchange
    server which is bouncing the mail but since i have no edge role. i am puzzle why my server would bounce those mails

    ah you have ex 2010. ok let me capture the screen shots for you.. but please let me know do you have any SPAM protection installed like forefront/ Mcafee or Symantec etc or its just plain exchange with inbuild security. if inbuilt security then go to ECP
    -> server config -> hub transport and there enter the IP address of destination server whose mails are getting bounced.
    make sure in organization config.. --> hub transport -->IP allow is enabled.
    Mark as useful or answered if my replies helped you solving your query.
    Thanks, Happiness Always
    Jatin
    Skype: jatider2jatin, Email: [email protected]

  • My iCloud server is bouncing email

    For some reason email addressed to my account is recognized as spam, even though it is not. I checked the sending account's IP address [noted below] with MXTOOLBOX, it isn't coming up bad. Then I checked the account IP listed in the bounce message and likewise. Why is the iCloud server bouncing back emails addressed to me? Here is the bounce notification I received... (obfuscated my email for security reasons).
    Email clipping:
    This message was created automatically by mail delivery software.
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    h*******@me.com
       SMTP error from remote mail server after RCPT TO:<h*******@me.com>:
       host mx4.mail.icloud.com [17.158.8.62]: 550 5.7.0 Blocked - see https://support.proofpoint.com/dnsbl-lookup.cgi?ip=23.235.201.172:
    I tried sending from another email address and that works OK. So I conclude that me.com server software has mistakenly declared my email as spam for some unknown reason. How can this be fixed?

    You have to delete the old account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • BO Publication/Scheduling bounced email trace

    Hi
    I am trying to create a publication in BusinessObjects 3.1 that sends emails to recipients, it is required that if in case email address is invalid (does not exist etc), we should be able to tell which recipients emails were not received.
    When I tested the publication in Test Mode, even if I enter in an invalid email address, the job is still successful, there is no way to tell if the email is actually delivered. I tried to look in the audit log of the job server too but it doesn't seem to have anything useful.
    Is there a way to tell or trace the failed deliveries?
    Thanks.
    Edited by: Rona Zhang on May 4, 2011 2:21 AM

    I found a way to solve this issue.
    In the Destination property of the publication, put in own email in the 'from' field, so that any emails bounced back can be sent to the email address, in this way i know which ones have failed.
    thanks

  • Help! re bounced emails

    I am relieved to know that today's email outage is over. However I have heard from customers that messages they sent to me during the outage were bounced with this error: "550 5.1.1 unknown or illegal alias"
    I'm okay with the customers who contacted me. But I'm afraid of serious long-term repercussions from people who think that message means my email address is no good and who give up on contacting me.
    If there were a way to find out who received such a message I would be able to repair the damage. Please advise.

    It appears that this "illegal alias" message was generated only for messages posted to a subaccount.

  • Block or Bounce Email? Help please

    Hello
    I wondered if someone could help me as this is pretty serious for me as I need to a certain email address from even getting to my inbox as I am being pestered by a individual and need it to stop asap. There used to be a bounce feature in 10.7 I am sure but is there any way of blocking, bouncing etc so this mail does not even get as far as my inbox?
    I cannot go into details of the email or sender but this needs to stop.
    Help would be much appreciated from a pro user,
    MBa

    Hello Barry
    I have activated the junk mail feature within mail for this sender/address so I suppose thats all I can do but thanks for responding and helping out. shame about the bounce feature not available anymore.
    all the best
    mba

  • Bounced email

    Helo,
    sending an email to a specific adress always errors in:
    "Bounced: DCID 6694074 MID 9775512 to RID 0 - 5.1.0 - Unknown address error ('550', ['Administrative prohibition'])"
    Does it mean, that the Reciever bounced my email?
    Thanks for any answer!
    Steffen

    Hi There,
    I've never seen the error "Admin Prohibition" but the 550 states that the e-mail address does not exist.
    Try creating a domain debug log for that specific domain, you will get more detailed information regarding the connection, and be able to see the full SMTP conversation.
    System Administration > Log Subscription > Add Log Subscription
    from there make sure you choose "Domain Debug Log" as the log type and then specify the domain. Commit changes and then tail in the CLI.

  • How to stop bounced emails?

    Starting last month my emails have been intermittently bounced back, now 50% or better. I am using Mail for the POP account--I use a non-mac host, Westhost. The various bounced back messages from earthlinkabuse, spamhaus, etc, say that my IP is associated with spamming, naughty images, words. But that's nothing to do with me!
    Any suggestions?
    Thanks.

    are you dsl or cable broadband with DHCP from your
    ISP?
    Try unplugging your dsl/cable for 15-30mins to try to
    reset your DHCP public IP address.
    Some spammer might have had that IPA assigned to them
    for awhile, and one or more people filed a complaint
    with the spam houses about that spammer. Then, you
    got the misfortune of getting that DHCP assignment.
    A more severe case would be if the distant end spam
    filters are rejecting the entire subnet of IP
    addresses associated with your email account. In that
    case, I would suggest that you either find a new
    email provider or see if your email provider can work
    with the black hole lists to get their domain removed
    from those lists.
    Thanks for the reply.
    We're running off a dsl wireless network.
    I will be at the studio later where the computer and router are, and do the reboot.
    My web host, Westhost, suggests that I acquire a dedicated IP address--and here is were my knowledge of the system ends--will that remove me from the DHCP assignment? and give me a fresh IPA that will not get hung-up by the spam patrol?
    Thanks
    intel imav   Mac OS X (10.4.8)  
    intel imav   Mac OS X (10.4.8)  
    intel imav   Mac OS X (10.4.8)  

Maybe you are looking for