Adobe Campaign - Enquiry about the inbound email bounce
Hi guys,
I am Adobe Campaign's campaign manager. Recently i have come across a lot of bounce in my delivery, with core bounce message below.
Can any experts share with me what this code means, as i want to understand the situation led to the result of such a bounce?
- Momen_Code10_InvalidRecipient
- Momen_Code40_GenericBounce
- Momen_Code54_RelayDenied
Below are the details quoted from Administration > Campaign Management > Non deliverables Management > Mail rule set
Scripting for
1. Momen_Code10_InvalidRecipient
var res;
var sHeader = typeof this["x-bounce-code"] == "undefined" ? "" : this["x-bounce-code"];
if( sHeader.indexOf("10") != -1 )
res=true;
else
res=false;
Scripting for
2. Momen_Code40_GenericBounce
var res;
var sHeader = typeof this["x-bounce-code"] == "undefined" ? "" : this["x-bounce-code"];
if( sHeader.indexOf("40") != -1 )
res=true;
else
res=false;
Scripting for
3. Momen_Code54_RelayDenied
var res;
var sHeader = typeof this["x-bounce-code"] == "undefined" ? "" : this["x-bounce-code"];
if( sHeader.indexOf("54") != -1 )
res=true;
else
res=false;
Best regards,
Karen