Yahoo Bounces

AHK

Active Member
Hello @twisted1919,
As every one knows that in past few months Yahoo increase bounces with bellow error message
smtp;554 delivery error: dd Requested mail action aborted

I think it should Hard Bounce
As per bellow post & many other
https://wordtothewise.com/2017/11/spike-yahoo-error-codes/
but MW is making them Internal bounces.
I have made one file in
/apps/common/vendors/BounceHandler/rules-custom.php
with bellow
<?php if ( ! class_exists('BounceHandler', false)) exit('No direct script access allowed');
return array(
BounceHandler::DIAGNOSTIC_CODE_RULES => array(),
BounceHandler::DSN_MESSAGE_RULES => array(),
BounceHandler::BODY_RULES => array(),
BounceHandler::COMMON_RULES => array(
array(
'bounceType' => BounceHandler::BOUNCE_INTERNAL,
'regex' => array(

),
),
array(
'bounceType' => BounceHandler::BOUNCE_SOFT,
'regex' => array(

),
),
array(
'bounceType' => BounceHandler::BOUNCE_HARD,
'regex' => array(
'/dd Requested mail action aborted/i,
),
),
),
);


Do you think it will work and mark them Hard bounces.

Thanks
 
Last edited:
Back
Top