sisimai 4.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,66 @@
1
+ Return-Path: <MAILER-DAEMON@aneyakoji.example.jp>
2
+ Received: from localhost (localhost)
3
+ by aneyakoji.example.jp (V8/cf) id t5EKjZJv020261;
4
+ Mon, 15 Jun 2015 05:45:35 +0900
5
+ Date: Mon, 15 Jun 2015 05:45:35 +0900
6
+ From: Mail Delivery Subsystem <poostmaster@example.jp>
7
+ Message-Id: <201506142045.t5EKjZJv020261@aneyakoji.example.jp>
8
+ To: <kijitora@example.jp>
9
+ MIME-Version: 1.0
10
+ Content-Type: multipart/report; report-type=delivery-status;
11
+ boundary="t5EKjZJv020261.1434314735/aneyakoji.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
+ --t5EKjZJv020261.1434314735/aneyakoji.example.jp
18
+
19
+ The original message was received at Mon, 15 Jun 2015 05:45:34 +0900
20
+ from p0120-xf4kyoto.kyoto.example.ne.jp [192.0.2.222]
21
+
22
+ ----- The following addresses had permanent fatal errors -----
23
+ <neko@xn--cesupi09d.jp>
24
+ (reason: 550 Host unknown)
25
+
26
+ ----- Transcript of session follows -----
27
+ 550 5.1.2 <neko@xn--cesupi09d.jp>... Host unknown (Name server: xn--cesupi09d.jp.: host not found)
28
+
29
+ --t5EKjZJv020261.1434314735/aneyakoji.example.jp
30
+ Content-Type: message/delivery-status
31
+
32
+ Reporting-MTA: dns; aneyakoji.example.jp
33
+ Received-From-MTA: DNS; p0120-xf4kyoto.kyoto.example.ne.jp
34
+ Arrival-Date: Mon, 15 Jun 2015 05:45:34 +0900
35
+
36
+ Final-Recipient: RFC822; neko@xn--cesupi09d.jp
37
+ Action: failed
38
+ Status: 5.1.2
39
+ Remote-MTA: DNS; xn--cesupi09d.jp
40
+ Diagnostic-Code: SMTP; 550 Host unknown
41
+ Last-Attempt-Date: Mon, 15 Jun 2015 05:45:35 +0900
42
+
43
+ --t5EKjZJv020261.1434314735/aneyakoji.example.jp
44
+ Content-Type: message/rfc822
45
+
46
+ Return-Path: <kijitora@example.jp>
47
+ Received: from [10.64.19.206] (p0120-xf4kyoto.kyoto.example.ne.jp [192.0.2.222])
48
+ (authenticated bits=0)
49
+ by aneyakoji.example.jp (V8/cf) with ESMTP id t5EKjXJv020258
50
+ for <neko@xn--cesupi09d.jp>; Mon, 15 Jun 2015 05:45:34 +0900
51
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 aneyakoji.example.jp t5EKjXJv020258
52
+ Authentication-Results: aneyakoji.example.jp; sender-id=pass header.from=kijitora@example.jp; auth=pass (CRAM-MD5); spf=pass smtp.mfrom=kijitora@example.jp
53
+ From: "kijitora, kuniyuki" <kijitora@example.jp>
54
+ Content-Type: text/plain; charset=us-ascii
55
+ Content-Transfer-Encoding: 7bit
56
+ Subject: =?utf-8?Q?test_for_bounce=28=E5=9C=B0=E5=9F=9F=E7=8C=AB=29?=
57
+ Message-Id: <35C4147F-7DF3-4B26-B225-FD7AFA378D70@example.jp>
58
+ Date: Mon, 15 Jun 2015 05:45:31 +0900
59
+ To: neko@xn--cesupi09d.jp
60
+ Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
61
+ X-Mailer: Apple Mail (2.1878.6)
62
+
63
+ Nyaaan
64
+
65
+ --t5EKjZJv020261.1434314735/aneyakoji.example.jp--
66
+
@@ -0,0 +1,70 @@
1
+ Return-Path: <MAILER-DAEMON@aneyakoji.example.jp>
2
+ Received: from localhost (localhost)
3
+ by aneyakoji.example.jp (V8/cf) id t5EKkFJv020295;
4
+ Mon, 15 Jun 2015 05:46:15 +0900
5
+ Date: Mon, 15 Jun 2015 05:46:15 +0900
6
+ From: Mail Delivery Subsystem <poostmaster@example.jp>
7
+ Message-Id: <201506142046.t5EKkFJv020295@aneyakoji.example.jp>
8
+ To: <kijitora@example.jp>
9
+ MIME-Version: 1.0
10
+ Content-Type: multipart/report; report-type=delivery-status;
11
+ boundary="t5EKkFJv020295.1434314775/aneyakoji.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
+ --t5EKkFJv020295.1434314775/aneyakoji.example.jp
18
+
19
+ The original message was received at Mon, 15 Jun 2015 05:46:14 +0900
20
+ from p0120-fxp0002kyoto.kyoto.example.ne.jp [192.0.2.222]
21
+
22
+ ----- The following addresses had permanent fatal errors -----
23
+ <=?utf-8?B?8J+QiPCfkIg=?=@example.org>
24
+ (reason: 550 5.1.1 <=?utf-8?B?8J+QiPCfkIg=?=@example.org>... User unknown)
25
+
26
+ ----- Transcript of session follows -----
27
+ ... while talking to mx.example.org.:
28
+ >>> DATA
29
+ <<< 550 5.1.1 <=?utf-8?B?8J+QiPCfkIg=?=@example.org>... User unknown
30
+ 550 5.1.1 <=?utf-8?B?8J+QiPCfkIg=?=@example.org>... User unknown
31
+ <<< 503 5.0.0 Need RCPT (recipient)
32
+
33
+ --t5EKkFJv020295.1434314775/aneyakoji.example.jp
34
+ Content-Type: message/delivery-status
35
+
36
+ Reporting-MTA: dns; aneyakoji.example.jp
37
+ Received-From-MTA: DNS; p0120-fxp0002kyoto.kyoto.example.ne.jp
38
+ Arrival-Date: Mon, 15 Jun 2015 05:46:14 +0900
39
+
40
+ Final-Recipient: RFC822; =?utf-8?B?8J+QiPCfkIg=?=@example.org
41
+ Action: failed
42
+ Status: 5.1.1
43
+ Remote-MTA: DNS; mx.example.org
44
+ Diagnostic-Code: SMTP; 550 5.1.1 <=?utf-8?B?8J+QiPCfkIg=?=@example.org>... User unknown
45
+ Last-Attempt-Date: Mon, 15 Jun 2015 05:46:14 +0900
46
+
47
+ --t5EKkFJv020295.1434314775/aneyakoji.example.jp
48
+ Content-Type: message/rfc822
49
+
50
+ Return-Path: <kijitora@example.jp>
51
+ Received: from [10.64.19.206] (p0120-fxp0002kyoto.kyoto.example.ne.jp [192.0.2.222])
52
+ (authenticated bits=0)
53
+ by aneyakoji.example.jp (V8/cf) with ESMTP id t5EKjXJw020258
54
+ for <=?utf-8?B?8J+QiPCfkIg=?=@example.org>; Mon, 15 Jun 2015 05:46:14 +0900
55
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 aneyakoji.example.jp t5EKjXJw020258
56
+ Authentication-Results: aneyakoji.example.jp; sender-id=pass header.from=kijitora@example.jp; auth=pass (CRAM-MD5); spf=pass smtp.mfrom=kijitora@example.jp
57
+ From: "kijitora, kuniyuki" <kijitora@example.jp>
58
+ Content-Type: text/plain; charset=us-ascii
59
+ Content-Transfer-Encoding: 7bit
60
+ Subject: =?utf-8?Q?test_for_bounce=28=F0=9F=90=88=F0=9F=90=88=29?=
61
+ Message-Id: <D69C17C3-6073-4B65-BD2C-52F3AE169C0F@example.jp>
62
+ Date: Mon, 15 Jun 2015 05:46:13 +0900
63
+ To: =?utf-8?B?8J+QiPCfkIg=?=@example.org
64
+ Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
65
+ X-Mailer: Apple Mail (2.1878.6)
66
+
67
+ Nyaaan
68
+
69
+ --t5EKkFJv020295.1434314775/aneyakoji.example.jp--
70
+
@@ -0,0 +1,71 @@
1
+ Return-Path: <MAILER-DAEMON@shironeko.example.org>
2
+ Received: from localhost (localhost)
3
+ by shironeko.example.org (V8/cf) id t8CHwZxs011896;
4
+ Sun, 13 Sep 2015 02:58:35 +0900
5
+ Date: Sun, 13 Sep 2015 02:58:35 +0900
6
+ From: Mail Delivery Subsystem <poostmaster@example.org>
7
+ Message-Id: <201509121758.t8CHwZxs011896@shironeko.example.org>
8
+ To: postmaster@shironeko.example.org
9
+ MIME-Version: 1.0
10
+ Content-Type: multipart/report; report-type=delivery-status;
11
+ boundary="t8CHwZxs011896.1442080715/shironeko.example.org"
12
+ Subject: Postmaster notify: see transcript for details
13
+ Auto-Submitted: auto-generated (postmaster-notification)
14
+
15
+ This is a MIME-encapsulated message
16
+
17
+ --t8CHwZxs011896.1442080715/shironeko.example.org
18
+
19
+ The original message was received at Sun, 13 Sep 2015 02:58:30 +0900
20
+ from c135.kyoto.example.ne.jp [192.0.2.222]
21
+ with id t8CHwKxr011887
22
+
23
+ ----- The following addresses had permanent fatal errors -----
24
+ <this-local-part-does-not-exist-on-the-system@gol.com>
25
+ (reason: 550 unknown user)
26
+
27
+ ----- Transcript of session follows -----
28
+ ... while talking to mx.mail.gol.com.:
29
+ >>> DATA
30
+ <<< 550 unknown user
31
+ 550 5.1.1 <this-local-part-does-not-exist-on-the-system@gol.com>... User unknown
32
+ <<< 503-All RCPT commands were rejected with this error:
33
+ <<< 503-unknown user
34
+ <<< 503 Valid RCPT command must precede DATA
35
+
36
+ --t8CHwZxs011896.1442080715/shironeko.example.org
37
+ Content-Type: message/delivery-status
38
+
39
+ Reporting-MTA: dns; shironeko.example.org
40
+ Received-From-MTA: DNS; c135.kyoto.example.ne.jp
41
+ Arrival-Date: Sun, 13 Sep 2015 02:58:30 +0900
42
+
43
+ Final-Recipient: RFC822; this-local-part-does-not-exist-on-the-system@gol.com
44
+ Action: failed
45
+ Status: 5.1.1
46
+ Remote-MTA: DNS; mx.mail.gol.com
47
+ Diagnostic-Code: SMTP; 550 unknown user
48
+ Last-Attempt-Date: Sun, 13 Sep 2015 02:58:35 +0900
49
+
50
+ --t8CHwZxs011896.1442080715/shironeko.example.org
51
+ Content-Type: text/rfc822-headers
52
+
53
+ Return-Path: <kijitora@example.org>
54
+ Received: from [192.0.2.6] (c135.kyoto.example.ne.jp [192.0.2.222])
55
+ (authenticated bits=0)
56
+ by shironeko.example.org (V8/cf) with ESMTP id t8CHwKxr011887
57
+ for <this-local-part-does-not-exist-on-the-system@gol.com>; Sun, 13 Sep 2015 02:58:30 +0900
58
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 shironeko.example.org t8CHwKxr011887
59
+ Authentication-Results: shironeko.example.org; sender-id=pass header.from=kijitora@example.org; auth=pass (CRAM-MD5); spf=pass smtp.mfrom=kijitora@example.org
60
+ From: Kijitora <kijitora@example.org>
61
+ Content-Type: text/plain; charset=us-ascii
62
+ Content-Transfer-Encoding: 7bit
63
+ Subject: Nyaaaaaaan
64
+ Message-Id: <0400551B-27D1-4BE9-BDC8-A7C65147AFC9@example.org>
65
+ Date: Sun, 13 Sep 2015 02:58:20 +0900
66
+ To: this-local-part-does-not-exist-on-the-system@gol.com
67
+ Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
68
+ X-Mailer: Apple Mail (2.1878.6)
69
+
70
+ --t8CHwZxs011896.1442080715/shironeko.example.org--
71
+
@@ -0,0 +1,69 @@
1
+ Return-Path: <MAILER-DAEMON@tobimike.example.org>
2
+ Received: from localhost (localhost)
3
+ by tobimike.example.org (V8/cf) id t8CHxccd011947;
4
+ Sun, 13 Sep 2015 02:59:38 +0900
5
+ Date: Sun, 13 Sep 2015 02:59:38 +0900
6
+ From: Mail Delivery Subsystem <poostmaster@example.org>
7
+ Message-Id: <201509121759.t8CHxccd011947@tobimike.example.org>
8
+ To: postmaster@tobimike.example.org
9
+ MIME-Version: 1.0
10
+ Content-Type: multipart/report; report-type=delivery-status;
11
+ boundary="t8CHxccd011947.1442080778/tobimike.example.org"
12
+ Subject: Postmaster notify: see transcript for details
13
+ Auto-Submitted: auto-generated (postmaster-notification)
14
+
15
+ This is a MIME-encapsulated message
16
+
17
+ --t8CHxccd011947.1442080778/tobimike.example.org
18
+
19
+ The original message was received at Sun, 13 Sep 2015 02:59:36 +0900
20
+ from c135.kyoto.example.ne.jp [192.0.2.222]
21
+ with id t8CHxZcc011938
22
+
23
+ ----- The following addresses had permanent fatal errors -----
24
+ <this-local-part-does-not-exist-on-the-system@mineo.jp>
25
+ (reason: 550 5.0.0 <this-local-part-does-not-exist-on-the-system@mineo.jp>... User unknown)
26
+
27
+ ----- Transcript of session follows -----
28
+ ... while talking to mx1.mineo.jp.:
29
+ >>> DATA
30
+ <<< 550 5.0.0 <this-local-part-does-not-exist-on-the-system@mineo.jp>... User unknown
31
+ 550 5.1.1 <this-local-part-does-not-exist-on-the-system@mineo.jp>... User unknown
32
+ <<< 503 5.0.0 Need RCPT (recipient)
33
+
34
+ --t8CHxccd011947.1442080778/tobimike.example.org
35
+ Content-Type: message/delivery-status
36
+
37
+ Reporting-MTA: dns; tobimike.example.org
38
+ Received-From-MTA: DNS; c135.kyoto.example.ne.jp
39
+ Arrival-Date: Sun, 13 Sep 2015 02:59:36 +0900
40
+
41
+ Final-Recipient: RFC822; this-local-part-does-not-exist-on-the-system@mineo.jp
42
+ Action: failed
43
+ Status: 5.0.0
44
+ Remote-MTA: DNS; mx1.mineo.jp
45
+ Diagnostic-Code: SMTP; 550 5.0.0 <this-local-part-does-not-exist-on-the-system@mineo.jp>... User unknown
46
+ Last-Attempt-Date: Sun, 13 Sep 2015 02:59:38 +0900
47
+
48
+ --t8CHxccd011947.1442080778/tobimike.example.org
49
+ Content-Type: text/rfc822-headers
50
+
51
+ Return-Path: <kijitora@example.org>
52
+ Received: from [192.0.2.6] (c135.kyoto.example.ne.jp [192.0.2.222])
53
+ (authenticated bits=0)
54
+ by tobimike.example.org (V8/cf) with ESMTP id t8CHxZcc011938
55
+ for <this-local-part-does-not-exist-on-the-system@mineo.jp>; Sun, 13 Sep 2015 02:59:36 +0900
56
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 tobimike.example.org t8CHxZcc011938
57
+ Authentication-Results: tobimike.example.org; sender-id=pass header.from=kijitora@example.org; auth=pass (CRAM-MD5); spf=pass smtp.mfrom=kijitora@example.org
58
+ From: Kijitora <kijitora@example.org>
59
+ Content-Type: text/plain; charset=us-ascii
60
+ Content-Transfer-Encoding: 7bit
61
+ Subject: Nyaaaaaaaan
62
+ Message-Id: <80A4F3A5-ED58-411A-9C41-1AFA7EBFCF12@example.org>
63
+ Date: Sun, 13 Sep 2015 02:59:35 +0900
64
+ To: this-local-part-does-not-exist-on-the-system@mineo.jp
65
+ Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
66
+ X-Mailer: Apple Mail (2.1878.6)
67
+
68
+ --t8CHxccd011947.1442080778/tobimike.example.org--
69
+
@@ -0,0 +1,69 @@
1
+ Return-Path: <MAILER-DAEMON@kuroneko.example.org>
2
+ Received: from localhost (localhost)
3
+ by kuroneko.example.org (V8/cf) id t8CI0Acd012666;
4
+ Sun, 13 Sep 2015 03:00:10 +0900
5
+ Date: Sun, 13 Sep 2015 03:00:10 +0900
6
+ From: Mail Delivery Subsystem <poostmaster@example.org>
7
+ Message-Id: <201509121800.t8CI0Acd012666@kuroneko.example.org>
8
+ To: postmaster@kuroneko.example.org
9
+ MIME-Version: 1.0
10
+ Content-Type: multipart/report; report-type=delivery-status;
11
+ boundary="t8CI0Acd012666.1442080810/kuroneko.example.org"
12
+ Subject: Postmaster notify: see transcript for details
13
+ Auto-Submitted: auto-generated (postmaster-notification)
14
+
15
+ This is a MIME-encapsulated message
16
+
17
+ --t8CI0Acd012666.1442080810/kuroneko.example.org
18
+
19
+ The original message was received at Sun, 13 Sep 2015 03:00:08 +0900
20
+ from c135.kyoto.example.ne.jp [192.0.2.222]
21
+ with id t8CHxZcd011938
22
+
23
+ ----- The following addresses had permanent fatal errors -----
24
+ <this-local-part-does-not-exist-on-the-system@uqmobile.jp>
25
+ (reason: 550 <this-local-part-does-not-exist-on-the-system@uqmobile.jp>: User unknown)
26
+
27
+ ----- Transcript of session follows -----
28
+ ... while talking to lsean.ezweb.ne.jp.:
29
+ >>> DATA
30
+ <<< 550 <this-local-part-does-not-exist-on-the-system@uqmobile.jp>: User unknown
31
+ 550 5.1.1 <this-local-part-does-not-exist-on-the-system@uqmobile.jp>... User unknown
32
+ <<< 554 Error: no valid recipients
33
+
34
+ --t8CI0Acd012666.1442080810/kuroneko.example.org
35
+ Content-Type: message/delivery-status
36
+
37
+ Reporting-MTA: dns; kuroneko.example.org
38
+ Received-From-MTA: DNS; c135.kyoto.example.ne.jp
39
+ Arrival-Date: Sun, 13 Sep 2015 03:00:08 +0900
40
+
41
+ Final-Recipient: RFC822; this-local-part-does-not-exist-on-the-system@uqmobile.jp
42
+ Action: failed
43
+ Status: 5.1.1
44
+ Remote-MTA: DNS; lsean.ezweb.ne.jp
45
+ Diagnostic-Code: SMTP; 550 <this-local-part-does-not-exist-on-the-system@uqmobile.jp>: User unknown
46
+ Last-Attempt-Date: Sun, 13 Sep 2015 03:00:10 +0900
47
+
48
+ --t8CI0Acd012666.1442080810/kuroneko.example.org
49
+ Content-Type: text/rfc822-headers
50
+
51
+ Return-Path: <kijitora@example.org>
52
+ Received: from [192.0.2.6] (c135.kyoto.example.ne.jp [192.0.2.222])
53
+ (authenticated bits=0)
54
+ by kuroneko.example.org (V8/cf) with ESMTP id t8CHxZcd011938
55
+ for <this-local-part-does-not-exist-on-the-system@uqmobile.jp>; Sun, 13 Sep 2015 03:00:08 +0900
56
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 kuroneko.example.org t8CHxZcd011938
57
+ Authentication-Results: kuroneko.example.org; sender-id=pass header.from=kijitora@example.org; auth=pass (CRAM-MD5); spf=pass smtp.mfrom=kijitora@example.org
58
+ From: Kijitora <kijitora@example.org>
59
+ Content-Type: text/plain; charset=us-ascii
60
+ Content-Transfer-Encoding: 7bit
61
+ Subject: Nyaaaaaaaaaaaaaaaaaaaaaaaaaan
62
+ Message-Id: <20ED5C65-F9C7-4486-A4D3-798F1ED39B3A@example.org>
63
+ Date: Sun, 13 Sep 2015 03:00:08 +0900
64
+ To: this-local-part-does-not-exist-on-the-system@uqmobile.jp
65
+ Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
66
+ X-Mailer: Apple Mail (2.1878.6)
67
+
68
+ --t8CI0Acd012666.1442080810/kuroneko.example.org--
69
+
@@ -0,0 +1,70 @@
1
+ Return-Path: <MAILER-DAEMON@neko.example.jp>
2
+ Received: from localhost (localhost)
3
+ by neko.example.jp (V8/cf) id t8CMLrXO030573;
4
+ Sun, 13 Sep 2015 07:21:54 +0900
5
+ Date: Sun, 13 Sep 2015 07:21:54 +0900
6
+ From: Mail Delivery Subsystem <poostmaster@example.jp>
7
+ Message-Id: <201509122221.t8CMLrXO030573@neko.example.jp>
8
+ To: <shironeko@example.jp>
9
+ MIME-Version: 1.0
10
+ Content-Type: multipart/report; report-type=delivery-status;
11
+ boundary="t8CMLrXO030573.1442096514/neko.example.jp"
12
+ Subject: Warning: could not send message for past 4 hours
13
+ Auto-Submitted: auto-generated (warning-timeout)
14
+
15
+ This is a MIME-encapsulated message
16
+
17
+ --t8CMLrXO030573.1442096514/neko.example.jp
18
+
19
+ **********************************************
20
+ ** THIS IS A WARNING MESSAGE ONLY **
21
+ ** YOU DO NOT NEED TO RESEND YOUR MESSAGE **
22
+ **********************************************
23
+
24
+ The original message was received at Sun, 13 Sep 2015 03:10:06 +0900
25
+ from c135.kyoto.example.ne.jp [192.0.2.135]
26
+
27
+ ----- Transcript of session follows -----
28
+ ... while talking to ymx1.softbank.ne.jp.:
29
+ <<< 421
30
+ <this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp>... Deferred: 421
31
+ Warning: message still undelivered after 4 hours
32
+ Will keep trying until message is 8 hours old
33
+
34
+ --t8CMLrXO030573.1442096514/neko.example.jp
35
+ Content-Type: message/delivery-status
36
+
37
+ Reporting-MTA: dns; neko.example.jp
38
+ Arrival-Date: Sun, 13 Sep 2015 03:10:06 +0900
39
+
40
+ Final-Recipient: RFC822; this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp
41
+ Action: delayed
42
+ Status: 4.5.0
43
+ Diagnostic-Code: SMTP;
44
+ Last-Attempt-Date: Sun, 13 Sep 2015 07:21:54 +0900
45
+ Will-Retry-Until: Sun, 13 Sep 2015 11:10:06 +0900
46
+
47
+ --t8CMLrXO030573.1442096514/neko.example.jp
48
+ Content-Type: message/rfc822
49
+
50
+ Return-Path: <shironeko@example.jp>
51
+ Received: from [192.0.2.222] (c135.kyoto.example.ne.jp [192.0.2.135])
52
+ (authenticated bits=0)
53
+ by neko.example.jp (V8/cf) with ESMTP id t8CIA5VM014298
54
+ for <this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp>; Sun, 13 Sep 2015 03:10:06 +0900
55
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 neko.example.jp t8CIA5VM014298
56
+ Authentication-Results: neko.example.jp; sender-id=pass header.from=shironeko@example.jp; auth=pass (CRAM-MD5); spf=pass smtp.mfrom=shironeko@example.jp
57
+ From: Shironeko <shironeko@example.jp>
58
+ Content-Type: text/plain; charset=us-ascii
59
+ Content-Transfer-Encoding: 7bit
60
+ Subject: Nyaaaaaaaaaan
61
+ Message-Id: <54341A75-5EF4-4F06-9C5D-56D36A9283FC@example.jp>
62
+ Date: Sun, 13 Sep 2015 03:10:04 +0900
63
+ To: this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp
64
+ Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
65
+ X-Mailer: Apple Mail (2.1878.6)
66
+
67
+ Nyaaan
68
+
69
+ --t8CMLrXO030573.1442096514/neko.example.jp--
70
+
@@ -0,0 +1,68 @@
1
+ Return-Path: <MAILER-DAEMON@neko.example.jp>
2
+ Received: from localhost (localhost)
3
+ by neko.example.jp (V8/cf) id t8D2Lrr0011671;
4
+ Sun, 13 Sep 2015 11:21:54 +0900
5
+ Date: Sun, 13 Sep 2015 11:21:54 +0900
6
+ From: Mail Delivery Subsystem <poostmaster@example.jp>
7
+ Message-Id: <201509130221.t8D2Lrr0011671@neko.example.jp>
8
+ To: <shironeko@example.jp>
9
+ MIME-Version: 1.0
10
+ Content-Type: multipart/report; report-type=delivery-status;
11
+ boundary="t8D2Lrr0011671.1442110914/neko.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
+ --t8D2Lrr0011671.1442110914/neko.example.jp
18
+
19
+ The original message was received at Sun, 13 Sep 2015 03:10:06 +0900
20
+ from c135.kyoto.example.ne.jp [192.0.2.135]
21
+
22
+ ----- The following addresses had permanent fatal errors -----
23
+ <this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp>
24
+ (reason: )
25
+
26
+ ----- Transcript of session follows -----
27
+ ... while talking to ymx1.softbank.ne.jp.:
28
+ <<< 421
29
+ <this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp>... Deferred: 421
30
+ Message could not be delivered for 8 hours
31
+ Message will be deleted from queue
32
+
33
+ --t8D2Lrr0011671.1442110914/neko.example.jp
34
+ Content-Type: message/delivery-status
35
+
36
+ Reporting-MTA: dns; neko.example.jp
37
+ Arrival-Date: Sun, 13 Sep 2015 03:10:06 +0900
38
+
39
+ Final-Recipient: RFC822; this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp
40
+ Action: failed
41
+ Status: 4.4.7
42
+ Diagnostic-Code: SMTP;
43
+ Last-Attempt-Date: Sun, 13 Sep 2015 11:21:54 +0900
44
+
45
+ --t8D2Lrr0011671.1442110914/neko.example.jp
46
+ Content-Type: message/rfc822
47
+
48
+ Return-Path: <shironeko@example.jp>
49
+ Received: from [192.0.2.222] (c135.kyoto.example.ne.jp [192.0.2.135])
50
+ (authenticated bits=0)
51
+ by neko.example.jp (V8/cf) with ESMTP id t8CIA5VM014298
52
+ for <this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp>; Sun, 13 Sep 2015 03:10:06 +0900
53
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 neko.example.jp t8CIA5VM014298
54
+ Authentication-Results: neko.example.jp; sender-id=pass header.from=shironeko@example.jp; auth=pass (CRAM-MD5); spf=pass smtp.mfrom=shironeko@example.jp
55
+ From: "shironeko, kuniyuki" <shironeko@example.jp>
56
+ Content-Type: text/plain; charset=us-ascii
57
+ Content-Transfer-Encoding: 7bit
58
+ Subject: Nyaaaaaaaaaaaaaaan
59
+ Message-Id: <54341A75-5EF4-4F06-9C5D-56D36A9283FC@example.jp>
60
+ Date: Sun, 13 Sep 2015 03:10:04 +0900
61
+ To: this-local-part-does-not-exist-on-the-system@y-mobile.ne.jp
62
+ Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
63
+ X-Mailer: Apple Mail (2.1878.6)
64
+
65
+ Nyaaan
66
+
67
+ --t8D2Lrr0011671.1442110914/neko.example.jp--
68
+