On May 20, 2011, at 9:16 PM, Mary Ann wrote:
Cool, especially seeing bounces by domain That would be a huge help because by the time I realize there might be a blacklist problem, I'm usually seeing mass unsubscribes by the bounce handler
Yup, that's exactly why I decided to experiment with this chart
I've been thinking about the bounce handler, and how it would be great if it could recognize when a message is bouncing because the IP is blocked and count that as a soft bounce instead of a hard bounce It would give us time to get off the blacklist before the bounce scorecard has high enough scores to remove the address [ ] Is that something that could be done?
It is, in fact, something that can happen, since the rules are fairly flexible Here's an example of a bounce from comcast:
[Mon Apr 4 04:40:04 2011] thsm add_to_score 4 hapless_email@comcast
net
Simplified-Message-Id: 20110404030036,
Bounce_To: bounces@example
com,
Status: 5
x
y,
Bounce_From: Mail Delivery System <Mailer-Daemon@example
com>,
std_reason: unknown,
Message-Id: <20110404030036
53747612@example
com>,
Guessed_MTA: Exim,
Bounce_Subject: Mail delivery failed: returning message to sender,
Sadly, there's not much to go on There's no part of the log that says, "the sender has been black listed, etc, etc, etc" This is pretty usual I wish I had a copy of the actual bounced email to play with, instead of just what's being logged, but I'll get to that
So, to take this as an example, we can write a new rule for the bounce handler to give an email address from, "comcast net" a score of, "1" instead of "4" when the bounce handler finds the above from its parsing Here's the workflow I'm using:
http://dadamailproject
com/d/dada_bounce_handler
pl
html#advanced_configuration__rules__rule_
{ # same as above, but without the Diagnostic_Code_regex
error_5dot5dot1_status_soft_bounce => {
Examine => {
Message_Fields => {
Status => [qw(5
x
y)],
},
Data => {
Email => 'is_valid',
List => 'is_valid',
}
},
Action => {
add_to_score => $Plugin_Config->{Default_Soft_Bounce_Score},
}
}
},
Sadly (again), there's no way the bounce handler can, using the rules, figure out where the email address is from (quite the oversight!), so right now, that above rule will match every bounced email that brings back a Status of, 5 x y That's not really good enough
So for this to work, I have to enhance the bounce handler so that we can use the email address that's associated with the bounced message in the rules/filtering system
Seems worth it to make that change,
Start a new thread, email: dadadev@dadamailproject.com
This is the developer discussion mailing list for Dada Mail.
If you are just looking for support Dada Mail, consult the message boards at:
https://forum.dadamailproject.com
Documentation for Dada Mail:
Specifically, see the Error FAQ:
https://dadamailproject.com/d/FAQ-errors.pod.html
To post to this list, send a message to:
mailto:dadadev@dadamailproject.com
All subscribers of this list may post to the list itself.
Topics that are welcome:
Dada Mail is on Github:
https://github.com/justingit/dada-mail/
If you would like to fork, branch, send over PRs, open up issues, etc.
This Privacy Policy is for this mailing list, and this mailing list only.
Email addresses collection through this mailing list are used explicitly to work within this email discussion list.
We only collect email addresses through our Closed-Loop Opt-In system.
We don't use your email address for any other purpose.
We won't be sharing your email address with any other entity.
Unsubscription can be done at any time. Please contact us at: justin@dadamailproject.com for any help regarding your subscription, including removal from the mailing list.
All mailing list messages sent from us will include a subscription removal link, which will allow you to remove yourself from this mailing list automatically, and permanently.
All consent to use your email address for any other purpose stated at the time of the mailing list subscription will also be revoked upon mailing list removal.