Transient bounces being marked as hard bounces
-
It seems that there’s a bug where bounces from Amazon SNS with type
Transient
are being handled the same way as bounces with typePermanent
. This is leading to my subscribers being marked as Hardbounced even for temporary failures.In
MailsterAmazonSES::handle_sns()
I can see transient bounces are being handled with:mailster( 'subscribers' )->bounce( $subscriber->ID, $campaign_id, true, $status, $campaign_index );
Where true is being passed for the
$hard
parameter. Shouldn’t this be false for transient bounces?
- The topic ‘Transient bounces being marked as hard bounces’ is closed to new replies.