Questions tagged [email-bounces]

A bounce message indicates that the email could not be delivered successfully. Usually libraries for sending email allow to set a separate bounce address which receives the bounced messages.

In the Internet's standard e-mail protocol SMTP, a bounce message, also called a Non-Delivery Report/Receipt (NDR), a (failed) Delivery Status Notification (DSN) message, a Non-Delivery Notification (NDN) or simply a bounce, is an automated electronic mail message from a mail system informing the sender of another message about a delivery problem. The original message is said to have bounced.

See Wikipedia for details.

167 questions
3
votes
2 answers

Remove Users from MailList based on Bounce Message

What is the best way to figure out which email users can be removed from their bounce mail message? Example being a bounce mail error code of 5.1.1, where the mailbox no longer exists. I'm using the mbox file format from Thunderbird. My ideas…
Eugene K
  • 3,381
  • 2
  • 23
  • 36
3
votes
0 answers

AWS SES out-of-the-office

1) How to distinguish between a Transient-General bounce and OOTO bounce(which also comes in as a Transient-General bounce)? 2) How to get the Body of an OOTO bounce ? We receive the bounce of this type but we also need to notify back to our…
3
votes
1 answer

Aws bounce error, Temporary mail addresses like mailinator.com or etc. causes bounce or not?

My application sends alert and emails from using aws mail services but today aws send me a notification that says bounce rate over %20 it should be below %10. But app doesn't have any unverified mail addresses except mailinator.com(which are…
nolines
  • 150
  • 1
  • 15
3
votes
3 answers

How to generate bounce-back email notification, with some extra info included

I am just now beginning to research this, and so far haven't come up with much. So, I'm hoping you guys can help me, or point me in some sort of direction. I am in a situation in which I need to somehow be able to detect a failed email delivery…
campbelt
  • 1,573
  • 5
  • 27
  • 43
3
votes
1 answer

How to send emails with a Return Path in .net 3.5

Can any one guide me on how i can send emails with a return path in ASP.net 3.5 / C# 3.5. I know this was possible few years back but now due to spoofing issues this is not possible. I have been looking on internet but no use. I want the emails if…
Haroon
  • 31
  • 2
3
votes
2 answers

Java Mail: Getting Bounced Messages To Go To An Address Different From The Sender

I'm trying to get Java mail to send bounced email to a different address than the sender's address and not send the bounce message to the sender at all. So far I can't do either in a test program ( below ). The sender is "joe@acme.com". I want…
Steve
  • 3,127
  • 14
  • 56
  • 96
3
votes
2 answers

Is bounce email handling worth it?

We've got a web app with nothing fancy in terms of email notifications. It would be nice to know if an end user entered email address is errant and deliveries to it bomb. In the modern world of spam infected email, is it still worth trying to catch…
3
votes
1 answer

How to write a PHP script that read bounce email?

I am doing a bounce-email handling with PHP. I have include the return path in the mail function, e.g: mail($to_address, $subject, $message, $headers, "-f".$return_path ); $return_path = "bounce_handle@domain.com"; Now, what should my php script…
iwan_kr88
2
votes
1 answer

"This is a permanent error." Is that for the email address or the message?

I'm wondering whether it's safe to mark bounce messages containing "This is a permanent error." string from the first time? When I get "This is a permanent error." doesn't mean "permanent error" for this message or for the user?
oaziz
  • 1,362
  • 1
  • 17
  • 32
2
votes
2 answers

Bounce Support for Swiftmailer

I see recommendations for Swiftmailer for handling bounce messages here, yet I don't see the support for this in the documentation. Am I missing something? It appears to me that PHPMailer-BHM is the only option out there with this feature ready to…
Evil Elf
  • 2,157
  • 3
  • 22
  • 28
2
votes
1 answer

how do i track the bounced emails?

I would like to track the bounced emails of that has been sent from my server. I read few stuffs and found that the bounced emails are stored in mailbox and can be detected by reading the mailbox files directly. check for bounced mails with php Now…
KoolKabin
  • 17,157
  • 35
  • 107
  • 145
2
votes
0 answers

Java validate SMTP server using telnet

i'm using a library for validating SMTP connection to test invalid mail domains to avoid sending mails and bounce, simply i'm using telnet to simulate MAIL FROM: <{Address}> and RCPT TO: <{Address}> using BufferedWriter and BufferedReader as…
Bersius Ajax
  • 33
  • 1
  • 4
2
votes
1 answer

PHPMailer: Set custom header to identify it inside the bounce email

I'm sending emails with PHPMailer. When an email is bounced it goes to an account like this: account_bounces@domain.com Inside my email client where I manage this account (account_bounces@domain.com), I have the option to adds filters in order to…
Hector
  • 43
  • 7
2
votes
2 answers

Sending mail with python - how to set Return-Path that is different from 'From' address

What im trying to do is to set up smail mail server with lamson (lamsonproject.org). Its working very well, but i have problem with setting return path and for that reason, bounces are going to 'From' address and therefore not reaching my mail…
Odif Yltsaeb
  • 5,575
  • 12
  • 49
  • 80
2
votes
1 answer

Parsing bounced emails using Javamail and DSN.jar

I found the way to redirect my bounced emails using my own smtp server. Now, as per the requirement, I should be able to read the bounced emails using my program, like reason for bouncing, receiver's email address, email content and etc.…
Rathan
  • 55
  • 1
  • 8
1 2
3
11 12