sisimai 4.14.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sisimai might be problematic. Click here for more details.

Files changed (562) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +2 -0
  4. data/.rubocop.yml +165 -0
  5. data/.travis.yml +21 -0
  6. data/ANALYTICAL-PRECISION +54 -0
  7. data/Changes +5 -0
  8. data/Developers.mk +129 -0
  9. data/Gemfile +9 -0
  10. data/LICENSE +26 -0
  11. data/Makefile +56 -0
  12. data/README.md +300 -0
  13. data/Rakefile +7 -0
  14. data/Repository.mk +69 -0
  15. data/bin/console +14 -0
  16. data/bin/setup +7 -0
  17. data/lib/sisimai.rb +60 -0
  18. data/lib/sisimai/address.rb +218 -0
  19. data/lib/sisimai/arf.rb +343 -0
  20. data/lib/sisimai/data.rb +413 -0
  21. data/lib/sisimai/data/json.rb +36 -0
  22. data/lib/sisimai/data/yaml.rb +32 -0
  23. data/lib/sisimai/datetime.rb +518 -0
  24. data/lib/sisimai/mail.rb +82 -0
  25. data/lib/sisimai/mail/maildir.rb +85 -0
  26. data/lib/sisimai/mail/mbox.rb +69 -0
  27. data/lib/sisimai/mail/stdin.rb +52 -0
  28. data/lib/sisimai/mda.rb +152 -0
  29. data/lib/sisimai/message.rb +510 -0
  30. data/lib/sisimai/mime.rb +127 -0
  31. data/lib/sisimai/msp.rb +54 -0
  32. data/lib/sisimai/msp/de/einsundeins.rb +174 -0
  33. data/lib/sisimai/msp/de/gmx.rb +197 -0
  34. data/lib/sisimai/msp/jp/biglobe.rb +179 -0
  35. data/lib/sisimai/msp/jp/ezweb.rb +292 -0
  36. data/lib/sisimai/msp/jp/kddi.rb +195 -0
  37. data/lib/sisimai/msp/ru/mailru.rb +306 -0
  38. data/lib/sisimai/msp/ru/yandex.rb +241 -0
  39. data/lib/sisimai/msp/uk/messagelabs.rb +250 -0
  40. data/lib/sisimai/msp/us/amazonses.rb +248 -0
  41. data/lib/sisimai/msp/us/aol.rb +234 -0
  42. data/lib/sisimai/msp/us/bigfoot.rb +243 -0
  43. data/lib/sisimai/msp/us/facebook.rb +306 -0
  44. data/lib/sisimai/msp/us/google.rb +357 -0
  45. data/lib/sisimai/msp/us/outlook.rb +243 -0
  46. data/lib/sisimai/msp/us/receivingses.rb +247 -0
  47. data/lib/sisimai/msp/us/sendgrid.rb +257 -0
  48. data/lib/sisimai/msp/us/verizon.rb +311 -0
  49. data/lib/sisimai/msp/us/yahoo.rb +178 -0
  50. data/lib/sisimai/msp/us/zoho.rb +198 -0
  51. data/lib/sisimai/mta.rb +55 -0
  52. data/lib/sisimai/mta/activehunter.rb +155 -0
  53. data/lib/sisimai/mta/apachejames.rb +194 -0
  54. data/lib/sisimai/mta/courier.rb +307 -0
  55. data/lib/sisimai/mta/domino.rb +209 -0
  56. data/lib/sisimai/mta/exchange.rb +314 -0
  57. data/lib/sisimai/mta/exim.rb +549 -0
  58. data/lib/sisimai/mta/imailserver.rb +227 -0
  59. data/lib/sisimai/mta/interscanmss.rb +167 -0
  60. data/lib/sisimai/mta/mailfoundry.rb +173 -0
  61. data/lib/sisimai/mta/mailmarshalsmtp.rb +206 -0
  62. data/lib/sisimai/mta/mcafee.rb +201 -0
  63. data/lib/sisimai/mta/messagingserver.rb +241 -0
  64. data/lib/sisimai/mta/mfilter.rb +190 -0
  65. data/lib/sisimai/mta/mxlogic.rb +283 -0
  66. data/lib/sisimai/mta/notes.rb +206 -0
  67. data/lib/sisimai/mta/opensmtpd.rb +225 -0
  68. data/lib/sisimai/mta/postfix.rb +306 -0
  69. data/lib/sisimai/mta/qmail.rb +335 -0
  70. data/lib/sisimai/mta/sendmail.rb +317 -0
  71. data/lib/sisimai/mta/surfcontrol.rb +193 -0
  72. data/lib/sisimai/mta/userdefined.rb +148 -0
  73. data/lib/sisimai/mta/v5sendmail.rb +232 -0
  74. data/lib/sisimai/mta/x1.rb +156 -0
  75. data/lib/sisimai/mta/x2.rb +157 -0
  76. data/lib/sisimai/mta/x3.rb +171 -0
  77. data/lib/sisimai/mta/x4.rb +365 -0
  78. data/lib/sisimai/mta/x5.rb +208 -0
  79. data/lib/sisimai/order.rb +217 -0
  80. data/lib/sisimai/reason.rb +235 -0
  81. data/lib/sisimai/reason/blocked.rb +105 -0
  82. data/lib/sisimai/reason/contenterror.rb +53 -0
  83. data/lib/sisimai/reason/exceedlimit.rb +60 -0
  84. data/lib/sisimai/reason/expired.rb +53 -0
  85. data/lib/sisimai/reason/filtered.rb +98 -0
  86. data/lib/sisimai/reason/hasmoved.rb +45 -0
  87. data/lib/sisimai/reason/hostunknown.rb +74 -0
  88. data/lib/sisimai/reason/mailboxfull.rb +118 -0
  89. data/lib/sisimai/reason/mailererror.rb +55 -0
  90. data/lib/sisimai/reason/mesgtoobig.rb +77 -0
  91. data/lib/sisimai/reason/networkerror.rb +57 -0
  92. data/lib/sisimai/reason/norelaying.rb +71 -0
  93. data/lib/sisimai/reason/notaccept.rb +63 -0
  94. data/lib/sisimai/reason/onhold.rb +45 -0
  95. data/lib/sisimai/reason/rejected.rb +101 -0
  96. data/lib/sisimai/reason/securityerror.rb +72 -0
  97. data/lib/sisimai/reason/spamdetected.rb +172 -0
  98. data/lib/sisimai/reason/suspend.rb +58 -0
  99. data/lib/sisimai/reason/systemerror.rb +69 -0
  100. data/lib/sisimai/reason/systemfull.rb +45 -0
  101. data/lib/sisimai/reason/toomanyconn.rb +73 -0
  102. data/lib/sisimai/reason/userunknown.rb +194 -0
  103. data/lib/sisimai/rfc2606.rb +24 -0
  104. data/lib/sisimai/rfc3464.rb +497 -0
  105. data/lib/sisimai/rfc3834.rb +150 -0
  106. data/lib/sisimai/rfc5322.rb +204 -0
  107. data/lib/sisimai/rhost.rb +47 -0
  108. data/lib/sisimai/rhost/googleapps.rb +237 -0
  109. data/lib/sisimai/smtp.rb +58 -0
  110. data/lib/sisimai/smtp/reply.rb +81 -0
  111. data/lib/sisimai/smtp/status.rb +755 -0
  112. data/lib/sisimai/string.rb +65 -0
  113. data/lib/sisimai/time.rb +11 -0
  114. data/lib/sisimai/version.rb +4 -0
  115. data/set-of-emails/README.md +35 -0
  116. data/set-of-emails/mailbox/mbox-0 +2467 -0
  117. data/set-of-emails/mailbox/mbox-1 +71 -0
  118. data/set-of-emails/maildir/bsd/README.md +261 -0
  119. data/set-of-emails/maildir/bsd/activehunter-01.eml +54 -0
  120. data/set-of-emails/maildir/bsd/activehunter-02.eml +53 -0
  121. data/set-of-emails/maildir/bsd/apachejames-01.eml +46 -0
  122. data/set-of-emails/maildir/bsd/arf-01.eml +66 -0
  123. data/set-of-emails/maildir/bsd/arf-02.eml +68 -0
  124. data/set-of-emails/maildir/bsd/arf-03.eml +56 -0
  125. data/set-of-emails/maildir/bsd/arf-04.eml +89 -0
  126. data/set-of-emails/maildir/bsd/arf-05.eml +82 -0
  127. data/set-of-emails/maildir/bsd/arf-06.eml +166 -0
  128. data/set-of-emails/maildir/bsd/arf-07.eml +59 -0
  129. data/set-of-emails/maildir/bsd/arf-08.eml +103 -0
  130. data/set-of-emails/maildir/bsd/arf-09.eml +104 -0
  131. data/set-of-emails/maildir/bsd/arf-10.eml +56 -0
  132. data/set-of-emails/maildir/bsd/arf-11.eml +37 -0
  133. data/set-of-emails/maildir/bsd/arf-12.eml +40 -0
  134. data/set-of-emails/maildir/bsd/arf-13.eml +76 -0
  135. data/set-of-emails/maildir/bsd/arf-14.eml +333 -0
  136. data/set-of-emails/maildir/bsd/arf-15.eml +66 -0
  137. data/set-of-emails/maildir/bsd/courier-01.eml +79 -0
  138. data/set-of-emails/maildir/bsd/courier-02.eml +83 -0
  139. data/set-of-emails/maildir/bsd/courier-03.eml +85 -0
  140. data/set-of-emails/maildir/bsd/courier-04.eml +87 -0
  141. data/set-of-emails/maildir/bsd/de-einsundeins-01.eml +38 -0
  142. data/set-of-emails/maildir/bsd/de-gmx-01.eml +52 -0
  143. data/set-of-emails/maildir/bsd/de-gmx-02.eml +51 -0
  144. data/set-of-emails/maildir/bsd/de-gmx-03.eml +56 -0
  145. data/set-of-emails/maildir/bsd/de-gmx-04.eml +51 -0
  146. data/set-of-emails/maildir/bsd/domino-01.eml +33 -0
  147. data/set-of-emails/maildir/bsd/domino-02.eml +83 -0
  148. data/set-of-emails/maildir/bsd/exchange-01.eml +31 -0
  149. data/set-of-emails/maildir/bsd/exchange-02.eml +67 -0
  150. data/set-of-emails/maildir/bsd/exchange-03.eml +52 -0
  151. data/set-of-emails/maildir/bsd/exchange-04.eml +28 -0
  152. data/set-of-emails/maildir/bsd/exchange-05.eml +56 -0
  153. data/set-of-emails/maildir/bsd/exchange-06.eml +151 -0
  154. data/set-of-emails/maildir/bsd/exim-01.eml +46 -0
  155. data/set-of-emails/maildir/bsd/exim-02.eml +41 -0
  156. data/set-of-emails/maildir/bsd/exim-03.eml +42 -0
  157. data/set-of-emails/maildir/bsd/exim-04.eml +46 -0
  158. data/set-of-emails/maildir/bsd/exim-05.eml +49 -0
  159. data/set-of-emails/maildir/bsd/exim-06.eml +44 -0
  160. data/set-of-emails/maildir/bsd/exim-07.eml +28 -0
  161. data/set-of-emails/maildir/bsd/exim-08.eml +42 -0
  162. data/set-of-emails/maildir/bsd/exim-09.eml +169 -0
  163. data/set-of-emails/maildir/bsd/exim-10.eml +718 -0
  164. data/set-of-emails/maildir/bsd/exim-11.eml +718 -0
  165. data/set-of-emails/maildir/bsd/exim-12.eml +75 -0
  166. data/set-of-emails/maildir/bsd/exim-13.eml +145 -0
  167. data/set-of-emails/maildir/bsd/exim-14.eml +32 -0
  168. data/set-of-emails/maildir/bsd/exim-15.eml +49 -0
  169. data/set-of-emails/maildir/bsd/exim-16.eml +98 -0
  170. data/set-of-emails/maildir/bsd/exim-17.eml +50 -0
  171. data/set-of-emails/maildir/bsd/exim-18.eml +96 -0
  172. data/set-of-emails/maildir/bsd/exim-19.eml +52 -0
  173. data/set-of-emails/maildir/bsd/exim-20.eml +159 -0
  174. data/set-of-emails/maildir/bsd/exim-21.eml +150 -0
  175. data/set-of-emails/maildir/bsd/exim-22.eml +50 -0
  176. data/set-of-emails/maildir/bsd/exim-23.eml +57 -0
  177. data/set-of-emails/maildir/bsd/exim-24.eml +107 -0
  178. data/set-of-emails/maildir/bsd/exim-25.eml +18 -0
  179. data/set-of-emails/maildir/bsd/exim-26.eml +111 -0
  180. data/set-of-emails/maildir/bsd/exim-27.eml +120 -0
  181. data/set-of-emails/maildir/bsd/exim-28.eml +148 -0
  182. data/set-of-emails/maildir/bsd/google-apps-01.eml +66 -0
  183. data/set-of-emails/maildir/bsd/imailserver-01.eml +27 -0
  184. data/set-of-emails/maildir/bsd/imailserver-02.eml +36 -0
  185. data/set-of-emails/maildir/bsd/imailserver-03.eml +28 -0
  186. data/set-of-emails/maildir/bsd/imailserver-04.eml +15 -0
  187. data/set-of-emails/maildir/bsd/imailserver-05.eml +92 -0
  188. data/set-of-emails/maildir/bsd/imailserver-06.eml +29 -0
  189. data/set-of-emails/maildir/bsd/interscanmss-01.eml +49 -0
  190. data/set-of-emails/maildir/bsd/interscanmss-02.eml +259 -0
  191. data/set-of-emails/maildir/bsd/jp-biglobe-01.eml +43 -0
  192. data/set-of-emails/maildir/bsd/jp-ezweb-01.eml +36 -0
  193. data/set-of-emails/maildir/bsd/jp-ezweb-02.eml +65 -0
  194. data/set-of-emails/maildir/bsd/jp-ezweb-03.eml +35 -0
  195. data/set-of-emails/maildir/bsd/jp-ezweb-04.eml +38 -0
  196. data/set-of-emails/maildir/bsd/jp-ezweb-05.eml +38 -0
  197. data/set-of-emails/maildir/bsd/jp-ezweb-06.eml +33 -0
  198. data/set-of-emails/maildir/bsd/jp-kddi-01.eml +49 -0
  199. data/set-of-emails/maildir/bsd/jp-kddi-02.eml +54 -0
  200. data/set-of-emails/maildir/bsd/jp-kddi-03.eml +54 -0
  201. data/set-of-emails/maildir/bsd/mailfoundry-01.eml +50 -0
  202. data/set-of-emails/maildir/bsd/mailfoundry-02.eml +49 -0
  203. data/set-of-emails/maildir/bsd/mailmarshalsmtp-01.eml +43 -0
  204. data/set-of-emails/maildir/bsd/mcafee-01.eml +63 -0
  205. data/set-of-emails/maildir/bsd/mcafee-02.eml +65 -0
  206. data/set-of-emails/maildir/bsd/mcafee-03.eml +59 -0
  207. data/set-of-emails/maildir/bsd/messagingserver-01.eml +102 -0
  208. data/set-of-emails/maildir/bsd/messagingserver-02.eml +72 -0
  209. data/set-of-emails/maildir/bsd/messagingserver-03.eml +70 -0
  210. data/set-of-emails/maildir/bsd/messagingserver-04.eml +102 -0
  211. data/set-of-emails/maildir/bsd/messagingserver-05.eml +98 -0
  212. data/set-of-emails/maildir/bsd/messagingserver-06.eml +101 -0
  213. data/set-of-emails/maildir/bsd/messagingserver-07.eml +129 -0
  214. data/set-of-emails/maildir/bsd/mfilter-01.eml +49 -0
  215. data/set-of-emails/maildir/bsd/mfilter-02.eml +48 -0
  216. data/set-of-emails/maildir/bsd/mfilter-03.eml +43 -0
  217. data/set-of-emails/maildir/bsd/mxlogic-01.eml +47 -0
  218. data/set-of-emails/maildir/bsd/mxlogic-02.eml +44 -0
  219. data/set-of-emails/maildir/bsd/mxlogic-03.eml +46 -0
  220. data/set-of-emails/maildir/bsd/notes-01.eml +42 -0
  221. data/set-of-emails/maildir/bsd/notes-02.eml +42 -0
  222. data/set-of-emails/maildir/bsd/notes-03.eml +38 -0
  223. data/set-of-emails/maildir/bsd/notes-04.eml +181 -0
  224. data/set-of-emails/maildir/bsd/opensmtpd-01.eml +33 -0
  225. data/set-of-emails/maildir/bsd/opensmtpd-02.eml +33 -0
  226. data/set-of-emails/maildir/bsd/opensmtpd-03.eml +36 -0
  227. data/set-of-emails/maildir/bsd/opensmtpd-04.eml +40 -0
  228. data/set-of-emails/maildir/bsd/opensmtpd-05.eml +36 -0
  229. data/set-of-emails/maildir/bsd/postfix-01.eml +60 -0
  230. data/set-of-emails/maildir/bsd/postfix-02.eml +78 -0
  231. data/set-of-emails/maildir/bsd/postfix-03.eml +71 -0
  232. data/set-of-emails/maildir/bsd/postfix-04.eml +89 -0
  233. data/set-of-emails/maildir/bsd/postfix-05.eml +78 -0
  234. data/set-of-emails/maildir/bsd/postfix-06.eml +72 -0
  235. data/set-of-emails/maildir/bsd/postfix-07.eml +74 -0
  236. data/set-of-emails/maildir/bsd/postfix-08.eml +78 -0
  237. data/set-of-emails/maildir/bsd/postfix-09.eml +76 -0
  238. data/set-of-emails/maildir/bsd/postfix-10.eml +73 -0
  239. data/set-of-emails/maildir/bsd/postfix-11.eml +86 -0
  240. data/set-of-emails/maildir/bsd/postfix-12.eml +71 -0
  241. data/set-of-emails/maildir/bsd/postfix-13.eml +81 -0
  242. data/set-of-emails/maildir/bsd/postfix-14.eml +68 -0
  243. data/set-of-emails/maildir/bsd/postfix-15.eml +69 -0
  244. data/set-of-emails/maildir/bsd/postfix-16.eml +73 -0
  245. data/set-of-emails/maildir/bsd/postfix-17.eml +68 -0
  246. data/set-of-emails/maildir/bsd/postfix-18.eml +121 -0
  247. data/set-of-emails/maildir/bsd/postfix-19.eml +105 -0
  248. data/set-of-emails/maildir/bsd/postfix-20.eml +231 -0
  249. data/set-of-emails/maildir/bsd/postfix-21.eml +60 -0
  250. data/set-of-emails/maildir/bsd/qmail-01.eml +40 -0
  251. data/set-of-emails/maildir/bsd/qmail-02.eml +35 -0
  252. data/set-of-emails/maildir/bsd/qmail-03.eml +22 -0
  253. data/set-of-emails/maildir/bsd/qmail-04.eml +31 -0
  254. data/set-of-emails/maildir/bsd/qmail-05.eml +31 -0
  255. data/set-of-emails/maildir/bsd/qmail-06.eml +39 -0
  256. data/set-of-emails/maildir/bsd/qmail-07.eml +22 -0
  257. data/set-of-emails/maildir/bsd/qmail-08.eml +23 -0
  258. data/set-of-emails/maildir/bsd/qmail-09.eml +103 -0
  259. data/set-of-emails/maildir/bsd/rfc3464-01.eml +60 -0
  260. data/set-of-emails/maildir/bsd/rfc3464-02.eml +43 -0
  261. data/set-of-emails/maildir/bsd/rfc3464-03.eml +40 -0
  262. data/set-of-emails/maildir/bsd/rfc3464-04.eml +50 -0
  263. data/set-of-emails/maildir/bsd/rfc3464-05.eml +63 -0
  264. data/set-of-emails/maildir/bsd/rfc3464-06.eml +48 -0
  265. data/set-of-emails/maildir/bsd/rfc3464-07.eml +88 -0
  266. data/set-of-emails/maildir/bsd/rfc3464-08.eml +70 -0
  267. data/set-of-emails/maildir/bsd/rfc3464-09.eml +93 -0
  268. data/set-of-emails/maildir/bsd/rfc3464-10.eml +467 -0
  269. data/set-of-emails/maildir/bsd/rfc3464-11.eml +1171 -0
  270. data/set-of-emails/maildir/bsd/rfc3464-12.eml +101 -0
  271. data/set-of-emails/maildir/bsd/rfc3464-13.eml +131 -0
  272. data/set-of-emails/maildir/bsd/rfc3464-14.eml +121 -0
  273. data/set-of-emails/maildir/bsd/rfc3464-15.eml +144 -0
  274. data/set-of-emails/maildir/bsd/rfc3464-16.eml +36 -0
  275. data/set-of-emails/maildir/bsd/rfc3464-17.eml +109 -0
  276. data/set-of-emails/maildir/bsd/rfc3464-18.eml +149 -0
  277. data/set-of-emails/maildir/bsd/rfc3464-19.eml +65 -0
  278. data/set-of-emails/maildir/bsd/rfc3464-20.eml +145 -0
  279. data/set-of-emails/maildir/bsd/rfc3464-21.eml +146 -0
  280. data/set-of-emails/maildir/bsd/rfc3464-22.eml +105 -0
  281. data/set-of-emails/maildir/bsd/rfc3464-23.eml +21 -0
  282. data/set-of-emails/maildir/bsd/rfc3464-24.eml +27 -0
  283. data/set-of-emails/maildir/bsd/rfc3464-25.eml +33 -0
  284. data/set-of-emails/maildir/bsd/rfc3464-26.eml +98 -0
  285. data/set-of-emails/maildir/bsd/rfc3464-27.eml +180 -0
  286. data/set-of-emails/maildir/bsd/rfc3834-01.eml +37 -0
  287. data/set-of-emails/maildir/bsd/rfc3834-02.eml +51 -0
  288. data/set-of-emails/maildir/bsd/rfc3834-03.eml +33 -0
  289. data/set-of-emails/maildir/bsd/ru-mailru-01.eml +54 -0
  290. data/set-of-emails/maildir/bsd/ru-mailru-02.eml +54 -0
  291. data/set-of-emails/maildir/bsd/ru-mailru-03.eml +62 -0
  292. data/set-of-emails/maildir/bsd/ru-mailru-04.eml +54 -0
  293. data/set-of-emails/maildir/bsd/ru-yandex-01.eml +102 -0
  294. data/set-of-emails/maildir/bsd/ru-yandex-02.eml +113 -0
  295. data/set-of-emails/maildir/bsd/ru-yandex-03.eml +101 -0
  296. data/set-of-emails/maildir/bsd/sendmail-01.eml +70 -0
  297. data/set-of-emails/maildir/bsd/sendmail-02.eml +82 -0
  298. data/set-of-emails/maildir/bsd/sendmail-03.eml +76 -0
  299. data/set-of-emails/maildir/bsd/sendmail-04.eml +63 -0
  300. data/set-of-emails/maildir/bsd/sendmail-05.eml +64 -0
  301. data/set-of-emails/maildir/bsd/sendmail-06.eml +67 -0
  302. data/set-of-emails/maildir/bsd/sendmail-07.eml +65 -0
  303. data/set-of-emails/maildir/bsd/sendmail-08.eml +62 -0
  304. data/set-of-emails/maildir/bsd/sendmail-09.eml +60 -0
  305. data/set-of-emails/maildir/bsd/sendmail-10.eml +82 -0
  306. data/set-of-emails/maildir/bsd/sendmail-11.eml +60 -0
  307. data/set-of-emails/maildir/bsd/sendmail-12.eml +62 -0
  308. data/set-of-emails/maildir/bsd/sendmail-13.eml +66 -0
  309. data/set-of-emails/maildir/bsd/sendmail-14.eml +64 -0
  310. data/set-of-emails/maildir/bsd/sendmail-15.eml +60 -0
  311. data/set-of-emails/maildir/bsd/sendmail-16.eml +69 -0
  312. data/set-of-emails/maildir/bsd/sendmail-17.eml +68 -0
  313. data/set-of-emails/maildir/bsd/sendmail-18.eml +64 -0
  314. data/set-of-emails/maildir/bsd/sendmail-19.eml +71 -0
  315. data/set-of-emails/maildir/bsd/sendmail-20.eml +120 -0
  316. data/set-of-emails/maildir/bsd/sendmail-21.eml +69 -0
  317. data/set-of-emails/maildir/bsd/sendmail-22.eml +73 -0
  318. data/set-of-emails/maildir/bsd/sendmail-23.eml +137 -0
  319. data/set-of-emails/maildir/bsd/sendmail-24.eml +66 -0
  320. data/set-of-emails/maildir/bsd/sendmail-25.eml +70 -0
  321. data/set-of-emails/maildir/bsd/sendmail-26.eml +71 -0
  322. data/set-of-emails/maildir/bsd/sendmail-27.eml +69 -0
  323. data/set-of-emails/maildir/bsd/sendmail-28.eml +69 -0
  324. data/set-of-emails/maildir/bsd/sendmail-29.eml +70 -0
  325. data/set-of-emails/maildir/bsd/sendmail-30.eml +68 -0
  326. data/set-of-emails/maildir/bsd/sendmail-31.eml +80 -0
  327. data/set-of-emails/maildir/bsd/sendmail-32.eml +71 -0
  328. data/set-of-emails/maildir/bsd/sendmail-33.eml +71 -0
  329. data/set-of-emails/maildir/bsd/sendmail-34.eml +75 -0
  330. data/set-of-emails/maildir/bsd/sendmail-35.eml +70 -0
  331. data/set-of-emails/maildir/bsd/sendmail-36.eml +71 -0
  332. data/set-of-emails/maildir/bsd/sendmail-37.eml +71 -0
  333. data/set-of-emails/maildir/bsd/surfcontrol-01.eml +79 -0
  334. data/set-of-emails/maildir/bsd/surfcontrol-02.eml +70 -0
  335. data/set-of-emails/maildir/bsd/surfcontrol-03.eml +70 -0
  336. data/set-of-emails/maildir/bsd/uk-messagelabs-01.eml +76 -0
  337. data/set-of-emails/maildir/bsd/us-amazonses-01.eml +59 -0
  338. data/set-of-emails/maildir/bsd/us-amazonses-02.eml +177 -0
  339. data/set-of-emails/maildir/bsd/us-amazonses-03.eml +55 -0
  340. data/set-of-emails/maildir/bsd/us-amazonses-04.eml +55 -0
  341. data/set-of-emails/maildir/bsd/us-aol-01.eml +1258 -0
  342. data/set-of-emails/maildir/bsd/us-aol-02.eml +1257 -0
  343. data/set-of-emails/maildir/bsd/us-aol-03.eml +1264 -0
  344. data/set-of-emails/maildir/bsd/us-aol-04.eml +1260 -0
  345. data/set-of-emails/maildir/bsd/us-bigfoot-01.eml +64 -0
  346. data/set-of-emails/maildir/bsd/us-facebook-01.eml +40 -0
  347. data/set-of-emails/maildir/bsd/us-facebook-02.eml +42 -0
  348. data/set-of-emails/maildir/bsd/us-google-01.eml +70 -0
  349. data/set-of-emails/maildir/bsd/us-google-02.eml +50 -0
  350. data/set-of-emails/maildir/bsd/us-google-03.eml +51 -0
  351. data/set-of-emails/maildir/bsd/us-google-04.eml +82 -0
  352. data/set-of-emails/maildir/bsd/us-google-05.eml +50 -0
  353. data/set-of-emails/maildir/bsd/us-google-06.eml +56 -0
  354. data/set-of-emails/maildir/bsd/us-google-07.eml +42 -0
  355. data/set-of-emails/maildir/bsd/us-google-08.eml +59 -0
  356. data/set-of-emails/maildir/bsd/us-google-09.eml +76 -0
  357. data/set-of-emails/maildir/bsd/us-google-10.eml +69 -0
  358. data/set-of-emails/maildir/bsd/us-google-11.eml +68 -0
  359. data/set-of-emails/maildir/bsd/us-google-12.eml +76 -0
  360. data/set-of-emails/maildir/bsd/us-google-13.eml +79 -0
  361. data/set-of-emails/maildir/bsd/us-google-14.eml +304 -0
  362. data/set-of-emails/maildir/bsd/us-outlook-01.eml +72 -0
  363. data/set-of-emails/maildir/bsd/us-outlook-02.eml +72 -0
  364. data/set-of-emails/maildir/bsd/us-outlook-03.eml +72 -0
  365. data/set-of-emails/maildir/bsd/us-outlook-04.eml +79 -0
  366. data/set-of-emails/maildir/bsd/us-outlook-05.eml +85 -0
  367. data/set-of-emails/maildir/bsd/us-outlook-06.eml +75 -0
  368. data/set-of-emails/maildir/bsd/us-outlook-07.eml +70 -0
  369. data/set-of-emails/maildir/bsd/us-receivingses-01.eml +74 -0
  370. data/set-of-emails/maildir/bsd/us-receivingses-02.eml +74 -0
  371. data/set-of-emails/maildir/bsd/us-receivingses-03.eml +74 -0
  372. data/set-of-emails/maildir/bsd/us-receivingses-04.eml +74 -0
  373. data/set-of-emails/maildir/bsd/us-receivingses-05.eml +74 -0
  374. data/set-of-emails/maildir/bsd/us-receivingses-06.eml +74 -0
  375. data/set-of-emails/maildir/bsd/us-receivingses-07.eml +74 -0
  376. data/set-of-emails/maildir/bsd/us-sendgrid-01.eml +95 -0
  377. data/set-of-emails/maildir/bsd/us-sendgrid-02.eml +98 -0
  378. data/set-of-emails/maildir/bsd/us-sendgrid-03.eml +100 -0
  379. data/set-of-emails/maildir/bsd/us-verizon-01.eml +31 -0
  380. data/set-of-emails/maildir/bsd/us-yahoo-01.eml +78 -0
  381. data/set-of-emails/maildir/bsd/us-yahoo-02.eml +79 -0
  382. data/set-of-emails/maildir/bsd/us-yahoo-03.eml +93 -0
  383. data/set-of-emails/maildir/bsd/us-yahoo-04.eml +94 -0
  384. data/set-of-emails/maildir/bsd/us-yahoo-05.eml +94 -0
  385. data/set-of-emails/maildir/bsd/us-zoho-01.eml +40 -0
  386. data/set-of-emails/maildir/bsd/us-zoho-02.eml +38 -0
  387. data/set-of-emails/maildir/bsd/us-zoho-03.eml +37 -0
  388. data/set-of-emails/maildir/bsd/us-zoho-04.eml +47 -0
  389. data/set-of-emails/maildir/bsd/us-zoho-05.eml +37 -0
  390. data/set-of-emails/maildir/bsd/v5sendmail-01.eml +24 -0
  391. data/set-of-emails/maildir/bsd/v5sendmail-02.eml +26 -0
  392. data/set-of-emails/maildir/bsd/v5sendmail-03.eml +29 -0
  393. data/set-of-emails/maildir/bsd/v5sendmail-04.eml +29 -0
  394. data/set-of-emails/maildir/bsd/v5sendmail-05.eml +42 -0
  395. data/set-of-emails/maildir/bsd/v5sendmail-06.eml +28 -0
  396. data/set-of-emails/maildir/bsd/v5sendmail-07.eml +35 -0
  397. data/set-of-emails/maildir/bsd/x1-01.eml +61 -0
  398. data/set-of-emails/maildir/bsd/x1-02.eml +62 -0
  399. data/set-of-emails/maildir/bsd/x2-01.eml +41 -0
  400. data/set-of-emails/maildir/bsd/x2-02.eml +46 -0
  401. data/set-of-emails/maildir/bsd/x2-03.eml +34 -0
  402. data/set-of-emails/maildir/bsd/x2-04.eml +0 -0
  403. data/set-of-emails/maildir/bsd/x2-05.eml +98 -0
  404. data/set-of-emails/maildir/bsd/x3-01.eml +61 -0
  405. data/set-of-emails/maildir/bsd/x3-02.eml +64 -0
  406. data/set-of-emails/maildir/bsd/x3-03.eml +59 -0
  407. data/set-of-emails/maildir/bsd/x3-04.eml +106 -0
  408. data/set-of-emails/maildir/bsd/x4-01.eml +92 -0
  409. data/set-of-emails/maildir/bsd/x4-02.eml +112 -0
  410. data/set-of-emails/maildir/bsd/x4-03.eml +245 -0
  411. data/set-of-emails/maildir/bsd/x4-04.eml +81 -0
  412. data/set-of-emails/maildir/bsd/x4-05.eml +121 -0
  413. data/set-of-emails/maildir/bsd/x4-06.eml +32 -0
  414. data/set-of-emails/maildir/bsd/x4-07.eml +153 -0
  415. data/set-of-emails/maildir/bsd/x5-01.eml +155 -0
  416. data/set-of-emails/maildir/dos/activehunter-01.eml +54 -0
  417. data/set-of-emails/maildir/dos/apachejames-01.eml +46 -0
  418. data/set-of-emails/maildir/dos/arf-01.eml +66 -0
  419. data/set-of-emails/maildir/dos/courier-01.eml +79 -0
  420. data/set-of-emails/maildir/dos/de-einsundeins-01.eml +38 -0
  421. data/set-of-emails/maildir/dos/de-gmx-01.eml +52 -0
  422. data/set-of-emails/maildir/dos/domino-01.eml +33 -0
  423. data/set-of-emails/maildir/dos/exchange-01.eml +31 -0
  424. data/set-of-emails/maildir/dos/exim-01.eml +46 -0
  425. data/set-of-emails/maildir/dos/google-apps-01.eml +66 -0
  426. data/set-of-emails/maildir/dos/imailserver-01.eml +27 -0
  427. data/set-of-emails/maildir/dos/interscanmss-01.eml +49 -0
  428. data/set-of-emails/maildir/dos/jp-biglobe-01.eml +43 -0
  429. data/set-of-emails/maildir/dos/jp-ezweb-01.eml +36 -0
  430. data/set-of-emails/maildir/dos/jp-kddi-01.eml +49 -0
  431. data/set-of-emails/maildir/dos/mailfoundry-01.eml +50 -0
  432. data/set-of-emails/maildir/dos/mailmarshalsmtp-01.eml +43 -0
  433. data/set-of-emails/maildir/dos/mcafee-01.eml +63 -0
  434. data/set-of-emails/maildir/dos/messagingserver-01.eml +102 -0
  435. data/set-of-emails/maildir/dos/mfilter-01.eml +49 -0
  436. data/set-of-emails/maildir/dos/mxlogic-01.eml +47 -0
  437. data/set-of-emails/maildir/dos/notes-01.eml +42 -0
  438. data/set-of-emails/maildir/dos/opensmtpd-01.eml +33 -0
  439. data/set-of-emails/maildir/dos/postfix-01.eml +60 -0
  440. data/set-of-emails/maildir/dos/qmail-01.eml +40 -0
  441. data/set-of-emails/maildir/dos/rfc3464-01.eml +59 -0
  442. data/set-of-emails/maildir/dos/rfc3834-01.eml +37 -0
  443. data/set-of-emails/maildir/dos/ru-mailru-01.eml +54 -0
  444. data/set-of-emails/maildir/dos/ru-yandex-01.eml +102 -0
  445. data/set-of-emails/maildir/dos/sendmail-01.eml +69 -0
  446. data/set-of-emails/maildir/dos/surfcontrol-01.eml +79 -0
  447. data/set-of-emails/maildir/dos/uk-messagelabs-01.eml +76 -0
  448. data/set-of-emails/maildir/dos/us-amazonses-01.eml +59 -0
  449. data/set-of-emails/maildir/dos/us-aol-01.eml +1258 -0
  450. data/set-of-emails/maildir/dos/us-bigfoot-01.eml +64 -0
  451. data/set-of-emails/maildir/dos/us-facebook-01.eml +40 -0
  452. data/set-of-emails/maildir/dos/us-google-01.eml +70 -0
  453. data/set-of-emails/maildir/dos/us-outlook-01.eml +72 -0
  454. data/set-of-emails/maildir/dos/us-receivingses-01.eml +74 -0
  455. data/set-of-emails/maildir/dos/us-sendgrid-01.eml +95 -0
  456. data/set-of-emails/maildir/dos/us-verizon-01.eml +31 -0
  457. data/set-of-emails/maildir/dos/us-yahoo-01.eml +78 -0
  458. data/set-of-emails/maildir/dos/us-zoho-01.eml +40 -0
  459. data/set-of-emails/maildir/dos/v5sendmail-01.eml +24 -0
  460. data/set-of-emails/maildir/dos/x1-01.eml +61 -0
  461. data/set-of-emails/maildir/dos/x2-01.eml +41 -0
  462. data/set-of-emails/maildir/dos/x3-01.eml +61 -0
  463. data/set-of-emails/maildir/dos/x4-01.eml +90 -0
  464. data/set-of-emails/maildir/dos/x5-01.eml +155 -0
  465. data/set-of-emails/maildir/err/make-test-01.eml +70 -0
  466. data/set-of-emails/maildir/err/make-test-02.eml +70 -0
  467. data/set-of-emails/maildir/err/make-test-03.eml +64 -0
  468. data/set-of-emails/maildir/err/make-test-04.eml +64 -0
  469. data/set-of-emails/maildir/err/make-test-05.eml +66 -0
  470. data/set-of-emails/maildir/err/make-test-06.eml +118 -0
  471. data/set-of-emails/maildir/err/make-test-07.eml +26 -0
  472. data/set-of-emails/maildir/err/make-test-08.eml +67 -0
  473. data/set-of-emails/maildir/err/make-test-09.eml +55 -0
  474. data/set-of-emails/maildir/err/make-test-10.eml +69 -0
  475. data/set-of-emails/maildir/err/make-test-11.eml +64 -0
  476. data/set-of-emails/maildir/err/make-test-12.eml +66 -0
  477. data/set-of-emails/maildir/err/make-test-13.eml +67 -0
  478. data/set-of-emails/maildir/err/make-test-14.eml +66 -0
  479. data/set-of-emails/maildir/err/make-test-15.eml +70 -0
  480. data/set-of-emails/maildir/err/make-test-16.eml +68 -0
  481. data/set-of-emails/maildir/err/make-test-17.eml +68 -0
  482. data/set-of-emails/maildir/err/make-test-18.eml +68 -0
  483. data/set-of-emails/maildir/err/make-test-19.eml +69 -0
  484. data/set-of-emails/maildir/err/make-test-20.eml +67 -0
  485. data/set-of-emails/maildir/err/make-test-21.eml +69 -0
  486. data/set-of-emails/maildir/err/make-test-22.eml +66 -0
  487. data/set-of-emails/maildir/err/make-test-23.eml +70 -0
  488. data/set-of-emails/maildir/err/make-test-24.eml +69 -0
  489. data/set-of-emails/maildir/err/make-test-25.eml +67 -0
  490. data/set-of-emails/maildir/err/make-test-26.eml +69 -0
  491. data/set-of-emails/maildir/err/make-test-27.eml +69 -0
  492. data/set-of-emails/maildir/err/make-test-28.eml +66 -0
  493. data/set-of-emails/maildir/err/make-test-29.eml +68 -0
  494. data/set-of-emails/maildir/err/make-test-30.eml +68 -0
  495. data/set-of-emails/maildir/err/make-test-31.eml +80 -0
  496. data/set-of-emails/maildir/err/make-test-32.eml +66 -0
  497. data/set-of-emails/maildir/err/make-test-33.eml +68 -0
  498. data/set-of-emails/maildir/err/make-test-34.eml +56 -0
  499. data/set-of-emails/maildir/err/make-test-35.eml +59 -0
  500. data/set-of-emails/maildir/err/make-test-36.eml +53 -0
  501. data/set-of-emails/maildir/err/make-test-37.eml +62 -0
  502. data/set-of-emails/maildir/mac/activehunter-01.eml +1 -2
  503. data/set-of-emails/maildir/mac/apachejames-01.eml +1 -4
  504. data/set-of-emails/maildir/mac/arf-01.eml +1 -3
  505. data/set-of-emails/maildir/mac/courier-01.eml +1 -6
  506. data/set-of-emails/maildir/mac/de-einsundeins-01.eml +1 -1
  507. data/set-of-emails/maildir/mac/de-gmx-01.eml +1 -1
  508. data/set-of-emails/maildir/mac/domino-01.eml +1 -0
  509. data/set-of-emails/maildir/mac/exchange-01.eml +1 -0
  510. data/set-of-emails/maildir/mac/exim-01.eml +1 -1
  511. data/set-of-emails/maildir/mac/google-apps-01.eml +1 -4
  512. data/set-of-emails/maildir/mac/imailserver-01.eml +1 -0
  513. data/set-of-emails/maildir/mac/interscanmss-01.eml +1 -2
  514. data/set-of-emails/maildir/mac/jp-biglobe-01.eml +1 -2
  515. data/set-of-emails/maildir/mac/jp-ezweb-01.eml +1 -1
  516. data/set-of-emails/maildir/mac/jp-kddi-01.eml +1 -2
  517. data/set-of-emails/maildir/mac/mailfoundry-01.eml +1 -2
  518. data/set-of-emails/maildir/mac/mailmarshalsmtp-01.eml +1 -2
  519. data/set-of-emails/maildir/mac/mcafee-01.eml +1 -4
  520. data/set-of-emails/maildir/mac/messagingserver-01.eml +1 -4
  521. data/set-of-emails/maildir/mac/mfilter-01.eml +1 -3
  522. data/set-of-emails/maildir/mac/mxlogic-01.eml +1 -1
  523. data/set-of-emails/maildir/mac/notes-01.eml +1 -2
  524. data/set-of-emails/maildir/mac/opensmtpd-01.eml +1 -0
  525. data/set-of-emails/maildir/mac/postfix-01.eml +1 -3
  526. data/set-of-emails/maildir/mac/qmail-01.eml +1 -1
  527. data/set-of-emails/maildir/mac/rfc3464-01.eml +1 -4
  528. data/set-of-emails/maildir/mac/rfc3834-01.eml +1 -0
  529. data/set-of-emails/maildir/mac/ru-mailru-01.eml +1 -1
  530. data/set-of-emails/maildir/mac/ru-yandex-01.eml +1 -4
  531. data/set-of-emails/maildir/mac/sendmail-01.eml +1 -4
  532. data/set-of-emails/maildir/mac/surfcontrol-01.eml +1 -5
  533. data/set-of-emails/maildir/mac/uk-messagelabs-01.eml +1 -4
  534. data/set-of-emails/maildir/mac/us-amazonses-01.eml +1 -4
  535. data/set-of-emails/maildir/mac/us-aol-01.eml +1 -15
  536. data/set-of-emails/maildir/mac/us-bigfoot-01.eml +1 -4
  537. data/set-of-emails/maildir/mac/us-facebook-01.eml +1 -4
  538. data/set-of-emails/maildir/mac/us-google-01.eml +1 -1
  539. data/set-of-emails/maildir/mac/us-outlook-01.eml +1 -4
  540. data/set-of-emails/maildir/mac/us-receivingses-01.eml +1 -4
  541. data/set-of-emails/maildir/mac/us-sendgrid-01.eml +1 -3
  542. data/set-of-emails/maildir/mac/us-verizon-01.eml +1 -2
  543. data/set-of-emails/maildir/mac/us-yahoo-01.eml +1 -1
  544. data/set-of-emails/maildir/mac/us-zoho-01.eml +1 -2
  545. data/set-of-emails/maildir/mac/v5sendmail-01.eml +1 -0
  546. data/set-of-emails/maildir/mac/x1-01.eml +1 -4
  547. data/set-of-emails/maildir/mac/x2-01.eml +1 -1
  548. data/set-of-emails/maildir/mac/x3-01.eml +1 -3
  549. data/set-of-emails/maildir/mac/x4-01.eml +1 -2
  550. data/set-of-emails/maildir/mac/x5-01.eml +1 -8
  551. data/set-of-emails/maildir/not/is-not-bounce-01.eml +25 -0
  552. data/set-of-emails/to-be-debugged-because/reason-is-onhold/onhold-0001.eml +85 -0
  553. data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0002.eml +27 -0
  554. data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0003.eml +78 -0
  555. data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml +25 -0
  556. data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml +79 -0
  557. data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml +72 -0
  558. data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml +68 -0
  559. data/set-of-emails/to-be-debugged-because/something-is-wrong/no-message-id-from-pr-150.eml +75 -0
  560. data/set-of-emails/to-be-parsed-for-test/README.md +20 -0
  561. data/sisimai.gemspec +25 -0
  562. metadata +647 -0
@@ -0,0 +1,69 @@
1
+ Return-Path: <MAILER-DAEMON@smtpgw.example.jp>
2
+ Received: from localhost (localhost)
3
+ by smtpgw.example.jp (V8/cf) id r9G5FZh9018575;
4
+ Wed, 16 Oct 2013 14:15:35 +0900
5
+ Date: Wed, 16 Oct 2013 14:15:35 +0900
6
+ From: Mail Delivery Subsystem <MAILER-DAEMON@smtpgw.example.jp>
7
+ Message-Id: <201310160515.r9G5FZh9018575@smtpgw.example.jp>
8
+ To: <kijitora@example.org>
9
+ MIME-Version: 1.0
10
+ Content-Type: multipart/report; report-type=delivery-status;
11
+ boundary="r9G5FZh9018575.1381900535/smtpgw.example.jp"
12
+ Subject: Returned mail: see transcript for details
13
+ Auto-Submitted: auto-generated (failure)
14
+
15
+ This is a MIME-encapsulated message
16
+
17
+ --r9G5FZh9018575.1381900535/smtpgw.example.jp
18
+
19
+ The original message was received at Wed, 16 Oct 2013 14:15:34 +0900
20
+ from p0000-ipbfpfx00kyoto.kyoto.example.co.jp [192.0.2.25]
21
+
22
+ ----- The following addresses had permanent fatal errors -----
23
+ <userunknown@bouncehammer.jp>
24
+ (reason: 550 5.1.1 <userunknown@bouncehammer.jp>... User Unknown)
25
+
26
+ ----- Transcript of session follows -----
27
+ ... while talking to mx.bouncehammer.jp.:
28
+ >>> DATA
29
+ <<< 550 5.1.1 <userunknown@bouncehammer.jp>... User Unknown
30
+ 550 5.1.1 <userunknown@bouncehammer.jp>... User unknown
31
+ <<< 503 5.0.0 Need RCPT (recipient)
32
+
33
+ --r9G5FZh9018575.1381900535/smtpgw.example.jp
34
+ Content-Type: message/delivery-status
35
+
36
+ Reporting-MTA: dns; smtpgw.example.jp
37
+ Received-From-MTA: DNS; p0000-ipbfpfx00kyoto.kyoto.example.co.jp
38
+ Arrival-Date: Wed, 16 Oct 2013 14:15:34 +0900
39
+
40
+ Final-Recipient: RFC822; userunknown@bouncehammer.jp
41
+ Action: failed
42
+ Status: 5.1.1
43
+ Remote-MTA: DNS; mx.bouncehammer.jp
44
+ Diagnostic-Code: SMTP; 550 5.1.1 <userunknown@bouncehammer.jp>... User Unknown
45
+ Last-Attempt-Date: Wed, 16 Oct 2013 14:15:35 +0900
46
+
47
+ --r9G5FZh9018575.1381900535/smtpgw.example.jp
48
+ Content-Type: message/rfc822
49
+
50
+ Return-Path: <kijitora@example.org>
51
+ Received: from [192.0.2.25] (p0000-ipbfpfx00kyoto.kyoto.example.co.jp [192.0.2.25])
52
+ (authenticated bits=0)
53
+ by smtpgw.example.jp (V8/cf) with ESMTP id r9G5FXh9018568
54
+ for <userunknown@bouncehammer.jp>; Wed, 16 Oct 2013 14:15:34 +0900
55
+ From: "Kijitora Cat" <kijitora@example.org>
56
+ Content-Type: text/plain; charset=utf-8
57
+ Content-Transfer-Encoding: base64
58
+ Subject: バウンスメールのテスト(日本語)
59
+ Date: Wed, 16 Oct 2013 14:15:35 +0900
60
+ Message-Id: <E1C50F1B-1C83-4820-BC36-AC6FBFBE8568@example.org>
61
+ To: userunknown@bouncehammer.jp
62
+ Mime-Version: 1.0 (Apple Message framework v1283)
63
+ X-Mailer: Apple Mail (2.1283)
64
+
65
+ 5aSq55yJ54yr44CB6K2m5oiS44GX44Gm44Gm44KC54yr44GY44KD44KJ44GX44KS5o+644KJ44Gb
66
+ 44Gw5a+E44Gj44Gm5p2l44KL44CCDQoNCg==
67
+
68
+ --r9G5FZh9018575.1381900535/smtpgw.example.jp--
69
+
@@ -0,0 +1,79 @@
1
+ Return-Path: <>
2
+ X-Original-To: shironeko@example.jp
3
+ Delivered-To: shironeko@example.jp
4
+ Received: from localhost (localhost [127.0.0.1])
5
+ by mx4.example.co.jp (Postfix) with ESMTP id 00000000000
6
+ for <shironeko@example.jp>; Thu 29 Apr 2010 23:34:45 +0900 (JST)
7
+ Received: from mx4.example.co.jp ([127.0.0.1])
8
+ by localhost (example.jp [127.0.0.1]) (amavisd-new, port 10000)
9
+ with ESMTP id 000000000000 for <shironeko@example.jp>;
10
+ Thu 29 Apr 2010 23:34:45 +0900 (JST)
11
+ Received: from mx4.example.com (mx4.example.com [192.0.2.80])
12
+ by mx4.example.co.jp (Postfix) with ESMTP id 00000000000
13
+ for <shironeko@example.jp>; Thu 29 Apr 2010 23:34:45 +0900 (JST)
14
+ From: <MAILER-DAEMON@example.com>
15
+ To: <shironeko@example.jp>
16
+ Date: Thu 29 Apr 2010 23:34:45 +0900
17
+ Subject: Nyaaan
18
+ X-Mailer: SurfControl E-mail Filter
19
+ MIME-Version: 1.0
20
+ Content-Type: multipart/report; report-type=delivery-status;
21
+ boundary="--=_NextPart_XX_23_34_45_Thursday_April_29_2010_00000"
22
+ X-SEF-0000000-0000-0000-0000-000000000000: 1
23
+ X-SEF-NDR-0000000-0000-0000-0000-000000000000: 1
24
+ X-SEF-ZeroHour-RefID: fgs=000000000
25
+ X-SEF-Processed: 0_0_0_000__2010_04_29_23_34_45
26
+ Message-Id: <20100429233445.00000000000@mx4.example.co.jp>
27
+
28
+
29
+ ----=_NextPart_XX_23_34_45_Thursday_April_29_2010_00000
30
+ Content-Type: text/plain;
31
+
32
+ Your message could not be sent.
33
+ A transcript of the attempts to send the message follows.
34
+ The number of attempts made: 1
35
+ Addressed To: kijitora@example.com
36
+
37
+ Thu 29 Apr 2010 23:34:45 +0900
38
+ Failed to send to identified host,
39
+ kijitora@example.com: [192.0.2.5], 550 kijitora@example.com... No such user
40
+ --- Message non-deliverable.
41
+
42
+
43
+
44
+ ----=_NextPart_XX_23_34_45_Thursday_April_29_2010_00000
45
+ Content-Type: message/delivery-status;
46
+
47
+
48
+ Action: failed
49
+ Final-Recipient: rfc822;kijitora@example.com
50
+ Diagnostic-Code: smtp; 550 kijitora@example.com... No such user
51
+ Status: 5.0.0
52
+
53
+
54
+
55
+
56
+ ----=_NextPart_XX_23_34_45_Thursday_April_29_2010_00000
57
+ Content-Type: message/rfc822;
58
+
59
+ Received: from Unknown [192.0.2.54] by mx4.example.com - SurfControl E-mail Filter (6.0.1);
60
+ Thu 29 Apr 2010 23:34:45 +0900
61
+ Received: from localhost (localhost [127.0.0.1])
62
+ by mx4.example.co.jp (Postfix) with ESMTP id 00000000000
63
+ for <kijitora@example.com>; Thu 29 Apr 2010 23:34:45 +0900 (JST)
64
+ Received: by mx4.example.co.jp (Postfix, from userid 525)
65
+ id 00000000000; Thu 29 Apr 2010 23:34:45 +0900 (JST)
66
+ To: <kijitora@example.com>
67
+ Subject: Nyaaan
68
+ From: "Shironeko" <shironeko@example.jp>
69
+ Date: Thu 29 Apr 2010 23:34:45 +0900
70
+ Content-Type: text/plain; charset="utf-8";
71
+ MIME-Version: 1.0
72
+ Message-Id: <20100429233445.00000000000@mx4.example.co.jp>
73
+ X-SEF-0000000-0000-0000-0000-000000000000: 1
74
+ X-SEF-ZeroHour-RefID: fgs=0
75
+ X-SEF-Processed: 0_0_0_000__2010_04_29_23_34_45
76
+
77
+ Nyaaa
78
+ ----=_NextPart_XX_23_34_45_Thursday_April_29_2010_00000--
79
+
@@ -0,0 +1,76 @@
1
+ Received: from [85.158.137.35] by server-17.bemta-3.messagelabs.com id A1/BA-11608-703D9945; Tue, 23 Dec 2014 20:39:35 +0000
2
+ X-Msg-Ref: server-11.tower-143.messagelabs.com!1419367175!36473369!1
3
+ X-Originating-IP: [10.245.230.38]
4
+ X-StarScan-Received:
5
+ X-StarScan-Version: 6.12.5; banners=-,-,-
6
+ X-VirusChecked: Checked
7
+ Received: (qmail 21907 invoked from network); 23 Dec 2014 20:39:35 -0000
8
+ Received: from mail5.bemta3.messagelabs.com (HELO mail5.bemta3.messagelabs.com) (10.245.230.38)
9
+ by server-11.tower-143.messagelabs.com with DHE-RSA-AES256-SHA encrypted SMTP; 23 Dec 2014 20:39:35 -0000
10
+ Received: by server-15.bemta-3.messagelabs.com id 5E/3F-17735-703D9945; Tue, 23 Dec 2014 20:39:35 +0000
11
+ From: Mail Delivery System <MAILER-DAEMON@messagelabs.com>
12
+ To: <user@xxxxxxxxxxxxxx.com>
13
+ Subject: Mail Delivery Failure
14
+ Date: Tue, 23 Dec 2014 20:39:35 +0000
15
+ Content-Type: multipart/report; report-type=delivery-status;
16
+ boundary="b0Nvs+XKfKLLRaP/Qo8jZhQPoiqeWi3KWPXMgw=="
17
+
18
+ --b0Nvs+XKfKLLRaP/Qo8jZhQPoiqeWi3KWPXMgw==
19
+ Content-Type: text/plain; charset="UTF-8"
20
+ Content-Transfer-Encoding: quoted-printable
21
+
22
+ This is the mail delivery agent at messagelabs.com.
23
+
24
+ I was unable to deliver your message to the following addresses:
25
+
26
+ maria@dest.example.net
27
+
28
+ Reason: 550 maria@dest.example.net... No such user
29
+
30
+ The message subject was: Re: BOAS FESTAS!
31
+ The message date was: Tue, 23 Dec 2014 20:39:24 +0000
32
+ The message identifier was: DB/3F-17375-60D39495
33
+ The message reference was: server-5.tower-143.messagelabs.com!1419367172!32=
34
+ 691968!1
35
+
36
+ Please do not reply to this email as it is sent from an unattended mailbox.
37
+ Please visit www.messagelabs.com/support for more details
38
+ about this error message and instructions to resolve this issue.
39
+
40
+
41
+ --b0Nvs+XKfKLLRaP/Qo8jZhQPoiqeWi3KWPXMgw==
42
+ Content-Type: message/delivery-status
43
+
44
+ Reporting-MTA: dns; server-15.bemta-3.messagelabs.com
45
+ Arrival-Date: Tue, 23 Dec 2014 20:39:34 +0000
46
+
47
+ Action: failed
48
+ Status: 5.0.0
49
+ Last-Attempt-Date: Tue, 23 Dec 2014 20:39:35 +0000
50
+ Remote-MTA: dns; mail.dest.example.net
51
+ Diagnostic-Code: smtp; 550 maria@dest.example.net... No such user
52
+ Final-Recipient: rfc822; maria@dest.example.net
53
+
54
+ --b0Nvs+XKfKLLRaP/Qo8jZhQPoiqeWi3KWPXMgw==
55
+ Content-Type: text/rfc822-headers
56
+
57
+ Return-Path: <user@xxxxxxxxxxxxxx.com>
58
+ Received: from [85.158.137.35] by server-15.bemta-3.messagelabs.com id DB/3F-17735-603D9945; Tue, 23 Dec 2014 20:39:34 +0000
59
+ X-Env-Sender: user@xxxxxxxxxxxxxx.com
60
+ X-Msg-Ref: server-5.tower-143.messagelabs.com!1419367172!32961698!1
61
+ X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor:
62
+ VHJ1c3RlZCBJUDogMjEyLjU1LjE1NC4yNCA9PiA4NjcxNw==\n
63
+ X-StarScan-Received:
64
+ X-StarScan-Version: 6.12.5; banners=-,-,-
65
+ X-VirusChecked: Checked
66
+ Date: Tue, 23 Dec 2014 20:39:24 +0000
67
+ Message-ID: <20141223203924.Horde.aVib3NKNmpMSMBPv_KPp-w9@mail.xxxxxxxxxxxxxx.com>
68
+ From: user@xxxxxxxxxxxxxx.com
69
+ To: Joaquim Carreira <manuel@example.com>
70
+ Subject: Re: BOAS FESTAS!
71
+ Content-Type: multipart/alternative; boundary="=_Bj5UaGbJV86-J0NyTypbMg8"
72
+ MIME-Version: 1.0
73
+
74
+
75
+ --b0Nvs+XKfKLLRaP/Qo8jZhQPoiqeWi3KWPXMgw==--
76
+
@@ -0,0 +1,59 @@
1
+ Return-Path: <>
2
+ Received: from a192-156.smtp-out.amazonses.com (a192-156.smtp-out.amazonses.com [199.255.192.156])
3
+ by nijo.example.jp (V8/cf) with ESMTP id p7V3i843003008
4
+ for <kijitora@example.jp>; Wed, 31 Aug 2011 12:44:08 +0900
5
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 nijo.example.jp p7V3i843003008
6
+ Authentication-Results: nijo.example.jp; sender-id=pass header.from=MAILER-DAEMON@email-bounces.amazonses.com
7
+ X-Original-To: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com
8
+ Delivered-To: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com
9
+ Message-Id: <000001321defcde6-79aad533-d383-11e0-ba2a-37b595feadb9-000000@email.amazonses.com>
10
+ Date: Wed, 31 Aug 2011 03:44:07 +0000
11
+ To: kijitora@example.jp
12
+ From: MAILER-DAEMON@email-bounces.amazonses.com
13
+ Subject: Delivery Status Notification (Failure)
14
+ MIME-Version: 1.0
15
+ Content-Type: multipart/report; report-type=delivery-status; boundary="JuU8e.4gyIcCrxq.1RFbQY.3Vu7Hs+"
16
+ X-AWS-Outgoing: 199.255.192.156
17
+
18
+ --JuU8e.4gyIcCrxq.1RFbQY.3Vu7Hs+
19
+ content-type: text/plain;
20
+ charset="utf-8"
21
+ Content-Transfer-Encoding: quoted-printable
22
+
23
+ The following message to <shironeko@example.co.jp> was undeliverable.
24
+ The reason for the problem:
25
+ 5.1.0 - Unknown address error 550-'5.7.1 <000001321defbd2a-788e31c8-2be1-42=
26
+ 2f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com>... Access denied'
27
+
28
+ --JuU8e.4gyIcCrxq.1RFbQY.3Vu7Hs+
29
+ content-type: message/delivery-status
30
+
31
+ Reporting-MTA: dns; a192-79.smtp-out.amazonses.com
32
+
33
+ Final-Recipient: rfc822;shironeko@example.co.jp
34
+ Action: failed
35
+ Status: 5.0.0 (permanent failure)
36
+ Remote-MTA: dns; [192.0.2.222]
37
+ Diagnostic-Code: smtp; 5.1.0 - Unknown address error 550-'5.7.1 <000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com>... Access denied' (delivery attempts: 0)
38
+
39
+ --JuU8e.4gyIcCrxq.1RFbQY.3Vu7Hs+
40
+ content-type: message/rfc822
41
+
42
+ Received: from unknown (HELO aws-bacon-dlvr-svc-na-i-8dc23dec.us-east-1.amazon.com) ([10.13.146.206])
43
+ by na-mm-outgoing-6102-bacon.iad6.amazon.com with ESMTP; 31 Aug 2011 03:23:15 +0000
44
+ Return-Path: 000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email-bounces.amazonses.com
45
+ From: kijitora@example.jp
46
+ To: shironeko@example.co.jp
47
+ Subject: TEST
48
+ MIME-Version: 1.0
49
+ Content-Type: text/plain; charset=UTF-8
50
+ Content-Transfer-Encoding: 7bit
51
+ Date: Wed, 31 Aug 2011 03:44:03 +0000
52
+ Message-ID: <000001321defbd2a-788e31c8-2be1-422f-a8d4-cf7765cc9ed7-000000@email.amazonses.com>
53
+ X-AWS-Outgoing: 199.255.192.79
54
+
55
+ These are sample scripts that show how to use Amazon Simple Email Service
56
+ (Amazon SES) from the command line. To learn more about these scripts, see
57
+ the Amazon SES Developer Guide.
58
+
59
+ --JuU8e.4gyIcCrxq.1RFbQY.3Vu7Hs+--
@@ -0,0 +1,1258 @@
1
+ Return-Path: <Postmaster@AOL.com>
2
+ Received: from mx15.bounceio.net (mx15.bounceio.net [192.237.151.15])
3
+ by partner-mbd01.mx.aol.com (Partner Internet Inbound) with ESMTP id 7085138000081
4
+ for <shironeko@aol.example.jp>; Fri, 21 Nov 2014 17:15:38 -0500 (EST)
5
+ Received: by mx14.bounceio.net id hdusok0rhk48 for <shironeko@aol.example.jp>; Fri, 21 Nov 2014 22:15:38 +0000 (envelope-from <Postmaster@AOL.com>)
6
+ From: Postmaster <Postmaster@AOL.com>
7
+ To: shironeko@aol.example.jp
8
+ Message-ID: <e4a6222cdb5b34375400904f03d8e6a5_1416608137968@aol.example.jp.bounceio.net>
9
+ Subject: Undeliverable: Nyaaaaan
10
+ MIME-Version: 1.0
11
+ Content-Type: multipart/report;
12
+ boundary="----=_Part_794689_296750481.1416608137968";
13
+ report-type=delivery-status
14
+ X-BounceIO-Id: 9D38DE46-21BC-4309-83E1-5F0D788EFF1F.1_0
15
+ Date: Fri, 21 Nov 2014 22:15:38 +0000
16
+ X-AOL-VSS-INFO: 5600.1067/98281
17
+ X-AOL-VSS-CODE: clean
18
+ x-aol-sid: 3039ac1afc14546fb98a0945
19
+ X-AOL-IP: 192.237.151.15
20
+ X-AOL-SCOLL-EIL: 1
21
+
22
+ ------=_Part_794689_296750481.1416608137968
23
+ Content-Type: text/html; charset=UTF-8
24
+ Content-Transfer-Encoding: quoted-printable
25
+
26
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org=
27
+ /TR/xhtml1/DTD/xhtml1-strict.dtd">
28
+ <html xmlns=3D"http://www.w3.org/1999/xhtml">
29
+ <head>=20
30
+ <meta content=3D"text/html; charset=3Dutf-8" http-equiv=3D"Content-Type" =
31
+ />=20
32
+ <meta content=3D"width=3Ddevice-width" name=3D"viewport" />=20
33
+ <style type=3D"text/css" data-premailer=3D"ignore">@media screen {
34
+ @font-face {
35
+ font-family: 'Open Sans';
36
+ font-style: normal;
37
+ font-weight: 400;
38
+ src: local('Open Sans'), local('OpenSans'), url(http://themes.googleuser=
39
+ content.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vv=
40
+ xL-qU.woff) format('woff');
41
+ }
42
+ }
43
+ </style>=20
44
+ </head>=20
45
+ <body style=3D"-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;=
46
+ color: #f8842e; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, san=
47
+ s-serif; font-size: 14px; font-weight: normal; line-height: 19px; margin: 0=
48
+ ; min-width: 100%; padding: 0; text-align: left; width: 100% !important">=
49
+ =20
50
+ <style type=3D"text/css">
51
+ body {
52
+ width: 100% !important; min-width: 100%; -webkit-text-size-adjust: 100%; -m=
53
+ s-text-size-adjust: 100%; margin: 0; padding: 0;
54
+ }
55
+ .ExternalClass {
56
+ width: 100%;
57
+ }
58
+ .ExternalClass {
59
+ line-height: 100%;
60
+ }
61
+ #backgroundTable {
62
+ margin: 0; padding: 0; width: 100% !important; line-height: 100% !important=
63
+ ;
64
+ }
65
+ img {
66
+ outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; widt=
67
+ h: auto; max-width: 100%; float: left; clear: both; display: block;
68
+ }
69
+ body {
70
+ color: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans=
71
+ -serif; font-weight: normal; padding: 0; margin: 0; text-align: left; line-=
72
+ height: 1.3;
73
+ }
74
+ body {
75
+ font-size: 14px; line-height: 19px;
76
+ }
77
+ a:hover {
78
+ color: #2795b6 !important;
79
+ }
80
+ a:active {
81
+ color: #2795b6 !important;
82
+ }
83
+ a:visited {
84
+ color: #2ba6cb !important;
85
+ }
86
+ h1 a:active {
87
+ color: #2ba6cb !important;
88
+ }
89
+ h2 a:active {
90
+ color: #2ba6cb !important;
91
+ }
92
+ h3 a:active {
93
+ color: #2ba6cb !important;
94
+ }
95
+ h4 a:active {
96
+ color: #2ba6cb !important;
97
+ }
98
+ h5 a:active {
99
+ color: #2ba6cb !important;
100
+ }
101
+ h6 a:active {
102
+ color: #2ba6cb !important;
103
+ }
104
+ h1 a:visited {
105
+ color: #2ba6cb !important;
106
+ }
107
+ h2 a:visited {
108
+ color: #2ba6cb !important;
109
+ }
110
+ h3 a:visited {
111
+ color: #2ba6cb !important;
112
+ }
113
+ h4 a:visited {
114
+ color: #2ba6cb !important;
115
+ }
116
+ h5 a:visited {
117
+ color: #2ba6cb !important;
118
+ }
119
+ h6 a:visited {
120
+ color: #2ba6cb !important;
121
+ }
122
+ table.button:hover td {
123
+ background: #2795b6 !important;
124
+ }
125
+ table.button:visited td {
126
+ background: #2795b6 !important;
127
+ }
128
+ table.button:active td {
129
+ background: #2795b6 !important;
130
+ }
131
+ table.button:hover td a {
132
+ color: #fff !important;
133
+ }
134
+ table.button:visited td a {
135
+ color: #fff !important;
136
+ }
137
+ table.button:active td a {
138
+ color: #fff !important;
139
+ }
140
+ table.button:hover td {
141
+ background: #2795b6 !important;
142
+ }
143
+ table.tiny-button:hover td {
144
+ background: #2795b6 !important;
145
+ }
146
+ table.small-button:hover td {
147
+ background: #2795b6 !important;
148
+ }
149
+ table.medium-button:hover td {
150
+ background: #2795b6 !important;
151
+ }
152
+ table.large-button:hover td {
153
+ background: #2795b6 !important;
154
+ }
155
+ table.button:hover td a {
156
+ color: #ffffff !important;
157
+ }
158
+ table.button:active td a {
159
+ color: #ffffff !important;
160
+ }
161
+ table.button td a:visited {
162
+ color: #ffffff !important;
163
+ }
164
+ table.tiny-button:hover td a {
165
+ color: #ffffff !important;
166
+ }
167
+ table.tiny-button:active td a {
168
+ color: #ffffff !important;
169
+ }
170
+ table.tiny-button td a:visited {
171
+ color: #ffffff !important;
172
+ }
173
+ table.small-button:hover td a {
174
+ color: #ffffff !important;
175
+ }
176
+ table.small-button:active td a {
177
+ color: #ffffff !important;
178
+ }
179
+ table.small-button td a:visited {
180
+ color: #ffffff !important;
181
+ }
182
+ table.medium-button:hover td a {
183
+ color: #ffffff !important;
184
+ }
185
+ table.medium-button:active td a {
186
+ color: #ffffff !important;
187
+ }
188
+ table.medium-button td a:visited {
189
+ color: #ffffff !important;
190
+ }
191
+ table.large-button:hover td a {
192
+ color: #ffffff !important;
193
+ }
194
+ table.large-button:active td a {
195
+ color: #ffffff !important;
196
+ }
197
+ table.large-button td a:visited {
198
+ color: #ffffff !important;
199
+ }
200
+ table.secondary:hover td {
201
+ background: #d0d0d0 !important; color: #555;
202
+ }
203
+ table.secondary:hover td a {
204
+ color: #555 !important;
205
+ }
206
+ table.secondary td a:visited {
207
+ color: #555 !important;
208
+ }
209
+ table.secondary:active td a {
210
+ color: #555 !important;
211
+ }
212
+ table.success:hover td {
213
+ background: #457a1a !important;
214
+ }
215
+ table.alert:hover td {
216
+ background: #970b0e !important;
217
+ }
218
+ body.outlook p {
219
+ display: inline !important;
220
+ }
221
+ body {
222
+ color: #f8842e;
223
+ }
224
+ table.tiny-button:hover td {
225
+ background: #f8842e !important;
226
+ }
227
+ @media only screen and (max-width: 600px) {
228
+ table[class=3D"body"] img {
229
+ width: auto !important; height: auto !important;
230
+ }
231
+ table[class=3D"body"] center {
232
+ min-width: 0 !important;
233
+ }
234
+ table[class=3D"body"] .container {
235
+ width: 95% !important;
236
+ }
237
+ table[class=3D"body"] .row {
238
+ width: 100% !important; display: block !important;
239
+ }
240
+ table[class=3D"body"] .wrapper {
241
+ display: block !important; padding-right: 0 !important;
242
+ }
243
+ table[class=3D"body"] .columns {
244
+ table-layout: fixed !important; float: none !important; width: 100% !im=
245
+ portant; padding-right: 0px !important; padding-left: 0px !important; displ=
246
+ ay: block !important;
247
+ }
248
+ table[class=3D"body"] .column {
249
+ table-layout: fixed !important; float: none !important; width: 100% !im=
250
+ portant; padding-right: 0px !important; padding-left: 0px !important; displ=
251
+ ay: block !important;
252
+ }
253
+ table[class=3D"body"] .wrapper.first .columns {
254
+ display: table !important;
255
+ }
256
+ table[class=3D"body"] .wrapper.first .column {
257
+ display: table !important;
258
+ }
259
+ table[class=3D"body"] table.columns td {
260
+ width: 100% !important;
261
+ }
262
+ table[class=3D"body"] table.column td {
263
+ width: 100% !important;
264
+ }
265
+ table[class=3D"body"] .columns td.one {
266
+ width: 8.333333% !important;
267
+ }
268
+ table[class=3D"body"] .column td.one {
269
+ width: 8.333333% !important;
270
+ }
271
+ table[class=3D"body"] .columns td.two {
272
+ width: 16.666666% !important;
273
+ }
274
+ table[class=3D"body"] .column td.two {
275
+ width: 16.666666% !important;
276
+ }
277
+ table[class=3D"body"] .columns td.three {
278
+ width: 25% !important;
279
+ }
280
+ table[class=3D"body"] .column td.three {
281
+ width: 25% !important;
282
+ }
283
+ table[class=3D"body"] .columns td.four {
284
+ width: 33.333333% !important;
285
+ }
286
+ table[class=3D"body"] .column td.four {
287
+ width: 33.333333% !important;
288
+ }
289
+ table[class=3D"body"] .columns td.five {
290
+ width: 41.666666% !important;
291
+ }
292
+ table[class=3D"body"] .column td.five {
293
+ width: 41.666666% !important;
294
+ }
295
+ table[class=3D"body"] .columns td.six {
296
+ width: 50% !important;
297
+ }
298
+ table[class=3D"body"] .column td.six {
299
+ width: 50% !important;
300
+ }
301
+ table[class=3D"body"] .columns td.seven {
302
+ width: 58.333333% !important;
303
+ }
304
+ table[class=3D"body"] .column td.seven {
305
+ width: 58.333333% !important;
306
+ }
307
+ table[class=3D"body"] .columns td.eight {
308
+ width: 66.666666% !important;
309
+ }
310
+ table[class=3D"body"] .column td.eight {
311
+ width: 66.666666% !important;
312
+ }
313
+ table[class=3D"body"] .columns td.nine {
314
+ width: 75% !important;
315
+ }
316
+ table[class=3D"body"] .column td.nine {
317
+ width: 75% !important;
318
+ }
319
+ table[class=3D"body"] .columns td.ten {
320
+ width: 83.333333% !important;
321
+ }
322
+ table[class=3D"body"] .column td.ten {
323
+ width: 83.333333% !important;
324
+ }
325
+ table[class=3D"body"] .columns td.eleven {
326
+ width: 91.666666% !important;
327
+ }
328
+ table[class=3D"body"] .column td.eleven {
329
+ width: 91.666666% !important;
330
+ }
331
+ table[class=3D"body"] .columns td.twelve {
332
+ width: 100% !important;
333
+ }
334
+ table[class=3D"body"] .column td.twelve {
335
+ width: 100% !important;
336
+ }
337
+ table[class=3D"body"] td.offset-by-one {
338
+ padding-left: 0 !important;
339
+ }
340
+ table[class=3D"body"] td.offset-by-two {
341
+ padding-left: 0 !important;
342
+ }
343
+ table[class=3D"body"] td.offset-by-three {
344
+ padding-left: 0 !important;
345
+ }
346
+ table[class=3D"body"] td.offset-by-four {
347
+ padding-left: 0 !important;
348
+ }
349
+ table[class=3D"body"] td.offset-by-five {
350
+ padding-left: 0 !important;
351
+ }
352
+ table[class=3D"body"] td.offset-by-six {
353
+ padding-left: 0 !important;
354
+ }
355
+ table[class=3D"body"] td.offset-by-seven {
356
+ padding-left: 0 !important;
357
+ }
358
+ table[class=3D"body"] td.offset-by-eight {
359
+ padding-left: 0 !important;
360
+ }
361
+ table[class=3D"body"] td.offset-by-nine {
362
+ padding-left: 0 !important;
363
+ }
364
+ table[class=3D"body"] td.offset-by-ten {
365
+ padding-left: 0 !important;
366
+ }
367
+ table[class=3D"body"] td.offset-by-eleven {
368
+ padding-left: 0 !important;
369
+ }
370
+ table[class=3D"body"] table.columns td.expander {
371
+ width: 1px !important;
372
+ }
373
+ table[class=3D"body"] .hide-for-small {
374
+ display: none !important;
375
+ }
376
+ table[class=3D"body"] .show-for-desktop {
377
+ display: none !important;
378
+ }
379
+ table[class=3D"body"] .show-for-small {
380
+ display: inherit !important;
381
+ }
382
+ table[class=3D"body"] .hide-for-desktop {
383
+ display: inherit !important;
384
+ }
385
+ }
386
+ </style>=20
387
+ <table class=3D"body" style=3D"border-collapse: collapse; border-spacing:=
388
+ 0; color: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, =
389
+ sans-serif; font-size: 14px; font-weight: normal; height: 100%; line-height=
390
+ : 19px; margin: 0; padding: 0; text-align: left; vertical-align: top; width=
391
+ : 100%">=20
392
+ <tbody>
393
+ <tr style=3D"padding: 0; text-align: left; vertical-align: top" align=
394
+ =3D"left">=20
395
+ <td align=3D"center" class=3D"center" valign=3D"top" style=3D"-moz-hyp=
396
+ hens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; co=
397
+ lor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-s=
398
+ erif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19p=
399
+ x; margin: 0; padding: 0; text-align: center !important; vertical-align: to=
400
+ p; word-break: break-word">=20
401
+ <center style=3D"min-width: 580px; width: 100%">=20
402
+ <table class=3D"row header" style=3D"background: #ffffff; border-col=
403
+ lapse: collapse; border-spacing: 0; padding: 0px; position: relative; text-=
404
+ align: left; vertical-align: top; width: 100%" bgcolor=3D"#ffffff">=20
405
+ <tbody>
406
+ <tr style=3D"padding: 0; text-align: left; vertical-align: top" al=
407
+ ign=3D"left">=20
408
+ <td align=3D"center" class=3D"center" style=3D"-moz-hyphens: auto=
409
+ ; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2222=
410
+ 22; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font=
411
+ -size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin:=
412
+ 0; padding: 0; text-align: center !important; vertical-align: top; word-br=
413
+ eak: break-word" valign=3D"top">=20
414
+ <center style=3D"min-width: 580px; width: 100%">=20
415
+ <table class=3D"container" style=3D"border-collapse: collapse; =
416
+ border-spacing: 0; margin: 0 auto; padding: 0; text-align: inherit; vertica=
417
+ l-align: top; width: 580px">=20
418
+ <tbody>
419
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
420
+ p" align=3D"left">=20
421
+ <td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
422
+ yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
423
+ mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
424
+ ; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
425
+ : 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
426
+ word-break: break-word" align=3D"left" valign=3D"top">=20
427
+ <table class=3D"twelve columns" style=3D"border-collapse: c=
428
+ ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
429
+ ertical-align: top; width: 580px">=20
430
+ <tbody>
431
+ <tr style=3D"padding: 0; text-align: left; vertical-align=
432
+ : top" align=3D"left">=20
433
+ <td align=3D"center" class=3D"twelve sub-columns center"=
434
+ style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: colla=
435
+ pse !important; color: #222222; font-family: 'Open Sans', Gill Sans, Arial,=
436
+ Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto=
437
+ ; line-height: 19px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text=
438
+ -align: center !important; vertical-align: top; width: 100%; word-break: br=
439
+ eak-word" valign=3D"top">=20
440
+ <center style=3D"min-width: 580px; width: 100%">=20
441
+ <img alt=3D"Aol." class=3D"center" src=3D"http://d1tmg=
442
+ hnu7krkze.cloudfront.net/aol/images/black-v2/aol-logo.png" style=3D"-ms-int=
443
+ erpolation-mode: bicubic; clear: both; display: block; float: none; margin:=
444
+ 0 auto; max-width: 100%; outline: none; text-align: center; text-decoratio=
445
+ n: none; width: auto" align=3D"none" />=20
446
+ </center> </td>=20
447
+ <td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
448
+ kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
449
+ nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
450
+ 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
451
+ dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
452
+ 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
453
+ </tr>=20
454
+ </tbody>
455
+ </table> </td>=20
456
+ </tr>=20
457
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
458
+ p" align=3D"left">=20
459
+ <td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
460
+ yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
461
+ mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
462
+ ; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
463
+ : 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
464
+ word-break: break-word" align=3D"left" valign=3D"top">=20
465
+ <table class=3D"twelve columns" style=3D"border-collapse: c=
466
+ ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
467
+ ertical-align: top; width: 580px">=20
468
+ <tbody>
469
+ <tr style=3D"padding: 0; text-align: left; vertical-align=
470
+ : top" align=3D"left">=20
471
+ <td align=3D"center" class=3D"twelve sub-columns center"=
472
+ style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: colla=
473
+ pse !important; color: #222222; font-family: 'Open Sans', Gill Sans, Arial,=
474
+ Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto=
475
+ ; line-height: 19px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text=
476
+ -align: center !important; vertical-align: top; width: 100%; word-break: br=
477
+ eak-word" valign=3D"top">=20
478
+ <center style=3D"min-width: 580px; width: 100%">=20
479
+ <img alt=3D"UH OH!" class=3D"center" src=3D"http://d1t=
480
+ mghnu7krkze.cloudfront.net/aol/images/black-v2/uh-oh.png" style=3D"-ms-inte=
481
+ rpolation-mode: bicubic; clear: both; display: block; float: none; margin: =
482
+ 0 auto; max-width: 100%; outline: none; text-align: center; text-decoration=
483
+ : none; width: auto" align=3D"none" />=20
484
+ </center> </td>=20
485
+ <td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
486
+ kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
487
+ nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
488
+ 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
489
+ dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
490
+ 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
491
+ </tr>=20
492
+ </tbody>
493
+ </table> </td>=20
494
+ </tr>=20
495
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
496
+ p" align=3D"left">=20
497
+ <td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
498
+ yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
499
+ mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
500
+ ; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
501
+ : 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
502
+ word-break: break-word" align=3D"left" valign=3D"top">=20
503
+ <table class=3D"twelve columns" style=3D"border-collapse: c=
504
+ ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
505
+ ertical-align: top; width: 580px">=20
506
+ <tbody>
507
+ <tr style=3D"padding: 0; text-align: left; vertical-align=
508
+ : top" align=3D"left">=20
509
+ <td class=3D"one sub-columns center" style=3D"-moz-hyphe=
510
+ ns: auto; -webkit-hyphens: auto; border-collapse: collapse !important; colo=
511
+ r: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-ser=
512
+ if; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px;=
513
+ margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !impo=
514
+ rtant; vertical-align: top; width: 8.333333%; word-break: break-word" align=
515
+ =3D"center !important" valign=3D"top"></td>=20
516
+ <td align=3D"center" class=3D"ten sub-columns center" st=
517
+ yle=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: collapse=
518
+ !important; color: #222222; font-family: 'Open Sans', Gill Sans, Arial, He=
519
+ lvetica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto; l=
520
+ ine-height: 19px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-al=
521
+ ign: center !important; vertical-align: top; width: 83.333333%; word-break:=
522
+ break-word" valign=3D"top"> <h3 class=3D"center" style=3D"color: #f8842e; =
523
+ font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-siz=
524
+ e: 18px; font-style: italic; font-weight: normal; line-height: 1.3; margin:=
525
+ 0; padding: 0; text-align: center; word-break: normal" align=3D"center">Em=
526
+ ail Returned</h3> <h2 class=3D"center" style=3D"color: #f8842e; font-family=
527
+ : 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 25px; fo=
528
+ nt-style: italic; font-weight: 600; line-height: 1.3; margin: 0; padding: 0=
529
+ ; text-align: center; word-break: normal" align=3D"center">Something went w=
530
+ rong.</h2> </td>=20
531
+ <td class=3D"one sub-columns center" style=3D"-moz-hyphe=
532
+ ns: auto; -webkit-hyphens: auto; border-collapse: collapse !important; colo=
533
+ r: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-ser=
534
+ if; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px;=
535
+ margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !impo=
536
+ rtant; vertical-align: top; width: 8.333333%; word-break: break-word" align=
537
+ =3D"center !important" valign=3D"top"></td>=20
538
+ <td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
539
+ kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
540
+ nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
541
+ 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
542
+ dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
543
+ 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
544
+ </tr>=20
545
+ </tbody>
546
+ </table> </td>=20
547
+ </tr>=20
548
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
549
+ p" align=3D"left">=20
550
+ <td class=3D"wrapper last" style=3D"-moz-hyphens: auto; -web=
551
+ kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
552
+ nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
553
+ 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
554
+ dding: 10px 0px 0px; position: relative; text-align: left; vertical-align: =
555
+ top; word-break: break-word" align=3D"left" valign=3D"top">=20
556
+ <center style=3D"min-width: 580px; width: 100%">=20
557
+ <table class=3D"twelve columns center" style=3D"border-col=
558
+ lapse: collapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align:=
559
+ center !important; vertical-align: top; width: 580px">=20
560
+ <tbody>
561
+ <tr style=3D"padding: 0; text-align: left; vertical-alig=
562
+ n: top" align=3D"left">=20
563
+ <td class=3D"two sub-columns center" style=3D"-moz-hyph=
564
+ ens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; col=
565
+ or: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-se=
566
+ rif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px=
567
+ ; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !imp=
568
+ ortant; vertical-align: top; width: 16.666666%; word-break: break-word" ali=
569
+ gn=3D"center !important" valign=3D"top"></td>=20
570
+ <td class=3D"eight sub-columns center" style=3D"-moz-hy=
571
+ phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
572
+ olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
573
+ serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
574
+ px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
575
+ mportant; vertical-align: top; width: 66.666666%; word-break: break-word" a=
576
+ lign=3D"center !important" valign=3D"top">=20
577
+ <table id=3D"message" style=3D"border-collapse: collap=
578
+ se; border-spacing: 0; margin: 0; padding: 0; position: relative; text-alig=
579
+ n: center; vertical-align: top; width: 100%">=20
580
+ <tbody>
581
+ <tr style=3D"padding: 0; text-align: left; vertical-=
582
+ align: top" align=3D"left">=20
583
+ <td class=3D"close center" style=3D"-moz-hyphens: a=
584
+ uto; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2=
585
+ 22222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; f=
586
+ ont-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; marg=
587
+ in: 0; padding: 0px 0px 0; text-align: center !important; vertical-align: t=
588
+ op; word-break: break-word" align=3D"center !important" valign=3D"top"> <p =
589
+ style=3D"color: #f8842e; font-family: 'Open Sans', Gill Sans, Arial, Helvet=
590
+ ica, sans-serif; font-size: 20px; font-weight: normal; line-height: 1.3; ma=
591
+ rgin: 0 0 10px; padding: 0; text-align: center" align=3D"center">We were un=
592
+ able to deliver your message to the following address</p> </td>=20
593
+ </tr>=20
594
+ <tr style=3D"padding: 0; text-align: left; vertical-=
595
+ align: top" align=3D"left">=20
596
+ <td class=3D"close center" style=3D"-moz-hyphens: a=
597
+ uto; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2=
598
+ 22222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; f=
599
+ ont-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; marg=
600
+ in: 0; padding: 0px 0px 0; text-align: center !important; vertical-align: t=
601
+ op; word-break: break-word" align=3D"center !important" valign=3D"top">=20
602
+ <center style=3D"min-width: 580px; width: 100%">=
603
+ =20
604
+ <a class=3D"center" href=3D"#" id=3D"message-emai=
605
+ l" style=3D"color: #2ba6cb; display: block; font-size: 20px; font-style: no=
606
+ rmal; font-weight: bold; line-height: 47px; padding: 10px; text-align: cent=
607
+ er; text-decoration: none; width: 100%">kijitora@example.jp</a>=20
608
+ </center> </td>=20
609
+ </tr>=20
610
+ <tr style=3D"padding: 0; text-align: left; vertical-=
611
+ align: top" align=3D"left">=20
612
+ <td class=3D"close center" style=3D"-moz-hyphens: a=
613
+ uto; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2=
614
+ 22222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; f=
615
+ ont-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; marg=
616
+ in: 0; padding: 0px 0px 0; text-align: center !important; vertical-align: t=
617
+ op; word-break: break-word" align=3D"center !important" valign=3D"top"> <p =
618
+ style=3D"color: #f8842e; font-family: 'Open Sans', Gill Sans, Arial, Helvet=
619
+ ica, sans-serif; font-size: 20px; font-weight: normal; line-height: 1.3; ma=
620
+ rgin: 0 0 10px; padding: 0; text-align: center" align=3D"center">because: E=
621
+ mail routing issue due to network</p> </td>=20
622
+ </tr>=20
623
+ </tbody>
624
+ </table> </td>=20
625
+ <td class=3D"two sub-columns center" style=3D"-moz-hyph=
626
+ ens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; col=
627
+ or: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-se=
628
+ rif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19px=
629
+ ; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !imp=
630
+ ortant; vertical-align: top; width: 16.666666%; word-break: break-word" ali=
631
+ gn=3D"center !important" valign=3D"top"></td>=20
632
+ <td class=3D"expander" style=3D"-moz-hyphens: auto; -we=
633
+ bkit-hyphens: auto; border-collapse: collapse !important; color: #222222; f=
634
+ ont-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size=
635
+ : 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; p=
636
+ adding: 0; text-align: left; vertical-align: top; visibility: hidden; width=
637
+ : 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
638
+ </tr>=20
639
+ </tbody>
640
+ </table>=20
641
+ </center> </td>=20
642
+ </tr>=20
643
+ </tbody>
644
+ </table>=20
645
+ </center> </td>=20
646
+ </tr>=20
647
+ </tbody>
648
+ </table>=20
649
+ <table class=3D"row" style=3D"border-collapse: collapse; border-spac=
650
+ ing: 0; padding: 0px; position: relative; text-align: left; vertical-align:=
651
+ top; width: 100%">=20
652
+ <tbody>
653
+ <tr style=3D"padding: 0; text-align: left; vertical-align: top" al=
654
+ ign=3D"left">=20
655
+ <td align=3D"center" class=3D"center" style=3D"-moz-hyphens: auto=
656
+ ; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2222=
657
+ 22; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font=
658
+ -size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin:=
659
+ 0; padding: 0; text-align: center !important; vertical-align: top; word-br=
660
+ eak: break-word" valign=3D"top">=20
661
+ <center style=3D"min-width: 580px; width: 100%">=20
662
+ <table class=3D"container" style=3D"border-collapse: collapse; =
663
+ border-spacing: 0; margin: 0 auto; padding: 0; text-align: inherit; vertica=
664
+ l-align: top; width: 580px">=20
665
+ <tbody>
666
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
667
+ p" align=3D"left">=20
668
+ <td class=3D"wrapper center" style=3D"-moz-hyphens: auto; -w=
669
+ ebkit-hyphens: auto; border-collapse: collapse !important; color: #222222; =
670
+ font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-siz=
671
+ e: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; =
672
+ padding: 10px 0px 0px; position: relative; text-align: center !important; v=
673
+ ertical-align: top; word-break: break-word" align=3D"center !important" val=
674
+ ign=3D"top">=20
675
+ <center style=3D"min-width: 580px; width: 100%">=20
676
+ <table class=3D"seven center" style=3D"border-collapse: co=
677
+ llapse; border-spacing: 0; padding: 0; text-align: center !important; verti=
678
+ cal-align: top; width: 330px">=20
679
+ <tbody>
680
+ <tr style=3D"padding: 0; text-align: left; vertical-alig=
681
+ n: top" align=3D"left">=20
682
+ <td align=3D"center" class=3D"explainer center" style=
683
+ =3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: collapse !i=
684
+ mportant; color: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helve=
685
+ tica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto; line=
686
+ -height: 19px; margin: 0; padding: 0; text-align: center !important; vertic=
687
+ al-align: top; word-break: break-word" valign=3D"top">=20
688
+ <center style=3D"min-width: 330px; width: 100%">=20
689
+ <p style=3D"color: #f8842e; font-family: 'Open Sans',=
690
+ Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: nor=
691
+ mal; line-height: 19px; margin: 0 0 10px; padding: 3px 0 20px; text-align: =
692
+ center" align=3D"center">Your mail provider is working on the network relat=
693
+ ed issues.</p>=20
694
+ <p style=3D"color: #f8842e; font-family: 'Open Sans',=
695
+ Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: nor=
696
+ mal; line-height: 19px; margin: 0 0 10px; padding: 3px 0 20px; text-align: =
697
+ center" align=3D"center">We also recommend double checking your recipient's=
698
+ email address for misspellings. If you continue to see this error, conside=
699
+ r contacting your recipient through an alternative email address or other m=
700
+ eans.</p>=20
701
+ <p style=3D"color: #f8842e; font-family: 'Open Sans',=
702
+ Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: nor=
703
+ mal; line-height: 19px; margin: 0 0 10px; padding: 3px 0 20px; text-align: =
704
+ center" align=3D"center">Send/Receive Log is attached.&nbsp;<a href=3D"http=
705
+ s://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuE=
706
+ y0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa=
707
+ 94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms03qTX3t3DSrVDtq9e9DP2x_UYNYS=
708
+ wttXUisSe3WvXE58lJR2Y4g9FVnWhXMjqx09wSJLg6TM0l59sBNIehQvj7IHFkFWhczAATqjpvB=
709
+ p01DiCx1MarDFeKRfhgdpZg4PNh0m_eIjFKcxBGL3a7F3rCnFVvTLvnaX.9AgT.UEo81mKVOvnA=
710
+ sbAAejbbeQ3AaOH9xrGZGL3oDPjne4u_bbGjR.aYd_GyaJuy1EBuhSZNloClaygNo759Wko9FyV=
711
+ PvsrFFYTDwjhGLjszW4D2Zuzl007jgNJs1jtbL6bXj7e5p0.6o0MT6w2Y-" style=3D"color:=
712
+ #2ba6cb; text-decoration: none">More information about type 5.4.4 delivery=
713
+ errors are available if you want or need it.</a></p>=20
714
+ </center> </td>=20
715
+ <td class=3D"expander" style=3D"-moz-hyphens: auto; -we=
716
+ bkit-hyphens: auto; border-collapse: collapse !important; color: #222222; f=
717
+ ont-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size=
718
+ : 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; p=
719
+ adding: 0; text-align: left; vertical-align: top; visibility: hidden; width=
720
+ : 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
721
+ </tr>=20
722
+ </tbody>
723
+ </table>=20
724
+ </center> </td>=20
725
+ </tr>=20
726
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
727
+ p" align=3D"left">=20
728
+ <td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
729
+ yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
730
+ mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
731
+ ; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
732
+ : 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
733
+ word-break: break-word" align=3D"left" valign=3D"top">=20
734
+ <table class=3D"twelve columns" style=3D"border-collapse: c=
735
+ ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
736
+ ertical-align: top; width: 580px">=20
737
+ <tbody>
738
+ <tr style=3D"padding: 0; text-align: left; vertical-align=
739
+ : top" align=3D"left">=20
740
+ <td align=3D"center" class=3D"twelve sub-columns center"=
741
+ style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collapse: colla=
742
+ pse !important; color: #222222; font-family: 'Open Sans', Gill Sans, Arial,=
743
+ Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphens: auto=
744
+ ; line-height: 19px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text=
745
+ -align: center !important; vertical-align: top; width: 100%; word-break: br=
746
+ eak-word" valign=3D"top">=20
747
+ <center style=3D"min-width: 580px; width: 100%">=20
748
+ <small style=3D"color: #f8842e; font-size: 10px">ADVER=
749
+ TISEMENT</small>=20
750
+ <br />=20
751
+ <p style=3D"color: #f8842e; font-family: 'Open Sans', =
752
+ Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: norm=
753
+ al; line-height: 19px; margin: 0 0 10px; padding: 0; text-align: center" al=
754
+ ign=3D"center"></p>
755
+ <table border=3D"0" cellpadding=3D"0" cellspacing=3D"0=
756
+ ">=20
757
+ <tbody>=20
758
+ <tr>=20
759
+ <td colspan=3D"2"> <a style=3D"display: block; widt=
760
+ h: 300px; height: 250px;" href=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5A=
761
+ PgyWV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJom=
762
+ LMC8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtK=
763
+ NvHok7Gpms5YWBOZ8Y_2nGI0DwOzDUvEuAYGbRv0DV1l2SUIfksBJJwZpqdvdkZKAzT9t6TWYRo=
764
+ e9Pl6FLLYEN.2Dyi1ZSzcYEeZka1kC_9d9YFoFX9K5GG9qD7X1bBbmtvsXryVvbAbbGpkmZNvFy=
765
+ Mj3mehLna_0Jcaq6SHw8Xv1nIvmbUsGF3918zQueXsejbbeQ3AaOH9xrGZGL3oDPjne4u_bbGjR=
766
+ .aYd_GyaJuy1EBuhSZNlEshqXJjhtULPfFPKs.DXGqEVYZ24p6WFvYEo3RkC.lgLw_sVLIgBsZM=
767
+ P0YSbPe.Mv3YckLI4Mt2hbgF7nZu0CC5B29w3qLPw" rel=3D"nofollow" data-biocat=3D"=
768
+ ad"><img src=3D"http://nl.newsletter.aol.com/imp?s=3D89931&t=3Dnewsletter&s=
769
+ z=3D300x250&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a15bc5af&p=3D141=
770
+ 6608137946" border=3D"0" width=3D"300" height=3D"250" /></a> </td>=20
771
+ </tr>=20
772
+ <tr style=3D"display:block; height:1px; line-height:=
773
+ 1px;">=20
774
+ <td> <img src=3D"http://nl.newsletter.aol.com/imp?s=
775
+ =3D89932&t=3Dnewsletter&sz=3D1x1&li=3DAOLBounceMail&m=3D6a2629809201a511936=
776
+ 88c68a15bc5af&p=3D1416608137946" height=3D"1" width=3D"10" /> </td>=20
777
+ <td> <img src=3D"http://nl.newsletter.aol.com/imp?s=
778
+ =3D89933&t=3Dnewsletter&sz=3D1x1&li=3DAOLBounceMail&m=3D6a2629809201a511936=
779
+ 88c68a15bc5af&p=3D1416608137946" height=3D"1" width=3D"10" /> </td>=20
780
+ </tr>=20
781
+ <tr>=20
782
+ <td align=3D"left"> <a href=3D"https://a.b-io.me/c/=
783
+ Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt=
784
+ 1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HeP=
785
+ aRnm9ajotVQlwQEj_xwtKNvHok7Gpms5YWBOZ8Y_2nGI0DwOzDUvEuAYGbRv0DV1l2SUIfksBJJ=
786
+ wZpqdvdkZKmNnR_ckPZyoe9Pl6FLLYEVext5ay3mmPB3dWuRBThBhFycKET4pYnFqsVOv.Gr9Ce=
787
+ 5vGjJDypnkHT9yxARK_0sM7d7bgIYsNg2pVpjzBQjH2VA4nhNPY.2tr0MAcCr7K2K1P3VYjXnW1=
788
+ NSpm22rUOHdzKACox1kmAvItNF1UGxxmCpbP6BG7..ivjNWVcQkS5VFQLY4VHvl_D6gTIhjZWvo=
789
+ ujm2wAEyoeS7wsvpk.qRw9WgUveIQCdoFfbkoqGeps4qrLpd2dkofo8XPiNFng" rel=3D"nofo=
790
+ llow" data-biocat=3D"ad"><img src=3D"http://nl.newsletter.aol.com/imp?s=3D8=
791
+ 9919&t=3Dnewsletter&sz=3D116x15&li=3DAOLBounceMail&m=3D6a2629809201a5119368=
792
+ 8c68a15bc5af&p=3D1416608137946" border=3D"0" /></a> </td>=20
793
+ <td align=3D"right"> <a href=3D"https://a.b-io.me/c=
794
+ /Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ib=
795
+ t1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa94WrVlXwnqCU6He=
796
+ PaRnm9ajotVQlwQEj_xwtKNvHok7Gpms5YWBOZ8Y_2nGI0DwOzDUvEuAYGbRv0DV1l2SUIfksBJ=
797
+ JwZpqdvdkZK02Y2QY_eS44e9Pl6FLLYE41ndLbr3rFVxnLv4jqxvyjT3kJfjG5MyOSmLMG8p6w9=
798
+ hbXbsqoxkfQ70y8icHYHGhDLrQdFz9448FKDHLJP7cb2w3CC0BzeXL1qnG6JoGdQKNcxgbpC49P=
799
+ SFcFb_M_Tl0ssUB78auaImpUirSrFc9BBHRzcRPb1iIOb1uwg72toNfKYuD6Zg_9__FJ0MQ3b7N=
800
+ zDkEwjnWeCp4g1bjVcesjJ2LnUlVt9AlRKVbfpq9TgDLBFdNVRU7LTOGBpQIUGH" rel=3D"nof=
801
+ ollow" data-biocat=3D"ad"><img src=3D"http://nl.newsletter.aol.com/imp?s=3D=
802
+ 89920&t=3Dnewsletter&sz=3D69x15&li=3DAOLBounceMail&m=3D6a2629809201a5119368=
803
+ 8c68a15bc5af&p=3D1416608137946" border=3D"0" /></a> </td>=20
804
+ </tr>=20
805
+ </tbody>=20
806
+ </table>
807
+ <p></p>=20
808
+ </center> </td>=20
809
+ <td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
810
+ kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
811
+ nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
812
+ 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
813
+ dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
814
+ 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
815
+ </tr>=20
816
+ </tbody>
817
+ </table> </td>=20
818
+ </tr>=20
819
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
820
+ p" align=3D"left">=20
821
+ <td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
822
+ yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
823
+ mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
824
+ ; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
825
+ : 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
826
+ word-break: break-word" align=3D"left" valign=3D"top">=20
827
+ <center style=3D"min-width: 580px; width: 100%">=20
828
+ <table class=3D"twelve columns center" style=3D"border-col=
829
+ lapse: collapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align:=
830
+ center !important; vertical-align: top; width: 580px">=20
831
+ <tbody>
832
+ <tr style=3D"padding: 0; text-align: left; vertical-alig=
833
+ n: top" align=3D"left">=20
834
+ <td class=3D"three sub-columns center" style=3D"-moz-hy=
835
+ phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
836
+ olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
837
+ serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
838
+ px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
839
+ mportant; vertical-align: top; width: 25%; word-break: break-word" align=3D=
840
+ "center !important" valign=3D"top"></td>=20
841
+ <td class=3D"three sub-columns center" style=3D"-moz-hy=
842
+ phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
843
+ olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
844
+ serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
845
+ px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
846
+ mportant; vertical-align: top; width: 25%; word-break: break-word" align=3D=
847
+ "center !important" valign=3D"top">=20
848
+ <table class=3D"tiny-button" style=3D"border-collapse:=
849
+ collapse; border-spacing: 0; border: 0; margin: auto; overflow: hidden; pa=
850
+ dding: 0; text-align: left; vertical-align: top; width: 98%">=20
851
+ <tbody>
852
+ <tr style=3D"padding: 0; text-align: left; vertical-=
853
+ align: top" align=3D"left">=20
854
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: a=
855
+ uto; background: #000000; border-collapse: collapse !important; border: 0 s=
856
+ olid #2284a1; color: #ffffff; display: block; font-family: 'Open Sans', Gil=
857
+ l Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal;=
858
+ hyphens: auto; line-height: 19px; margin: 0; padding: 5px 0 4px; text-alig=
859
+ n: center; vertical-align: top; width: auto !important; word-break: break-w=
860
+ ord" align=3D"center" bgcolor=3D"#000000" valign=3D"top"> <a data-biocat=3D=
861
+ "privacy" href=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshG=
862
+ cDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5T=
863
+ dFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms5YWBOZ=
864
+ 8Y_2nmoC2tVNcOmHhV4VatLS.RHfLRf2kGXMnU2qbDDwR_8jTyjx4UDfxbvOp1wsTz2KdcDgI42=
865
+ pt6sHbQ2sq2b17B8NdbYnPBMKfmrEPzBMWxU3fvhSdDEN2_zcw5BMI51ngqeINW41XHrIydi51J=
866
+ VbfQJUSlW36avU4AywRXTVUVOy0zhgaUCFBhw--" style=3D"color: #ffffff; display: =
867
+ block; font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-wei=
868
+ ght: normal; height: 100%; text-decoration: none; width: 100%">Privacy Poli=
869
+ cy</a> </td>=20
870
+ </tr>=20
871
+ </tbody>
872
+ </table> </td>=20
873
+ <td class=3D"three sub-columns center" style=3D"-moz-hy=
874
+ phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
875
+ olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
876
+ serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
877
+ px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
878
+ mportant; vertical-align: top; width: 25%; word-break: break-word" align=3D=
879
+ "center !important" valign=3D"top">=20
880
+ <table class=3D"tiny-button" style=3D"border-collapse:=
881
+ collapse; border-spacing: 0; border: 0; margin: auto; overflow: hidden; pa=
882
+ dding: 0; text-align: left; vertical-align: top; width: 98%">=20
883
+ <tbody>
884
+ <tr style=3D"padding: 0; text-align: left; vertical-=
885
+ align: top" align=3D"left">=20
886
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: a=
887
+ uto; background: #000000; border-collapse: collapse !important; border: 0 s=
888
+ olid #2284a1; color: #ffffff; display: block; font-family: 'Open Sans', Gil=
889
+ l Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal;=
890
+ hyphens: auto; line-height: 19px; margin: 0; padding: 5px 0 4px; text-alig=
891
+ n: center; vertical-align: top; width: auto !important; word-break: break-w=
892
+ ord" align=3D"center" bgcolor=3D"#000000" valign=3D"top"> <a data-biocat=3D=
893
+ "support" href=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshG=
894
+ cDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5T=
895
+ dFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms5YWBOZ=
896
+ 8Y_2neRvYOP8lshx3oiiIkJu.nC9k7HaYcYjYM.0a4tYWGFwHa9Z_YSDUWu8oktfrulLSUUO.QA=
897
+ KftJBRG2K36YcP_cr5RllWQlPfnyiJbv.X7UBlLDCkkDZp.IC3Dsu1nWmdQppKoAALG6v7h_XGx=
898
+ zfoeXImCpEWMQeXtxk7DpM_ulWMSMEir0b5rwVIY13ZKmCJ75a8H8_bm3o-" style=3D"color=
899
+ : #ffffff; display: block; font-family: Helvetica, Arial, sans-serif; font-=
900
+ size: 12px; font-weight: normal; height: 100%; text-decoration: none; width=
901
+ : 100%">Customer Support</a> </td>=20
902
+ </tr>=20
903
+ </tbody>
904
+ </table> </td>=20
905
+ <td class=3D"three sub-columns center" style=3D"-moz-hy=
906
+ phens: auto; -webkit-hyphens: auto; border-collapse: collapse !important; c=
907
+ olor: #222222; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-=
908
+ serif; font-size: 14px; font-weight: normal; hyphens: auto; line-height: 19=
909
+ px; margin: 0; min-width: 0px; padding: 0px 0px 10px; text-align: center !i=
910
+ mportant; vertical-align: top; width: 25%; word-break: break-word" align=3D=
911
+ "center !important" valign=3D"top"></td>=20
912
+ <td class=3D"expander" style=3D"-moz-hyphens: auto; -we=
913
+ bkit-hyphens: auto; border-collapse: collapse !important; color: #222222; f=
914
+ ont-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size=
915
+ : 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; p=
916
+ adding: 0; text-align: left; vertical-align: top; visibility: hidden; width=
917
+ : 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
918
+ </tr>=20
919
+ </tbody>
920
+ </table>=20
921
+ </center> </td>=20
922
+ </tr>=20
923
+ </tbody>
924
+ </table>=20
925
+ </center> </td>=20
926
+ </tr>=20
927
+ </tbody>
928
+ </table>=20
929
+ <table class=3D"row" style=3D"border-collapse: collapse; border-spac=
930
+ ing: 0; padding: 0px; position: relative; text-align: left; vertical-align:=
931
+ top; width: 100%">=20
932
+ <tbody>
933
+ <tr style=3D"padding: 0; text-align: left; vertical-align: top" al=
934
+ ign=3D"left">=20
935
+ <td align=3D"center" class=3D"center" style=3D"-moz-hyphens: auto=
936
+ ; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2222=
937
+ 22; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font=
938
+ -size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin:=
939
+ 0; padding: 0; text-align: center !important; vertical-align: top; word-br=
940
+ eak: break-word" valign=3D"top">=20
941
+ <center style=3D"min-width: 580px; width: 100%">=20
942
+ <table class=3D"container" style=3D"border-collapse: collapse; =
943
+ border-spacing: 0; margin: 0 auto; padding: 0; text-align: inherit; vertica=
944
+ l-align: top; width: 580px">=20
945
+ <tbody>
946
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
947
+ p" align=3D"left">=20
948
+ <td class=3D"wrapper" style=3D"-moz-hyphens: auto; -webkit-h=
949
+ yphens: auto; border-collapse: collapse !important; color: #222222; font-fa=
950
+ mily: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px=
951
+ ; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padding=
952
+ : 10px 0px 0px; position: relative; text-align: left; vertical-align: top; =
953
+ word-break: break-word" align=3D"left" valign=3D"top">=20
954
+ <table class=3D"twelve columns" style=3D"border-collapse: c=
955
+ ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
956
+ ertical-align: top; width: 580px">=20
957
+ <tbody>
958
+ <tr style=3D"padding: 0; text-align: left; vertical-align=
959
+ : top" align=3D"left">=20
960
+ <td class=3D"text-pad-left" style=3D"-moz-hyphens: auto;=
961
+ -webkit-hyphens: auto; border-collapse: collapse !important; color: #22222=
962
+ 2; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-=
963
+ size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: =
964
+ 0; padding: 0px 0px 10px 10px; text-align: left; vertical-align: top; word-=
965
+ break: break-word" align=3D"left" valign=3D"top"> <p style=3D"color: #f8842=
966
+ e; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-=
967
+ size: 14px; font-weight: normal; line-height: 19px; margin: 0 0 10px; paddi=
968
+ ng: 0; text-align: center" align=3D"center">Rate this email:&nbsp;&nbsp;<a =
969
+ data-biocat=3D"rating" href=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgy=
970
+ WV3loW8sBJshGcDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC=
971
+ 8caf.VuDWuc5TdFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvH=
972
+ ok7Gpms03qTX3t3DSrD.fY8OU5r5FaxVpaTQ7l7rJwSQh5z_fm9QvTv8gUwwZKQ4Fbbw9xSJ9DW=
973
+ 9SkQt1n2Q.HN0QnTCsC5ANvSpQIODzcGa11OWAk3H_CH3JfPJGQYrzP4ZRahPBnaKZtnGEWLJMP=
974
+ 4ofQaOSWdsREpeuhyk1AGGFYCtx.riM4N3hYRsXWLv9AFWPezzZUFcI5yrbev1fd1PDsBfHF36k=
975
+ XVHdzJFuwt4qYWtuvx1mNIOOoBtXAYpf6OPi2Kr8Kd94C06XNX4PqBMiGNla_i6ObbAATKh5LvC=
976
+ y_mT_pHD1aBS94hAJ2gV9uSioZ6mziqsul3Z2Sh_jxc_I0WeA-" style=3D"color: #2ba6cb=
977
+ ; text-decoration: none">Helpful</a>&nbsp;&nbsp;<a data-biocat=3D"rating" h=
978
+ ref=3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlk=
979
+ IsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWRO=
980
+ nrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms03qTX3t3DSrD.fY8O=
981
+ U5r5FaxVpaTQ7l7rJwSQh5z_fm9QvTv8gUwwZKQ4Fbbw9xSJ9DW9SkQt1n2Q.HN0QnTCsC5ANvS=
982
+ pQIODzcGa11OWAk3H_CH3JfPJGQYrzP4ZRahPBnaKZtnGEWLJMP4ofQaOSWdsREpeuhyk1AGGFY=
983
+ Ctx.0yyle6YuaOGPebMs9yzuNXHGVDi0bcygCjXMYG6QuPT0hXBW.jPk5dLLFAe.GrmiJqVIq0q=
984
+ xXPQQR0c3ET29YiDm9bsIO9ran.BZXWiwAfER6CSbSjA8xT1eZJR67LuiLSH.BPgOLU9B_Tk.hR=
985
+ l04d0B_XaDQIPx0gVxtU23lZZDk.8GBTrnAg--" style=3D"color: #2ba6cb; text-decor=
986
+ ation: none">Somewhat helpful</a>&nbsp;&nbsp;<a data-biocat=3D"rating" href=
987
+ =3D"https://a.b-io.me/c/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshGcDs43nQaWlkIsf=
988
+ qBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5TdFb8g4.iWROnrI=
989
+ TERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKNvHok7Gpms03qTX3t3DSrD.fY8OU5r=
990
+ 5FaxVpaTQ7l7rJwSQh5z_fm9QvTv8gUwwZKQ4Fbbw9xSJ9DW9SkQt1n2Q.HN0QnTCsC5ANvSpQI=
991
+ ODzcGa11OWAk3H_CH3JfPJGQYrzP4ZRahPBnaKZtnGEWLJMP4ofQaOSWdsREpeuhyk1AGGFYCtx=
992
+ .f1c.WK6VlrKR3JspOZZpeDDWIM2ZwsZ7U2qbDDwR_8jTyjx4UDfxbvOp1wsTz2KdcDgI42pt6s=
993
+ HbQ2sq2b17ByJHVp.dzyqgjROBbE9G0kpWko9FyVPvsrFFYTDwjhGLjszW4D2Zuzl007jgNJs1j=
994
+ tbL6bXj7e5p0.6o0MT6w2Y-" style=3D"color: #2ba6cb; text-decoration: none">No=
995
+ t helpful</a></p> </td>=20
996
+ </tr>=20
997
+ </tbody>
998
+ </table> </td>=20
999
+ </tr>=20
1000
+ </tbody>
1001
+ </table>=20
1002
+ </center> </td>=20
1003
+ </tr>=20
1004
+ </tbody>
1005
+ </table>=20
1006
+ <table class=3D"row" style=3D"border-collapse: collapse; border-spac=
1007
+ ing: 0; padding: 0px; position: relative; text-align: left; vertical-align:=
1008
+ top; width: 100%">=20
1009
+ <tbody>
1010
+ <tr style=3D"padding: 0; text-align: left; vertical-align: top" al=
1011
+ ign=3D"left">=20
1012
+ <td align=3D"center" class=3D"center" style=3D"-moz-hyphens: auto=
1013
+ ; -webkit-hyphens: auto; border-collapse: collapse !important; color: #2222=
1014
+ 22; font-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font=
1015
+ -size: 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin:=
1016
+ 0; padding: 0; text-align: center !important; vertical-align: top; word-br=
1017
+ eak: break-word" valign=3D"top">=20
1018
+ <center style=3D"min-width: 580px; width: 100%">=20
1019
+ <table class=3D"container" style=3D"border-collapse: collapse; =
1020
+ border-spacing: 0; margin: 0 auto; padding: 0; text-align: inherit; vertica=
1021
+ l-align: top; width: 580px">=20
1022
+ <tbody>
1023
+ <tr style=3D"padding: 0; text-align: left; vertical-align: to=
1024
+ p" align=3D"left">=20
1025
+ <td class=3D"wrapper last" style=3D"-moz-hyphens: auto; -web=
1026
+ kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
1027
+ nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
1028
+ 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
1029
+ dding: 10px 0px 0px; position: relative; text-align: left; vertical-align: =
1030
+ top; word-break: break-word" align=3D"left" valign=3D"top">=20
1031
+ <center style=3D"min-width: 580px; width: 100%"></center>=
1032
+ =20
1033
+ <table class=3D"twelve columns" style=3D"border-collapse: c=
1034
+ ollapse; border-spacing: 0; margin: 0 auto; padding: 0; text-align: left; v=
1035
+ ertical-align: top; width: 580px">=20
1036
+ <tbody>
1037
+ <tr style=3D"padding: 0; text-align: left; vertical-align=
1038
+ : top" align=3D"left">=20
1039
+ <td align=3D"center" style=3D"-moz-hyphens: auto; -webki=
1040
+ t-hyphens: auto; border-collapse: collapse !important; color: #222222; font=
1041
+ -family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size: 1=
1042
+ 4px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; padd=
1043
+ ing: 0px 0px 10px; text-align: left; vertical-align: top; word-break: break=
1044
+ -word" valign=3D"top">=20
1045
+ <center style=3D"min-width: 580px; width: 100%">=20
1046
+ <p style=3D"color: #f8842e; font-family: 'Open Sans', =
1047
+ Gill Sans, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: norm=
1048
+ al; line-height: 19px; margin: 0 0 10px; padding: 0; text-align: center" al=
1049
+ ign=3D"center">&copy; 2014 AOL Inc. - All Rights Reserved</p>=20
1050
+ </center> </td>=20
1051
+ <td class=3D"expander" style=3D"-moz-hyphens: auto; -web=
1052
+ kit-hyphens: auto; border-collapse: collapse !important; color: #222222; fo=
1053
+ nt-family: 'Open Sans', Gill Sans, Arial, Helvetica, sans-serif; font-size:=
1054
+ 14px; font-weight: normal; hyphens: auto; line-height: 19px; margin: 0; pa=
1055
+ dding: 0; text-align: left; vertical-align: top; visibility: hidden; width:=
1056
+ 0px; word-break: break-word" align=3D"left" valign=3D"top"></td>=20
1057
+ </tr>=20
1058
+ </tbody>
1059
+ </table> </td>=20
1060
+ </tr>=20
1061
+ </tbody>
1062
+ </table>=20
1063
+ </center> </td>=20
1064
+ </tr>=20
1065
+ </tbody>
1066
+ </table>=20
1067
+ </center> </td>=20
1068
+ </tr>=20
1069
+ </tbody>
1070
+ </table>=20
1071
+ <table border=3D"0" cellpadding=3D"0" cellspacing=3D"0" height=3D"6" widt=
1072
+ h=3D"24" style=3D"border-collapse: collapse; border-spacing: 0; padding: 0;=
1073
+ text-align: left; vertical-align: top">=20
1074
+ <tbody>=20
1075
+ <tr style=3D"padding: 0; text-align: left; vertical-align: top" align=
1076
+ =3D"left">=20
1077
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1078
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1079
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1080
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1081
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1082
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
1083
+ 4&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1084
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1085
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1086
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1087
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1088
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1089
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1090
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1091
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1092
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
1093
+ 5&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1094
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1095
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1096
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1097
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1098
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1099
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1100
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1101
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1102
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
1103
+ 6&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1104
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1105
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1106
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1107
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1108
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1109
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1110
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1111
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1112
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
1113
+ 7&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1114
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1115
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1116
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1117
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1118
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1119
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1120
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1121
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1122
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
1123
+ 8&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1124
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1125
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1126
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1127
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1128
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1129
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1130
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1131
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1132
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8993=
1133
+ 9&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1134
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1135
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1136
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1137
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1138
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1139
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1140
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1141
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1142
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
1143
+ 0&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1144
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1145
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1146
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1147
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1148
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1149
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1150
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1151
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1152
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
1153
+ 1&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1154
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1155
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1156
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1157
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1158
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1159
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1160
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1161
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1162
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
1163
+ 2&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1164
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1165
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1166
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1167
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1168
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1169
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1170
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1171
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1172
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
1173
+ 3&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1174
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1175
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1176
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1177
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1178
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1179
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1180
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1181
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1182
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
1183
+ 4&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1184
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1185
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1186
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1187
+ <td style=3D"-moz-hyphens: auto; -webkit-hyphens: auto; border-collaps=
1188
+ e: collapse !important; color: #222222; font-family: 'Open Sans', Gill Sans=
1189
+ , Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; hyphe=
1190
+ ns: auto; line-height: 19px; margin: 0; padding: 0; text-align: left; verti=
1191
+ cal-align: top; word-break: break-word" align=3D"left" valign=3D"top"> <img=
1192
+ border=3D"0" height=3D"6" src=3D"http://nl.newsletter.aol.com/imp?s=3D8994=
1193
+ 5&t=3Dnewsletter&sz=3D2x1&li=3DAOLBounceMail&m=3D6a2629809201a51193688c68a1=
1194
+ 5bc5af&p=3D1416608137946" width=3D"2" style=3D"-ms-interpolation-mode: bicu=
1195
+ bic; clear: both; display: block; float: left; max-width: 100%; outline: no=
1196
+ ne; text-decoration: none; width: auto" align=3D"left" /> </td>=20
1197
+ </tr>=20
1198
+ </tbody>=20
1199
+ </table> =20
1200
+ <div><img src=3D'https://a.b-io.me/o/Y1lM9w9S1KenVjis8KQ5APgyWV3loW8sBJshG=
1201
+ cDs43nQaWlkIsfqBOHxuuEy0dlLaL58u2f.ibt1zBpGZKU0XtH9ph34bJomLMC8caf.VuDWuc5T=
1202
+ dFb8g4.iWROnrITERraJJa94WrVlXwnqCU6HePaRnm9ajotVQlwQEj_xwtKtMgvq7yct5jZUFcI=
1203
+ 5yrbev1fd1PDsBfHF36kXVHdzJFuwt4qYWtuvx1mNIOOoBtWhFWGduKelhb2BKN0ZAv5YC8PrFS=
1204
+ yIAbGTD9GEmz3vzL92HJCyODLdoW4Be52btAguQdvcN6iz8A--' width=3D'1' height=3D'1=
1205
+ ' border=3D'0' align=3D'right'/></div>
1206
+ </body>
1207
+ </html>
1208
+
1209
+
1210
+ ------=_Part_794689_296750481.1416608137968
1211
+ Content-Type: message/delivery-status
1212
+ Content-Transfer-Encoding: 7bit
1213
+
1214
+ Reporting-MTA: dns; omr-m04.mx.aol.com
1215
+ X-Outbound-Mail-Relay-Queue-ID: 07391702BF4DC
1216
+ X-Outbound-Mail-Relay-Sender: rfc822; shironeko@aol.example.jp
1217
+ Arrival-Date: Fri, 21 Nov 2014 17:15:27 -0500 (EST)
1218
+ Final-Recipient: rfc822; kijitora@example.jp
1219
+ Original-Recipient: rfc822;kijitora@example.jp
1220
+ Action: failed
1221
+ Status: 5.4.4
1222
+ Diagnostic-Code: X-Outbound-Mail-Relay; Host or domain name not found. Name
1223
+ service error for name=example.jp type=A: Host not found
1224
+
1225
+ ------=_Part_794689_296750481.1416608137968
1226
+ Content-Type: message/rfc822
1227
+
1228
+ Return-Path: <shironeko@aol.example.jp>
1229
+ Received: from mtaout-mcc01.mx.aol.com (mtaout-mcc01.mx.aol.com [172.26.253.77])
1230
+ by omr-m04.mx.aol.com (Outbound Mail Relay) with ESMTP id 07391702BF4DC
1231
+ for <kijitora@example.jp>; Fri, 21 Nov 2014 17:15:27 -0500 (EST)
1232
+ Received: from [192.0.2.2] (c135.kyoto.example.ne.jp [192.0.2.135])
1233
+ (using TLSv1 with cipher AES128-SHA (128/128 bits))
1234
+ (No client certificate requested)
1235
+ by mtaout-mcc01.mx.aol.com (MUA/Third Party Client Interface) with ESMTPSA id E2C3E380000A0
1236
+ for <kijitora@example.jp>; Fri, 21 Nov 2014 17:15:25 -0500 (EST)
1237
+ From: "Shironeko Nyanko" <shironeko@aol.example.jp>
1238
+ Content-Type: text/plain; charset=us-ascii
1239
+ Content-Transfer-Encoding: 7bit
1240
+ Subject: Nyaaaaan
1241
+ Message-Id: <1EF5F5E0-9CBD-4D06-BF45-F6AA5034DA0A@aol.example.jp>
1242
+ Date: Sat, 22 Nov 2014 07:15:21 +0900
1243
+ To: kijitora@example.jp
1244
+ Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
1245
+ X-Mailer: Apple Mail (2.1878.6)
1246
+ x-aol-global-disposition: G
1247
+ DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.com;
1248
+ s=20140625; t=1416608126;
1249
+ bh=dUMGxAZ9U8UkolIVlZ1f2khvDPHbfC0VN5w0JuBLQvY=;
1250
+ h=From:To:Subject:Message-Id:Date:Mime-Version:Content-Type;
1251
+ b=R9nhgzoX8Afe5r+nWmKhQtXzTCAuvK07Q5yiEwCTGcbX+qptWgjEjHr5Oo8Req1ry
1252
+ dqa390KAQoX/Gs2ahw+pEDNRtNNgpTQY1gsv6NryCfD9FZZ9MJmXKaGpUjwnkjJNVG
1253
+ HglpAPjYnifW2ynY6uccJuzS3CNzmYZ2XPCYPQtY=
1254
+ x-aol-sid: 3039ac1afd4d546fb97d75c6
1255
+ X-AOL-IP: 192.0.2.135
1256
+
1257
+ Message truncated.
1258
+ ------=_Part_794689_296750481.1416608137968--