Author |
|
microalps Newbie
Joined: 16 July 2012
Online Status: Offline Posts: 1
|
Posted: 16 July 2012 at 5:58am | IP Logged
|
|
|
I have used the basic examples to build a mail parser. I have a single bounce-back from an email sent to one address that includes a DSN and plain text version. When I loop through the RecipientStatusCollection:
1) I get two results even though I sent to one email
2) The first one has no email address and is marked as a "OtherBlocked". The second has the email address and is marked as "Hard". It seems like the first is from the plain text (and is not being parsed correctly) and the second is from the DSN. Isn't the default setup to use DsnThenText? Why is the parsing not successful?
This is what I get from the RecipientStatusCollection:
Code:
----------------------------------------------------
E-mail address:
Status: is bounced
Common reason: Blocked
Detailed reason: OtherBlocked
Description: this is the mail system at host li245-65.members.linode.com. i'm sorry to have to inform you that your message could not be delivered to one or more recipients. it's attached below. for further assistance, please send mail to <postmaster> if you do so, please include this problem report. you can delete your own text from the attached returned message. the mail system <donotreply@********.com>: host aspmx.l.google.com[173.194.76.27] said: 550 5.2.1 the email account that you tried to reach is disabled. gm6si2955367qab.19 (in reply to rcpt to command)
----------------------------------------------------
E-mail address: donotreply@********.com
Status: is bounced
Common reason: Undeliverable
Detailed reason: Hard
Description: 5.2.1 550 5.2.1 The email account that you tried to reach is disabled. gm6si2955367qab.19
----------------------------------------------------
|
|
|
3) What is the relationship between IsBounced, DetailedType, and CommonType?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 16 July 2012 at 6:17am | IP Logged
|
|
|
To let us help you on this, please submit the bounce message itsel via HelpDesk.
As for IsBounced, it's set to true when Detailed and Common indicate non-delivery.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|