sisimai 4.19.0 → 4.20.0

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 (503) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -0
  3. data/ANALYTICAL-PRECISION +8 -6
  4. data/Changes +15 -0
  5. data/Developers.mk +13 -1
  6. data/Makefile +3 -3
  7. data/README-JA.md +35 -6
  8. data/README.md +44 -25
  9. data/Repository.mk +1 -1
  10. data/lib/sisimai.rb +92 -32
  11. data/lib/sisimai/address.rb +1 -1
  12. data/lib/sisimai/arf.rb +1 -1
  13. data/lib/sisimai/ced.rb +24 -0
  14. data/lib/sisimai/ced/us/amazonses.rb +270 -0
  15. data/lib/sisimai/ced/us/sendgrid.rb +86 -0
  16. data/lib/sisimai/data.rb +19 -4
  17. data/lib/sisimai/data/json.rb +4 -4
  18. data/lib/sisimai/data/yaml.rb +3 -2
  19. data/lib/sisimai/mail/maildir.rb +1 -1
  20. data/lib/sisimai/mail/mbox.rb +1 -1
  21. data/lib/sisimai/message.rb +43 -510
  22. data/lib/sisimai/message/email.rb +556 -0
  23. data/lib/sisimai/message/json.rb +201 -0
  24. data/lib/sisimai/msp.rb +4 -31
  25. data/lib/sisimai/msp/de/einsundeins.rb +1 -1
  26. data/lib/sisimai/msp/de/gmx.rb +1 -1
  27. data/lib/sisimai/msp/jp/biglobe.rb +1 -1
  28. data/lib/sisimai/msp/jp/ezweb.rb +1 -1
  29. data/lib/sisimai/msp/jp/kddi.rb +1 -1
  30. data/lib/sisimai/msp/ru/mailru.rb +1 -1
  31. data/lib/sisimai/msp/ru/yandex.rb +1 -1
  32. data/lib/sisimai/msp/uk/messagelabs.rb +1 -1
  33. data/lib/sisimai/msp/us/amazonses.rb +1 -1
  34. data/lib/sisimai/msp/us/amazonworkmail.rb +1 -1
  35. data/lib/sisimai/msp/us/aol.rb +1 -1
  36. data/lib/sisimai/msp/us/bigfoot.rb +1 -1
  37. data/lib/sisimai/msp/us/facebook.rb +1 -1
  38. data/lib/sisimai/msp/us/google.rb +1 -1
  39. data/lib/sisimai/msp/us/office365.rb +1 -1
  40. data/lib/sisimai/msp/us/outlook.rb +1 -1
  41. data/lib/sisimai/msp/us/receivingses.rb +1 -1
  42. data/lib/sisimai/msp/us/sendgrid.rb +1 -1
  43. data/lib/sisimai/msp/us/verizon.rb +1 -1
  44. data/lib/sisimai/msp/us/yahoo.rb +1 -1
  45. data/lib/sisimai/msp/us/zoho.rb +1 -1
  46. data/lib/sisimai/mta.rb +4 -32
  47. data/lib/sisimai/mta/activehunter.rb +1 -1
  48. data/lib/sisimai/mta/apachejames.rb +1 -1
  49. data/lib/sisimai/mta/courier.rb +1 -1
  50. data/lib/sisimai/mta/domino.rb +1 -1
  51. data/lib/sisimai/mta/exchange2003.rb +1 -1
  52. data/lib/sisimai/mta/exchange2007.rb +1 -1
  53. data/lib/sisimai/mta/exim.rb +1 -1
  54. data/lib/sisimai/mta/imailserver.rb +1 -1
  55. data/lib/sisimai/mta/interscanmss.rb +1 -1
  56. data/lib/sisimai/mta/mailfoundry.rb +1 -1
  57. data/lib/sisimai/mta/mailmarshalsmtp.rb +1 -1
  58. data/lib/sisimai/mta/mcafee.rb +1 -1
  59. data/lib/sisimai/mta/messagingserver.rb +1 -1
  60. data/lib/sisimai/mta/mfilter.rb +1 -1
  61. data/lib/sisimai/mta/mxlogic.rb +1 -1
  62. data/lib/sisimai/mta/notes.rb +1 -1
  63. data/lib/sisimai/mta/opensmtpd.rb +2 -2
  64. data/lib/sisimai/mta/postfix.rb +1 -1
  65. data/lib/sisimai/mta/qmail.rb +1 -1
  66. data/lib/sisimai/mta/sendmail.rb +2 -1
  67. data/lib/sisimai/mta/surfcontrol.rb +1 -1
  68. data/lib/sisimai/mta/userdefined.rb +1 -1
  69. data/lib/sisimai/mta/v5sendmail.rb +1 -1
  70. data/lib/sisimai/mta/x1.rb +1 -1
  71. data/lib/sisimai/mta/x2.rb +1 -1
  72. data/lib/sisimai/mta/x3.rb +1 -1
  73. data/lib/sisimai/mta/x4.rb +1 -1
  74. data/lib/sisimai/mta/x5.rb +1 -1
  75. data/lib/sisimai/order.rb +7 -216
  76. data/lib/sisimai/order/email.rb +231 -0
  77. data/lib/sisimai/order/json.rb +56 -0
  78. data/lib/sisimai/reason/hostunknown.rb +1 -0
  79. data/lib/sisimai/reason/norelaying.rb +2 -0
  80. data/lib/sisimai/reason/notaccept.rb +5 -1
  81. data/lib/sisimai/rfc3464.rb +1 -1
  82. data/lib/sisimai/skeleton.rb +43 -0
  83. data/lib/sisimai/smtp.rb +11 -48
  84. data/lib/sisimai/smtp/error.rb +3 -1
  85. data/lib/sisimai/string.rb +1 -0
  86. data/lib/sisimai/version.rb +1 -1
  87. data/set-of-emails/jsonapi/ced-us-amazonses-01.json +1 -0
  88. data/set-of-emails/jsonapi/ced-us-amazonses-02.json +11 -0
  89. data/set-of-emails/jsonapi/ced-us-amazonses-03.json +1 -0
  90. data/set-of-emails/jsonapi/ced-us-amazonses-04.json +1 -0
  91. data/set-of-emails/jsonapi/ced-us-amazonses-05.json +1 -0
  92. data/set-of-emails/jsonapi/ced-us-sendgrid-01.json +1 -0
  93. data/set-of-emails/jsonapi/ced-us-sendgrid-02.json +1 -0
  94. data/set-of-emails/jsonapi/ced-us-sendgrid-03.json +1 -0
  95. data/set-of-emails/jsonapi/ced-us-sendgrid-04.json +1 -0
  96. data/set-of-emails/jsonapi/ced-us-sendgrid-05.json +1 -0
  97. data/set-of-emails/jsonapi/ced-us-sendgrid-06.json +1 -0
  98. data/set-of-emails/jsonapi/ced-us-sendgrid-07.json +1 -0
  99. data/set-of-emails/jsonapi/ced-us-sendgrid-08.json +1 -0
  100. data/set-of-emails/jsonapi/ced-us-sendgrid-09.json +1 -0
  101. data/set-of-emails/jsonapi/ced-us-sendgrid-10.json +1 -0
  102. data/set-of-emails/jsonapi/ced-us-sendgrid-11.json +1 -0
  103. data/set-of-emails/maildir/bsd/README.md +50 -50
  104. data/set-of-emails/maildir/bsd/ced-us-amazonses-01.eml +47 -0
  105. data/set-of-emails/maildir/bsd/ced-us-amazonses-02.eml +51 -0
  106. data/set-of-emails/maildir/bsd/ced-us-amazonses-03.eml +47 -0
  107. data/set-of-emails/maildir/bsd/ced-us-amazonses-04.eml +46 -0
  108. data/set-of-emails/maildir/bsd/ced-us-amazonses-05.eml +46 -0
  109. data/set-of-emails/maildir/bsd/{de-einsundeins-01.eml → msp-de-einsundeins-01.eml} +0 -0
  110. data/set-of-emails/maildir/bsd/{de-gmx-01.eml → msp-de-gmx-01.eml} +0 -0
  111. data/set-of-emails/maildir/bsd/{de-gmx-02.eml → msp-de-gmx-02.eml} +0 -0
  112. data/set-of-emails/maildir/bsd/{de-gmx-03.eml → msp-de-gmx-03.eml} +0 -0
  113. data/set-of-emails/maildir/bsd/{de-gmx-04.eml → msp-de-gmx-04.eml} +0 -0
  114. data/set-of-emails/maildir/bsd/{jp-biglobe-01.eml → msp-jp-biglobe-01.eml} +0 -0
  115. data/set-of-emails/maildir/bsd/{jp-ezweb-01.eml → msp-jp-ezweb-01.eml} +0 -0
  116. data/set-of-emails/maildir/bsd/{jp-ezweb-02.eml → msp-jp-ezweb-02.eml} +0 -0
  117. data/set-of-emails/maildir/bsd/{jp-ezweb-03.eml → msp-jp-ezweb-03.eml} +0 -0
  118. data/set-of-emails/maildir/bsd/{jp-ezweb-04.eml → msp-jp-ezweb-04.eml} +0 -0
  119. data/set-of-emails/maildir/bsd/{jp-ezweb-05.eml → msp-jp-ezweb-05.eml} +0 -0
  120. data/set-of-emails/maildir/bsd/{jp-ezweb-06.eml → msp-jp-ezweb-06.eml} +0 -0
  121. data/set-of-emails/maildir/bsd/{jp-kddi-01.eml → msp-jp-kddi-01.eml} +0 -0
  122. data/set-of-emails/maildir/bsd/{jp-kddi-02.eml → msp-jp-kddi-02.eml} +0 -0
  123. data/set-of-emails/maildir/bsd/{jp-kddi-03.eml → msp-jp-kddi-03.eml} +0 -0
  124. data/set-of-emails/maildir/bsd/{ru-mailru-01.eml → msp-ru-mailru-01.eml} +0 -0
  125. data/set-of-emails/maildir/bsd/{ru-mailru-02.eml → msp-ru-mailru-02.eml} +0 -0
  126. data/set-of-emails/maildir/bsd/{ru-mailru-03.eml → msp-ru-mailru-03.eml} +0 -0
  127. data/set-of-emails/maildir/bsd/{ru-mailru-04.eml → msp-ru-mailru-04.eml} +0 -0
  128. data/set-of-emails/maildir/bsd/{ru-yandex-01.eml → msp-ru-yandex-01.eml} +0 -0
  129. data/set-of-emails/maildir/bsd/{ru-yandex-02.eml → msp-ru-yandex-02.eml} +0 -0
  130. data/set-of-emails/maildir/bsd/{ru-yandex-03.eml → msp-ru-yandex-03.eml} +0 -0
  131. data/set-of-emails/maildir/bsd/{uk-messagelabs-01.eml → msp-uk-messagelabs-01.eml} +0 -0
  132. data/set-of-emails/maildir/bsd/{us-amazonses-01.eml → msp-us-amazonses-01.eml} +0 -0
  133. data/set-of-emails/maildir/bsd/{us-amazonses-02.eml → msp-us-amazonses-02.eml} +0 -0
  134. data/set-of-emails/maildir/bsd/{us-amazonses-03.eml → msp-us-amazonses-03.eml} +0 -0
  135. data/set-of-emails/maildir/bsd/{us-amazonses-04.eml → msp-us-amazonses-04.eml} +0 -0
  136. data/set-of-emails/maildir/bsd/{us-amazonses-05.eml → msp-us-amazonses-05.eml} +0 -0
  137. data/set-of-emails/maildir/bsd/{us-amazonses-06.eml → msp-us-amazonses-06.eml} +0 -0
  138. data/set-of-emails/maildir/bsd/{us-amazonses-07.eml → msp-us-amazonses-07.eml} +0 -0
  139. data/set-of-emails/maildir/bsd/{us-amazonses-08.eml → msp-us-amazonses-08.eml} +0 -0
  140. data/set-of-emails/maildir/bsd/{us-amazonworkmail-01.eml → msp-us-amazonworkmail-01.eml} +0 -0
  141. data/set-of-emails/maildir/bsd/{us-amazonworkmail-02.eml → msp-us-amazonworkmail-02.eml} +0 -0
  142. data/set-of-emails/maildir/bsd/{us-amazonworkmail-03.eml → msp-us-amazonworkmail-03.eml} +0 -0
  143. data/set-of-emails/maildir/bsd/{us-amazonworkmail-04.eml → msp-us-amazonworkmail-04.eml} +0 -0
  144. data/set-of-emails/maildir/bsd/{us-amazonworkmail-05.eml → msp-us-amazonworkmail-05.eml} +0 -0
  145. data/set-of-emails/maildir/bsd/{us-amazonworkmail-06.eml → msp-us-amazonworkmail-06.eml} +0 -0
  146. data/set-of-emails/maildir/bsd/{us-amazonworkmail-07.eml → msp-us-amazonworkmail-07.eml} +0 -0
  147. data/set-of-emails/maildir/bsd/{us-aol-01.eml → msp-us-aol-01.eml} +0 -0
  148. data/set-of-emails/maildir/bsd/{us-aol-02.eml → msp-us-aol-02.eml} +0 -0
  149. data/set-of-emails/maildir/bsd/{us-aol-03.eml → msp-us-aol-03.eml} +0 -0
  150. data/set-of-emails/maildir/bsd/{us-aol-04.eml → msp-us-aol-04.eml} +0 -0
  151. data/set-of-emails/maildir/bsd/{us-bigfoot-01.eml → msp-us-bigfoot-01.eml} +0 -0
  152. data/set-of-emails/maildir/bsd/{us-facebook-01.eml → msp-us-facebook-01.eml} +0 -0
  153. data/set-of-emails/maildir/bsd/{us-facebook-02.eml → msp-us-facebook-02.eml} +0 -0
  154. data/set-of-emails/maildir/bsd/{us-google-01.eml → msp-us-google-01.eml} +0 -0
  155. data/set-of-emails/maildir/bsd/{us-google-02.eml → msp-us-google-02.eml} +0 -0
  156. data/set-of-emails/maildir/bsd/{us-google-03.eml → msp-us-google-03.eml} +0 -0
  157. data/set-of-emails/maildir/bsd/{us-google-04.eml → msp-us-google-04.eml} +0 -0
  158. data/set-of-emails/maildir/bsd/{us-google-05.eml → msp-us-google-05.eml} +0 -0
  159. data/set-of-emails/maildir/bsd/{us-google-06.eml → msp-us-google-06.eml} +0 -0
  160. data/set-of-emails/maildir/bsd/{us-google-07.eml → msp-us-google-07.eml} +0 -0
  161. data/set-of-emails/maildir/bsd/{us-google-08.eml → msp-us-google-08.eml} +0 -0
  162. data/set-of-emails/maildir/bsd/{us-google-09.eml → msp-us-google-09.eml} +0 -0
  163. data/set-of-emails/maildir/bsd/{us-google-10.eml → msp-us-google-10.eml} +0 -0
  164. data/set-of-emails/maildir/bsd/{us-google-11.eml → msp-us-google-11.eml} +0 -0
  165. data/set-of-emails/maildir/bsd/{us-google-12.eml → msp-us-google-12.eml} +0 -0
  166. data/set-of-emails/maildir/bsd/{us-google-13.eml → msp-us-google-13.eml} +0 -0
  167. data/set-of-emails/maildir/bsd/{us-google-14.eml → msp-us-google-14.eml} +0 -0
  168. data/set-of-emails/maildir/bsd/{us-google-15.eml → msp-us-google-15.eml} +0 -0
  169. data/set-of-emails/maildir/bsd/{us-google-16.eml → msp-us-google-16.eml} +0 -0
  170. data/set-of-emails/maildir/bsd/{us-google-17.eml → msp-us-google-17.eml} +0 -0
  171. data/set-of-emails/maildir/bsd/{us-office365-01.eml → msp-us-office365-01.eml} +0 -0
  172. data/set-of-emails/maildir/bsd/{us-office365-02.eml → msp-us-office365-02.eml} +0 -0
  173. data/set-of-emails/maildir/bsd/{us-outlook-01.eml → msp-us-outlook-01.eml} +0 -0
  174. data/set-of-emails/maildir/bsd/{us-outlook-02.eml → msp-us-outlook-02.eml} +0 -0
  175. data/set-of-emails/maildir/bsd/{us-outlook-03.eml → msp-us-outlook-03.eml} +0 -0
  176. data/set-of-emails/maildir/bsd/{us-outlook-04.eml → msp-us-outlook-04.eml} +0 -0
  177. data/set-of-emails/maildir/bsd/{us-outlook-05.eml → msp-us-outlook-05.eml} +0 -0
  178. data/set-of-emails/maildir/bsd/{us-outlook-06.eml → msp-us-outlook-06.eml} +0 -0
  179. data/set-of-emails/maildir/bsd/{us-outlook-07.eml → msp-us-outlook-07.eml} +0 -0
  180. data/set-of-emails/maildir/bsd/{us-receivingses-01.eml → msp-us-receivingses-01.eml} +0 -0
  181. data/set-of-emails/maildir/bsd/{us-receivingses-02.eml → msp-us-receivingses-02.eml} +0 -0
  182. data/set-of-emails/maildir/bsd/{us-receivingses-03.eml → msp-us-receivingses-03.eml} +0 -0
  183. data/set-of-emails/maildir/bsd/{us-receivingses-04.eml → msp-us-receivingses-04.eml} +0 -0
  184. data/set-of-emails/maildir/bsd/{us-receivingses-05.eml → msp-us-receivingses-05.eml} +0 -0
  185. data/set-of-emails/maildir/bsd/{us-receivingses-06.eml → msp-us-receivingses-06.eml} +0 -0
  186. data/set-of-emails/maildir/bsd/{us-receivingses-07.eml → msp-us-receivingses-07.eml} +0 -0
  187. data/set-of-emails/maildir/bsd/{us-sendgrid-01.eml → msp-us-sendgrid-01.eml} +0 -0
  188. data/set-of-emails/maildir/bsd/{us-sendgrid-02.eml → msp-us-sendgrid-02.eml} +0 -0
  189. data/set-of-emails/maildir/bsd/{us-sendgrid-03.eml → msp-us-sendgrid-03.eml} +0 -0
  190. data/set-of-emails/maildir/bsd/{us-verizon-01.eml → msp-us-verizon-01.eml} +0 -0
  191. data/set-of-emails/maildir/bsd/msp-us-verizon-02.eml +46 -0
  192. data/set-of-emails/maildir/bsd/{us-yahoo-01.eml → msp-us-yahoo-01.eml} +0 -0
  193. data/set-of-emails/maildir/bsd/{us-yahoo-02.eml → msp-us-yahoo-02.eml} +0 -0
  194. data/set-of-emails/maildir/bsd/{us-yahoo-03.eml → msp-us-yahoo-03.eml} +0 -0
  195. data/set-of-emails/maildir/bsd/{us-yahoo-04.eml → msp-us-yahoo-04.eml} +0 -0
  196. data/set-of-emails/maildir/bsd/{us-yahoo-05.eml → msp-us-yahoo-05.eml} +0 -0
  197. data/set-of-emails/maildir/bsd/{us-zoho-01.eml → msp-us-zoho-01.eml} +0 -0
  198. data/set-of-emails/maildir/bsd/{us-zoho-02.eml → msp-us-zoho-02.eml} +0 -0
  199. data/set-of-emails/maildir/bsd/{us-zoho-03.eml → msp-us-zoho-03.eml} +0 -0
  200. data/set-of-emails/maildir/bsd/{us-zoho-04.eml → msp-us-zoho-04.eml} +0 -0
  201. data/set-of-emails/maildir/bsd/{us-zoho-05.eml → msp-us-zoho-05.eml} +0 -0
  202. data/set-of-emails/maildir/bsd/mta-README.md +319 -0
  203. data/set-of-emails/maildir/bsd/{activehunter-01.eml → mta-activehunter-01.eml} +0 -0
  204. data/set-of-emails/maildir/bsd/{activehunter-02.eml → mta-activehunter-02.eml} +0 -0
  205. data/set-of-emails/maildir/bsd/{apachejames-01.eml → mta-apachejames-01.eml} +0 -0
  206. data/set-of-emails/maildir/bsd/{courier-01.eml → mta-courier-01.eml} +0 -0
  207. data/set-of-emails/maildir/bsd/{courier-02.eml → mta-courier-02.eml} +0 -0
  208. data/set-of-emails/maildir/bsd/{courier-03.eml → mta-courier-03.eml} +0 -0
  209. data/set-of-emails/maildir/bsd/{courier-04.eml → mta-courier-04.eml} +0 -0
  210. data/set-of-emails/maildir/bsd/{domino-01.eml → mta-domino-01.eml} +0 -0
  211. data/set-of-emails/maildir/bsd/{domino-02.eml → mta-domino-02.eml} +0 -0
  212. data/set-of-emails/maildir/bsd/{exchange2003-01.eml → mta-exchange2003-01.eml} +0 -0
  213. data/set-of-emails/maildir/bsd/{exchange2003-02.eml → mta-exchange2003-02.eml} +0 -0
  214. data/set-of-emails/maildir/bsd/{exchange2003-03.eml → mta-exchange2003-03.eml} +0 -0
  215. data/set-of-emails/maildir/bsd/{exchange2003-04.eml → mta-exchange2003-04.eml} +0 -0
  216. data/set-of-emails/maildir/bsd/{exchange2003-05.eml → mta-exchange2003-05.eml} +0 -0
  217. data/set-of-emails/maildir/bsd/{exchange2003-06.eml → mta-exchange2003-06.eml} +0 -0
  218. data/set-of-emails/maildir/bsd/{exchange2007-01.eml → mta-exchange2007-01.eml} +0 -0
  219. data/set-of-emails/maildir/bsd/{exchange2007-02.eml → mta-exchange2007-02.eml} +0 -0
  220. data/set-of-emails/maildir/bsd/{exchange2007-03.eml → mta-exchange2007-03.eml} +0 -0
  221. data/set-of-emails/maildir/bsd/{exim-01.eml → mta-exim-01.eml} +0 -0
  222. data/set-of-emails/maildir/bsd/{exim-02.eml → mta-exim-02.eml} +0 -0
  223. data/set-of-emails/maildir/bsd/{exim-03.eml → mta-exim-03.eml} +0 -0
  224. data/set-of-emails/maildir/bsd/{exim-04.eml → mta-exim-04.eml} +0 -0
  225. data/set-of-emails/maildir/bsd/{exim-05.eml → mta-exim-05.eml} +0 -0
  226. data/set-of-emails/maildir/bsd/{exim-06.eml → mta-exim-06.eml} +0 -0
  227. data/set-of-emails/maildir/bsd/{exim-07.eml → mta-exim-07.eml} +0 -0
  228. data/set-of-emails/maildir/bsd/{exim-08.eml → mta-exim-08.eml} +0 -0
  229. data/set-of-emails/maildir/bsd/{exim-09.eml → mta-exim-09.eml} +0 -0
  230. data/set-of-emails/maildir/bsd/{exim-10.eml → mta-exim-10.eml} +0 -0
  231. data/set-of-emails/maildir/bsd/{exim-11.eml → mta-exim-11.eml} +0 -0
  232. data/set-of-emails/maildir/bsd/{exim-12.eml → mta-exim-12.eml} +0 -0
  233. data/set-of-emails/maildir/bsd/{exim-13.eml → mta-exim-13.eml} +0 -0
  234. data/set-of-emails/maildir/bsd/{exim-14.eml → mta-exim-14.eml} +0 -0
  235. data/set-of-emails/maildir/bsd/{exim-15.eml → mta-exim-15.eml} +0 -0
  236. data/set-of-emails/maildir/bsd/{exim-16.eml → mta-exim-16.eml} +0 -0
  237. data/set-of-emails/maildir/bsd/{exim-17.eml → mta-exim-17.eml} +0 -0
  238. data/set-of-emails/maildir/bsd/{exim-18.eml → mta-exim-18.eml} +0 -0
  239. data/set-of-emails/maildir/bsd/{exim-19.eml → mta-exim-19.eml} +0 -0
  240. data/set-of-emails/maildir/bsd/{exim-20.eml → mta-exim-20.eml} +0 -0
  241. data/set-of-emails/maildir/bsd/{exim-21.eml → mta-exim-21.eml} +0 -0
  242. data/set-of-emails/maildir/bsd/{exim-22.eml → mta-exim-22.eml} +0 -0
  243. data/set-of-emails/maildir/bsd/{exim-23.eml → mta-exim-23.eml} +0 -0
  244. data/set-of-emails/maildir/bsd/{exim-24.eml → mta-exim-24.eml} +0 -0
  245. data/set-of-emails/maildir/bsd/{exim-25.eml → mta-exim-25.eml} +0 -0
  246. data/set-of-emails/maildir/bsd/{exim-26.eml → mta-exim-26.eml} +0 -0
  247. data/set-of-emails/maildir/bsd/{exim-27.eml → mta-exim-27.eml} +0 -0
  248. data/set-of-emails/maildir/bsd/{exim-28.eml → mta-exim-28.eml} +0 -0
  249. data/set-of-emails/maildir/bsd/{exim-29.eml → mta-exim-29.eml} +0 -0
  250. data/set-of-emails/maildir/bsd/{imailserver-01.eml → mta-imailserver-01.eml} +0 -0
  251. data/set-of-emails/maildir/bsd/{imailserver-02.eml → mta-imailserver-02.eml} +0 -0
  252. data/set-of-emails/maildir/bsd/{imailserver-03.eml → mta-imailserver-03.eml} +0 -0
  253. data/set-of-emails/maildir/bsd/{imailserver-04.eml → mta-imailserver-04.eml} +0 -0
  254. data/set-of-emails/maildir/bsd/{imailserver-05.eml → mta-imailserver-05.eml} +0 -0
  255. data/set-of-emails/maildir/bsd/{imailserver-06.eml → mta-imailserver-06.eml} +0 -0
  256. data/set-of-emails/maildir/bsd/{interscanmss-01.eml → mta-interscanmss-01.eml} +0 -0
  257. data/set-of-emails/maildir/bsd/{interscanmss-02.eml → mta-interscanmss-02.eml} +0 -0
  258. data/set-of-emails/maildir/bsd/{mailfoundry-01.eml → mta-mailfoundry-01.eml} +0 -0
  259. data/set-of-emails/maildir/bsd/{mailfoundry-02.eml → mta-mailfoundry-02.eml} +0 -0
  260. data/set-of-emails/maildir/bsd/{mailmarshalsmtp-01.eml → mta-mailmarshalsmtp-01.eml} +0 -0
  261. data/set-of-emails/maildir/bsd/{mcafee-01.eml → mta-mcafee-01.eml} +0 -0
  262. data/set-of-emails/maildir/bsd/{mcafee-02.eml → mta-mcafee-02.eml} +0 -0
  263. data/set-of-emails/maildir/bsd/{mcafee-03.eml → mta-mcafee-03.eml} +0 -0
  264. data/set-of-emails/maildir/bsd/{messagingserver-01.eml → mta-messagingserver-01.eml} +0 -0
  265. data/set-of-emails/maildir/bsd/{messagingserver-02.eml → mta-messagingserver-02.eml} +0 -0
  266. data/set-of-emails/maildir/bsd/{messagingserver-03.eml → mta-messagingserver-03.eml} +0 -0
  267. data/set-of-emails/maildir/bsd/{messagingserver-04.eml → mta-messagingserver-04.eml} +0 -0
  268. data/set-of-emails/maildir/bsd/{messagingserver-05.eml → mta-messagingserver-05.eml} +0 -0
  269. data/set-of-emails/maildir/bsd/{messagingserver-06.eml → mta-messagingserver-06.eml} +0 -0
  270. data/set-of-emails/maildir/bsd/{messagingserver-07.eml → mta-messagingserver-07.eml} +0 -0
  271. data/set-of-emails/maildir/bsd/{mfilter-01.eml → mta-mfilter-01.eml} +0 -0
  272. data/set-of-emails/maildir/bsd/{mfilter-02.eml → mta-mfilter-02.eml} +0 -0
  273. data/set-of-emails/maildir/bsd/{mfilter-03.eml → mta-mfilter-03.eml} +0 -0
  274. data/set-of-emails/maildir/bsd/{mxlogic-01.eml → mta-mxlogic-01.eml} +0 -0
  275. data/set-of-emails/maildir/bsd/{mxlogic-02.eml → mta-mxlogic-02.eml} +0 -0
  276. data/set-of-emails/maildir/bsd/{mxlogic-03.eml → mta-mxlogic-03.eml} +0 -0
  277. data/set-of-emails/maildir/bsd/{notes-01.eml → mta-notes-01.eml} +0 -0
  278. data/set-of-emails/maildir/bsd/{notes-02.eml → mta-notes-02.eml} +0 -0
  279. data/set-of-emails/maildir/bsd/{notes-03.eml → mta-notes-03.eml} +0 -0
  280. data/set-of-emails/maildir/bsd/{notes-04.eml → mta-notes-04.eml} +0 -0
  281. data/set-of-emails/maildir/bsd/{opensmtpd-01.eml → mta-opensmtpd-01.eml} +0 -0
  282. data/set-of-emails/maildir/bsd/{opensmtpd-02.eml → mta-opensmtpd-02.eml} +0 -0
  283. data/set-of-emails/maildir/bsd/{opensmtpd-03.eml → mta-opensmtpd-03.eml} +0 -0
  284. data/set-of-emails/maildir/bsd/{opensmtpd-04.eml → mta-opensmtpd-04.eml} +0 -0
  285. data/set-of-emails/maildir/bsd/{opensmtpd-05.eml → mta-opensmtpd-05.eml} +0 -0
  286. data/set-of-emails/maildir/bsd/mta-opensmtpd-06.eml +67 -0
  287. data/set-of-emails/maildir/bsd/{postfix-01.eml → mta-postfix-01.eml} +0 -0
  288. data/set-of-emails/maildir/bsd/{postfix-02.eml → mta-postfix-02.eml} +0 -0
  289. data/set-of-emails/maildir/bsd/{postfix-03.eml → mta-postfix-03.eml} +0 -0
  290. data/set-of-emails/maildir/bsd/{postfix-04.eml → mta-postfix-04.eml} +0 -0
  291. data/set-of-emails/maildir/bsd/{postfix-05.eml → mta-postfix-05.eml} +0 -0
  292. data/set-of-emails/maildir/bsd/{postfix-06.eml → mta-postfix-06.eml} +0 -0
  293. data/set-of-emails/maildir/bsd/{postfix-07.eml → mta-postfix-07.eml} +0 -0
  294. data/set-of-emails/maildir/bsd/{postfix-08.eml → mta-postfix-08.eml} +0 -0
  295. data/set-of-emails/maildir/bsd/{postfix-09.eml → mta-postfix-09.eml} +0 -0
  296. data/set-of-emails/maildir/bsd/{postfix-10.eml → mta-postfix-10.eml} +0 -0
  297. data/set-of-emails/maildir/bsd/{postfix-11.eml → mta-postfix-11.eml} +0 -0
  298. data/set-of-emails/maildir/bsd/{postfix-12.eml → mta-postfix-12.eml} +0 -0
  299. data/set-of-emails/maildir/bsd/{postfix-13.eml → mta-postfix-13.eml} +0 -0
  300. data/set-of-emails/maildir/bsd/{postfix-14.eml → mta-postfix-14.eml} +0 -0
  301. data/set-of-emails/maildir/bsd/{postfix-15.eml → mta-postfix-15.eml} +0 -0
  302. data/set-of-emails/maildir/bsd/{postfix-16.eml → mta-postfix-16.eml} +0 -0
  303. data/set-of-emails/maildir/bsd/{postfix-17.eml → mta-postfix-17.eml} +0 -0
  304. data/set-of-emails/maildir/bsd/{postfix-18.eml → mta-postfix-18.eml} +0 -0
  305. data/set-of-emails/maildir/bsd/{postfix-19.eml → mta-postfix-19.eml} +0 -0
  306. data/set-of-emails/maildir/bsd/{postfix-20.eml → mta-postfix-20.eml} +0 -0
  307. data/set-of-emails/maildir/bsd/{postfix-21.eml → mta-postfix-21.eml} +0 -0
  308. data/set-of-emails/maildir/bsd/{postfix-22.eml → mta-postfix-22.eml} +0 -0
  309. data/set-of-emails/maildir/bsd/{postfix-23.eml → mta-postfix-23.eml} +0 -0
  310. data/set-of-emails/maildir/bsd/{postfix-24.eml → mta-postfix-24.eml} +0 -0
  311. data/set-of-emails/maildir/bsd/{postfix-25.eml → mta-postfix-25.eml} +0 -0
  312. data/set-of-emails/maildir/bsd/{postfix-26.eml → mta-postfix-26.eml} +0 -0
  313. data/set-of-emails/maildir/bsd/{postfix-27.eml → mta-postfix-27.eml} +0 -0
  314. data/set-of-emails/maildir/bsd/{qmail-01.eml → mta-qmail-01.eml} +0 -0
  315. data/set-of-emails/maildir/bsd/{qmail-02.eml → mta-qmail-02.eml} +0 -0
  316. data/set-of-emails/maildir/bsd/{qmail-03.eml → mta-qmail-03.eml} +0 -0
  317. data/set-of-emails/maildir/bsd/{qmail-04.eml → mta-qmail-04.eml} +0 -0
  318. data/set-of-emails/maildir/bsd/{qmail-05.eml → mta-qmail-05.eml} +0 -0
  319. data/set-of-emails/maildir/bsd/{qmail-06.eml → mta-qmail-06.eml} +0 -0
  320. data/set-of-emails/maildir/bsd/{qmail-07.eml → mta-qmail-07.eml} +0 -0
  321. data/set-of-emails/maildir/bsd/{qmail-08.eml → mta-qmail-08.eml} +0 -0
  322. data/set-of-emails/maildir/bsd/{qmail-09.eml → mta-qmail-09.eml} +0 -0
  323. data/set-of-emails/maildir/bsd/{qmail-10.eml → mta-qmail-10.eml} +0 -0
  324. data/set-of-emails/maildir/bsd/{qmail-11.eml → mta-qmail-11.eml} +0 -0
  325. data/set-of-emails/maildir/bsd/{qmail-12.eml → mta-qmail-12.eml} +0 -0
  326. data/set-of-emails/maildir/bsd/{sendmail-01.eml → mta-sendmail-01.eml} +0 -0
  327. data/set-of-emails/maildir/bsd/{sendmail-02.eml → mta-sendmail-02.eml} +0 -0
  328. data/set-of-emails/maildir/bsd/{sendmail-03.eml → mta-sendmail-03.eml} +0 -0
  329. data/set-of-emails/maildir/bsd/{sendmail-04.eml → mta-sendmail-04.eml} +0 -0
  330. data/set-of-emails/maildir/bsd/{sendmail-05.eml → mta-sendmail-05.eml} +0 -0
  331. data/set-of-emails/maildir/bsd/{sendmail-06.eml → mta-sendmail-06.eml} +0 -0
  332. data/set-of-emails/maildir/bsd/{sendmail-07.eml → mta-sendmail-07.eml} +0 -0
  333. data/set-of-emails/maildir/bsd/{sendmail-08.eml → mta-sendmail-08.eml} +0 -0
  334. data/set-of-emails/maildir/bsd/{sendmail-09.eml → mta-sendmail-09.eml} +0 -0
  335. data/set-of-emails/maildir/bsd/{sendmail-10.eml → mta-sendmail-10.eml} +0 -0
  336. data/set-of-emails/maildir/bsd/{sendmail-11.eml → mta-sendmail-11.eml} +0 -0
  337. data/set-of-emails/maildir/bsd/{sendmail-12.eml → mta-sendmail-12.eml} +0 -0
  338. data/set-of-emails/maildir/bsd/{sendmail-13.eml → mta-sendmail-13.eml} +0 -0
  339. data/set-of-emails/maildir/bsd/{sendmail-14.eml → mta-sendmail-14.eml} +0 -0
  340. data/set-of-emails/maildir/bsd/{sendmail-15.eml → mta-sendmail-15.eml} +0 -0
  341. data/set-of-emails/maildir/bsd/{sendmail-16.eml → mta-sendmail-16.eml} +0 -0
  342. data/set-of-emails/maildir/bsd/{sendmail-17.eml → mta-sendmail-17.eml} +0 -0
  343. data/set-of-emails/maildir/bsd/{sendmail-18.eml → mta-sendmail-18.eml} +0 -0
  344. data/set-of-emails/maildir/bsd/{sendmail-19.eml → mta-sendmail-19.eml} +0 -0
  345. data/set-of-emails/maildir/bsd/{sendmail-20.eml → mta-sendmail-20.eml} +0 -0
  346. data/set-of-emails/maildir/bsd/{sendmail-21.eml → mta-sendmail-21.eml} +0 -0
  347. data/set-of-emails/maildir/bsd/{sendmail-22.eml → mta-sendmail-22.eml} +0 -0
  348. data/set-of-emails/maildir/bsd/{sendmail-23.eml → mta-sendmail-23.eml} +0 -0
  349. data/set-of-emails/maildir/bsd/{sendmail-24.eml → mta-sendmail-24.eml} +0 -0
  350. data/set-of-emails/maildir/bsd/{sendmail-25.eml → mta-sendmail-25.eml} +0 -0
  351. data/set-of-emails/maildir/bsd/{sendmail-26.eml → mta-sendmail-26.eml} +0 -0
  352. data/set-of-emails/maildir/bsd/{sendmail-27.eml → mta-sendmail-27.eml} +0 -0
  353. data/set-of-emails/maildir/bsd/{sendmail-28.eml → mta-sendmail-28.eml} +0 -0
  354. data/set-of-emails/maildir/bsd/{sendmail-29.eml → mta-sendmail-29.eml} +0 -0
  355. data/set-of-emails/maildir/bsd/{sendmail-30.eml → mta-sendmail-30.eml} +0 -0
  356. data/set-of-emails/maildir/bsd/{sendmail-31.eml → mta-sendmail-31.eml} +0 -0
  357. data/set-of-emails/maildir/bsd/{sendmail-32.eml → mta-sendmail-32.eml} +0 -0
  358. data/set-of-emails/maildir/bsd/{sendmail-33.eml → mta-sendmail-33.eml} +0 -0
  359. data/set-of-emails/maildir/bsd/{sendmail-34.eml → mta-sendmail-34.eml} +0 -0
  360. data/set-of-emails/maildir/bsd/{sendmail-35.eml → mta-sendmail-35.eml} +0 -0
  361. data/set-of-emails/maildir/bsd/{sendmail-36.eml → mta-sendmail-36.eml} +0 -0
  362. data/set-of-emails/maildir/bsd/{sendmail-37.eml → mta-sendmail-37.eml} +0 -0
  363. data/set-of-emails/maildir/bsd/{sendmail-38.eml → mta-sendmail-38.eml} +0 -0
  364. data/set-of-emails/maildir/bsd/{sendmail-39.eml → mta-sendmail-39.eml} +0 -0
  365. data/set-of-emails/maildir/bsd/{sendmail-40.eml → mta-sendmail-40.eml} +0 -0
  366. data/set-of-emails/maildir/bsd/{sendmail-41.eml → mta-sendmail-41.eml} +0 -0
  367. data/set-of-emails/maildir/bsd/mta-sendmail-42.eml +64 -0
  368. data/set-of-emails/maildir/bsd/{surfcontrol-01.eml → mta-surfcontrol-01.eml} +0 -0
  369. data/set-of-emails/maildir/bsd/{surfcontrol-02.eml → mta-surfcontrol-02.eml} +0 -0
  370. data/set-of-emails/maildir/bsd/{surfcontrol-03.eml → mta-surfcontrol-03.eml} +0 -0
  371. data/set-of-emails/maildir/bsd/{v5sendmail-01.eml → mta-v5sendmail-01.eml} +0 -0
  372. data/set-of-emails/maildir/bsd/{v5sendmail-02.eml → mta-v5sendmail-02.eml} +0 -0
  373. data/set-of-emails/maildir/bsd/{v5sendmail-03.eml → mta-v5sendmail-03.eml} +0 -0
  374. data/set-of-emails/maildir/bsd/{v5sendmail-04.eml → mta-v5sendmail-04.eml} +0 -0
  375. data/set-of-emails/maildir/bsd/{v5sendmail-05.eml → mta-v5sendmail-05.eml} +0 -0
  376. data/set-of-emails/maildir/bsd/{v5sendmail-06.eml → mta-v5sendmail-06.eml} +0 -0
  377. data/set-of-emails/maildir/bsd/{v5sendmail-07.eml → mta-v5sendmail-07.eml} +0 -0
  378. data/set-of-emails/maildir/bsd/{x1-01.eml → mta-x1-01.eml} +0 -0
  379. data/set-of-emails/maildir/bsd/{x1-02.eml → mta-x1-02.eml} +0 -0
  380. data/set-of-emails/maildir/bsd/{x2-01.eml → mta-x2-01.eml} +0 -0
  381. data/set-of-emails/maildir/bsd/{x2-02.eml → mta-x2-02.eml} +0 -0
  382. data/set-of-emails/maildir/bsd/{x2-03.eml → mta-x2-03.eml} +0 -0
  383. data/set-of-emails/maildir/bsd/{x2-04.eml → mta-x2-04.eml} +0 -0
  384. data/set-of-emails/maildir/bsd/{x2-05.eml → mta-x2-05.eml} +0 -0
  385. data/set-of-emails/maildir/bsd/{x3-01.eml → mta-x3-01.eml} +0 -0
  386. data/set-of-emails/maildir/bsd/{x3-02.eml → mta-x3-02.eml} +0 -0
  387. data/set-of-emails/maildir/bsd/{x3-03.eml → mta-x3-03.eml} +0 -0
  388. data/set-of-emails/maildir/bsd/{x3-04.eml → mta-x3-04.eml} +0 -0
  389. data/set-of-emails/maildir/bsd/{x4-01.eml → mta-x4-01.eml} +0 -0
  390. data/set-of-emails/maildir/bsd/{x4-02.eml → mta-x4-02.eml} +0 -0
  391. data/set-of-emails/maildir/bsd/{x4-03.eml → mta-x4-03.eml} +0 -0
  392. data/set-of-emails/maildir/bsd/{x4-04.eml → mta-x4-04.eml} +0 -0
  393. data/set-of-emails/maildir/bsd/{x4-05.eml → mta-x4-05.eml} +0 -0
  394. data/set-of-emails/maildir/bsd/{x4-06.eml → mta-x4-06.eml} +0 -0
  395. data/set-of-emails/maildir/bsd/{x4-07.eml → mta-x4-07.eml} +0 -0
  396. data/set-of-emails/maildir/bsd/{x5-01.eml → mta-x5-01.eml} +0 -0
  397. data/set-of-emails/maildir/bsd/{exchange-online-01.eml → rhost-exchange-online-01.eml} +0 -0
  398. data/set-of-emails/maildir/bsd/{google-apps-01.eml → rhost-google-apps-01.eml} +0 -0
  399. data/set-of-emails/maildir/dos/ced-us-amazonses-01.eml +47 -0
  400. data/set-of-emails/maildir/dos/{de-einsundeins-01.eml → msp-de-einsundeins-01.eml} +0 -0
  401. data/set-of-emails/maildir/dos/{de-gmx-01.eml → msp-de-gmx-01.eml} +0 -0
  402. data/set-of-emails/maildir/dos/{jp-biglobe-01.eml → msp-jp-biglobe-01.eml} +0 -0
  403. data/set-of-emails/maildir/dos/{jp-ezweb-01.eml → msp-jp-ezweb-01.eml} +0 -0
  404. data/set-of-emails/maildir/dos/{jp-kddi-01.eml → msp-jp-kddi-01.eml} +0 -0
  405. data/set-of-emails/maildir/dos/{ru-mailru-01.eml → msp-ru-mailru-01.eml} +0 -0
  406. data/set-of-emails/maildir/dos/{ru-yandex-01.eml → msp-ru-yandex-01.eml} +0 -0
  407. data/set-of-emails/maildir/dos/{uk-messagelabs-01.eml → msp-uk-messagelabs-01.eml} +0 -0
  408. data/set-of-emails/maildir/dos/{us-amazonses-01.eml → msp-us-amazonses-01.eml} +0 -0
  409. data/set-of-emails/maildir/dos/{us-amazonworkmail-01.eml → msp-us-amazonworkmail-01.eml} +0 -0
  410. data/set-of-emails/maildir/dos/{us-aol-01.eml → msp-us-aol-01.eml} +0 -0
  411. data/set-of-emails/maildir/dos/{us-bigfoot-01.eml → msp-us-bigfoot-01.eml} +0 -0
  412. data/set-of-emails/maildir/dos/{us-facebook-01.eml → msp-us-facebook-01.eml} +0 -0
  413. data/set-of-emails/maildir/dos/{us-google-01.eml → msp-us-google-01.eml} +0 -0
  414. data/set-of-emails/maildir/dos/{us-office365-01.eml → msp-us-office365-01.eml} +0 -0
  415. data/set-of-emails/maildir/dos/{us-outlook-01.eml → msp-us-outlook-01.eml} +0 -0
  416. data/set-of-emails/maildir/dos/{us-receivingses-01.eml → msp-us-receivingses-01.eml} +0 -0
  417. data/set-of-emails/maildir/dos/{us-sendgrid-01.eml → msp-us-sendgrid-01.eml} +0 -0
  418. data/set-of-emails/maildir/dos/{us-verizon-01.eml → msp-us-verizon-01.eml} +0 -0
  419. data/set-of-emails/maildir/dos/{us-yahoo-01.eml → msp-us-yahoo-01.eml} +0 -0
  420. data/set-of-emails/maildir/dos/{us-zoho-01.eml → msp-us-zoho-01.eml} +0 -0
  421. data/set-of-emails/maildir/dos/{activehunter-01.eml → mta-activehunter-01.eml} +0 -0
  422. data/set-of-emails/maildir/dos/{apachejames-01.eml → mta-apachejames-01.eml} +0 -0
  423. data/set-of-emails/maildir/dos/{courier-01.eml → mta-courier-01.eml} +0 -0
  424. data/set-of-emails/maildir/dos/{domino-01.eml → mta-domino-01.eml} +0 -0
  425. data/set-of-emails/maildir/dos/{exchange-01.eml → mta-exchange-01.eml} +0 -0
  426. data/set-of-emails/maildir/dos/{exchange2003-01.eml → mta-exchange2003-01.eml} +0 -0
  427. data/set-of-emails/maildir/dos/{exchange2007-01.eml → mta-exchange2007-01.eml} +0 -0
  428. data/set-of-emails/maildir/dos/{exim-01.eml → mta-exim-01.eml} +0 -0
  429. data/set-of-emails/maildir/dos/{imailserver-01.eml → mta-imailserver-01.eml} +0 -0
  430. data/set-of-emails/maildir/dos/{interscanmss-01.eml → mta-interscanmss-01.eml} +0 -0
  431. data/set-of-emails/maildir/dos/{mailfoundry-01.eml → mta-mailfoundry-01.eml} +0 -0
  432. data/set-of-emails/maildir/dos/{mailmarshalsmtp-01.eml → mta-mailmarshalsmtp-01.eml} +0 -0
  433. data/set-of-emails/maildir/dos/{mcafee-01.eml → mta-mcafee-01.eml} +0 -0
  434. data/set-of-emails/maildir/dos/{messagingserver-01.eml → mta-messagingserver-01.eml} +0 -0
  435. data/set-of-emails/maildir/dos/{mfilter-01.eml → mta-mfilter-01.eml} +0 -0
  436. data/set-of-emails/maildir/dos/{mxlogic-01.eml → mta-mxlogic-01.eml} +0 -0
  437. data/set-of-emails/maildir/dos/{notes-01.eml → mta-notes-01.eml} +0 -0
  438. data/set-of-emails/maildir/dos/{opensmtpd-01.eml → mta-opensmtpd-01.eml} +0 -0
  439. data/set-of-emails/maildir/dos/{postfix-01.eml → mta-postfix-01.eml} +0 -0
  440. data/set-of-emails/maildir/dos/{qmail-01.eml → mta-qmail-01.eml} +0 -0
  441. data/set-of-emails/maildir/dos/{sendmail-01.eml → mta-sendmail-01.eml} +0 -0
  442. data/set-of-emails/maildir/dos/{surfcontrol-01.eml → mta-surfcontrol-01.eml} +0 -0
  443. data/set-of-emails/maildir/dos/{v5sendmail-01.eml → mta-v5sendmail-01.eml} +0 -0
  444. data/set-of-emails/maildir/dos/{x1-01.eml → mta-x1-01.eml} +0 -0
  445. data/set-of-emails/maildir/dos/{x2-01.eml → mta-x2-01.eml} +0 -0
  446. data/set-of-emails/maildir/dos/{x3-01.eml → mta-x3-01.eml} +0 -0
  447. data/set-of-emails/maildir/dos/{x4-01.eml → mta-x4-01.eml} +0 -0
  448. data/set-of-emails/maildir/dos/{x5-01.eml → mta-x5-01.eml} +0 -0
  449. data/set-of-emails/maildir/dos/{exchange-online-01.eml → rhost-exchange-online-01.eml} +0 -0
  450. data/set-of-emails/maildir/dos/{google-apps-01.eml → rhost-google-apps-01.eml} +0 -0
  451. data/set-of-emails/maildir/mac/ced-us-amazonses-01.eml +1 -1
  452. data/set-of-emails/maildir/mac/{de-einsundeins-01.eml → msp-de-einsundeins-01.eml} +0 -0
  453. data/set-of-emails/maildir/mac/{de-gmx-01.eml → msp-de-gmx-01.eml} +0 -0
  454. data/set-of-emails/maildir/mac/{jp-biglobe-01.eml → msp-jp-biglobe-01.eml} +0 -0
  455. data/set-of-emails/maildir/mac/{jp-ezweb-01.eml → msp-jp-ezweb-01.eml} +0 -0
  456. data/set-of-emails/maildir/mac/{jp-kddi-01.eml → msp-jp-kddi-01.eml} +0 -0
  457. data/set-of-emails/maildir/mac/{ru-mailru-01.eml → msp-ru-mailru-01.eml} +0 -0
  458. data/set-of-emails/maildir/mac/{ru-yandex-01.eml → msp-ru-yandex-01.eml} +0 -0
  459. data/set-of-emails/maildir/mac/{uk-messagelabs-01.eml → msp-uk-messagelabs-01.eml} +0 -0
  460. data/set-of-emails/maildir/mac/{us-amazonses-01.eml → msp-us-amazonses-01.eml} +0 -0
  461. data/set-of-emails/maildir/mac/{us-amazonworkmail-01.eml → msp-us-amazonworkmail-01.eml} +0 -0
  462. data/set-of-emails/maildir/mac/{us-aol-01.eml → msp-us-aol-01.eml} +0 -0
  463. data/set-of-emails/maildir/mac/{us-bigfoot-01.eml → msp-us-bigfoot-01.eml} +0 -0
  464. data/set-of-emails/maildir/mac/{us-facebook-01.eml → msp-us-facebook-01.eml} +0 -0
  465. data/set-of-emails/maildir/mac/{us-google-01.eml → msp-us-google-01.eml} +0 -0
  466. data/set-of-emails/maildir/mac/{us-office365-01.eml → msp-us-office365-01.eml} +0 -0
  467. data/set-of-emails/maildir/mac/{us-outlook-01.eml → msp-us-outlook-01.eml} +0 -0
  468. data/set-of-emails/maildir/mac/{us-receivingses-01.eml → msp-us-receivingses-01.eml} +0 -0
  469. data/set-of-emails/maildir/mac/{us-sendgrid-01.eml → msp-us-sendgrid-01.eml} +0 -0
  470. data/set-of-emails/maildir/mac/{us-verizon-01.eml → msp-us-verizon-01.eml} +0 -0
  471. data/set-of-emails/maildir/mac/{us-yahoo-01.eml → msp-us-yahoo-01.eml} +0 -0
  472. data/set-of-emails/maildir/mac/{us-zoho-01.eml → msp-us-zoho-01.eml} +0 -0
  473. data/set-of-emails/maildir/mac/{activehunter-01.eml → mta-activehunter-01.eml} +0 -0
  474. data/set-of-emails/maildir/mac/{apachejames-01.eml → mta-apachejames-01.eml} +0 -0
  475. data/set-of-emails/maildir/mac/{courier-01.eml → mta-courier-01.eml} +0 -0
  476. data/set-of-emails/maildir/mac/{domino-01.eml → mta-domino-01.eml} +0 -0
  477. data/set-of-emails/maildir/mac/{exchange-01.eml → mta-exchange-01.eml} +0 -0
  478. data/set-of-emails/maildir/mac/{exchange2003-01.eml → mta-exchange2003-01.eml} +0 -0
  479. data/set-of-emails/maildir/mac/{exchange2007-01.eml → mta-exchange2007-01.eml} +0 -0
  480. data/set-of-emails/maildir/mac/{exim-01.eml → mta-exim-01.eml} +0 -0
  481. data/set-of-emails/maildir/mac/{imailserver-01.eml → mta-imailserver-01.eml} +0 -0
  482. data/set-of-emails/maildir/mac/{interscanmss-01.eml → mta-interscanmss-01.eml} +0 -0
  483. data/set-of-emails/maildir/mac/{mailfoundry-01.eml → mta-mailfoundry-01.eml} +0 -0
  484. data/set-of-emails/maildir/mac/{mailmarshalsmtp-01.eml → mta-mailmarshalsmtp-01.eml} +0 -0
  485. data/set-of-emails/maildir/mac/{mcafee-01.eml → mta-mcafee-01.eml} +0 -0
  486. data/set-of-emails/maildir/mac/{messagingserver-01.eml → mta-messagingserver-01.eml} +0 -0
  487. data/set-of-emails/maildir/mac/{mfilter-01.eml → mta-mfilter-01.eml} +0 -0
  488. data/set-of-emails/maildir/mac/{mxlogic-01.eml → mta-mxlogic-01.eml} +0 -0
  489. data/set-of-emails/maildir/mac/{notes-01.eml → mta-notes-01.eml} +0 -0
  490. data/set-of-emails/maildir/mac/{opensmtpd-01.eml → mta-opensmtpd-01.eml} +0 -0
  491. data/set-of-emails/maildir/mac/{postfix-01.eml → mta-postfix-01.eml} +0 -0
  492. data/set-of-emails/maildir/mac/{qmail-01.eml → mta-qmail-01.eml} +0 -0
  493. data/set-of-emails/maildir/mac/{sendmail-01.eml → mta-sendmail-01.eml} +0 -0
  494. data/set-of-emails/maildir/mac/{surfcontrol-01.eml → mta-surfcontrol-01.eml} +0 -0
  495. data/set-of-emails/maildir/mac/{v5sendmail-01.eml → mta-v5sendmail-01.eml} +0 -0
  496. data/set-of-emails/maildir/mac/{x1-01.eml → mta-x1-01.eml} +0 -0
  497. data/set-of-emails/maildir/mac/{x2-01.eml → mta-x2-01.eml} +0 -0
  498. data/set-of-emails/maildir/mac/{x3-01.eml → mta-x3-01.eml} +0 -0
  499. data/set-of-emails/maildir/mac/{x4-01.eml → mta-x4-01.eml} +0 -0
  500. data/set-of-emails/maildir/mac/{x5-01.eml → mta-x5-01.eml} +0 -0
  501. data/set-of-emails/maildir/mac/{exchange-online-01.eml → rhost-exchange-online-01.eml} +0 -0
  502. data/set-of-emails/maildir/mac/{google-apps-01.eml → rhost-google-apps-01.eml} +0 -0
  503. metadata +425 -390
@@ -77,6 +77,7 @@ module Sisimai
77
77
  # Rewrite <a> elements
78
78
  # 1. <a href = 'http://...'>...</a> to " http://... "
79
79
  # 2. <a href = 'mailto:...'>...</a> to " Value <mailto:...> "
80
+ plain = plain.scrub('?')
80
81
  plain = plain.gsub(%r|<a\s+href\s*=\s*['"](https?://.+?)['"].*?>(.*?)</a>|i, '[\2](\1)')
81
82
  plain = plain.gsub(%r|<a\s+href\s*=\s*["']mailto:([^\s]+?)["']>(.*?)</a>|i, '[\2](mailto:\1)')
82
83
 
@@ -1,4 +1,4 @@
1
1
  # Define the version number of Sisimai
2
2
  module Sisimai
3
- VERSION = '4.19.0'
3
+ VERSION = '4.20.0'
4
4
  end
@@ -0,0 +1 @@
1
+ {"notificationType":"Bounce","bounce":{"bounceType":"Permanent","bounceSubType":"General","bouncedRecipients":[{"emailAddress":"bounce@simulator.amazonses.com","action":"failed","status":"5.1.1","diagnosticCode":"smtp; 550 5.1.1 user unknown"}],"timestamp":"2016-10-21T00:06:40.502Z","feedbackId":"01010157e48fa03f-c7e948fe-3c34-403e-b681-02a497797067-000000","reportingMTA":"dsn; a27-23.smtp-out.us-west-2.amazonses.com"},"mail":{"timestamp":"2016-10-21T00:06:39.000Z","source":"kijitora@neko.example.org","sourceArn":"arn:aws:ses:us-west-2:123456789012:identity/kijitora@neko.example.org","sendingAccountId":"123456789012","messageId":"01010157e48f9b9b-891e9a0e-9c9d-4773-9bfe-608f2ef4756d-000000","destination":["bounce@simulator.amazonses.com"],"headersTruncated":false,"headers":[{"name":"From","value":"kijitora@neko.example.org"},{"name":"To","value":"bounce@simulator.amazonses.com"},{"name":"Subject","value":"nyaan"},{"name":"MIME-Version","value":"1.0"},{"name":"Content-Type","value":"text/plain; charset=UTF-8"},{"name":"Content-Transfer-Encoding","value":"base64"}],"commonHeaders":{"from":["kijitora@neko.example.org"],"to":["bounce@simulator.amazonses.com"],"subject":"nyaan"}}}
@@ -0,0 +1,11 @@
1
+ {
2
+ "Type" : "Notification",
3
+ "MessageId" : "02f86d9b-eecf-573d-b47d-3d1850750c30",
4
+ "TopicArn" : "arn:aws:sns:us-west-2:123456789012:SES-EJ-B",
5
+ "Message" : "{\"notificationType\":\"Bounce\",\"bounce\":{\"bounceType\":\"Permanent\",\"bounceSubType\":\"General\",\"bouncedRecipients\":[{\"emailAddress\":\"bounce@simulator.amazonses.com\",\"action\":\"failed\",\"status\":\"5.1.1\",\"diagnosticCode\":\"smtp; 550 5.1.1 user unknown\"}],\"timestamp\":\"2016-10-21T06:58:02.245Z\",\"feedbackId\":\"01010157e6083d17-38cf01f3-852d-4401-8e8a-84e67a3e51d8-000000\",\"reportingMTA\":\"dsn; a27-33.smtp-out.us-west-2.amazonses.com\"},\"mail\":{\"timestamp\":\"2016-10-21T06:58:00.000Z\",\"source\":\"kijitora@neko.example.org\",\"sourceArn\":\"arn:aws:ses:us-west-2:123456789012:identity/kijitora@neko.example.org\",\"sendingAccountId\":\"123456789012\",\"messageId\":\"01010157e6083857-2c73eed0-71f8-47d1-ab77-c4646f9d776d-000000\",\"destination\":[\"bounce@simulator.amazonses.com\"],\"headersTruncated\":false,\"headers\":[{\"name\":\"From\",\"value\":\"kijitora@neko.example.org\"},{\"name\":\"To\",\"value\":\"bounce@simulator.amazonses.com\"},{\"name\":\"Subject\",\"value\":\"Nyaaan\"},{\"name\":\"MIME-Version\",\"value\":\"1.0\"},{\"name\":\"Content-Type\",\"value\":\"text/plain; charset=UTF-8\"},{\"name\":\"Content-Transfer-Encoding\",\"value\":\"base64\"}],\"commonHeaders\":{\"from\":[\"kijitora@neko.example.org\"],\"to\":[\"bounce@simulator.amazonses.com\"],\"subject\":\"Nyaaan\"}}}",
6
+ "Timestamp" : "2016-10-21T06:58:02.294Z",
7
+ "SignatureVersion" : "1",
8
+ "Signature" : "C8prgK1poqge9QGVsmEejcVIWCDZGtQ92c1VFywS0ZbpWFJi28y9BEKhjopGdy2PtZ8llYeksStsgqcWbwVrHIEeIhVSRBexI46uYPxP9isUQxbhmc1TjcPefDHyc2/blYA5Xi4RYgRu257s/XEPb/7eC2nmjjtjfhbOMwJVKv9yaOKAIXOgQaRTUZgXN3zgWHgMWxNaaWGM/I1qQTqdDakq9kWAsVwDo9+KJlmMWtIIEywZ8ut9GkHGJFdoWcdhubDUuFlaVlcQpyVqP9wsU6KtvurSl0KLMq0+IQVFBo3/BKt8RxwDvgl3b1MTq5xdhLtiYO6Ldlrmn3kElF2pOw==",
9
+ "SigningCertURL" : "https://sns.us-west-2.amazonaws.com/SimpleNotificationService-b95095beb82e8f6a046b3aafc7f4149a.pem",
10
+ "UnsubscribeURL" : "https://sns.us-west-2.amazonaws.com/?Action=Unsubscribe&SubscriptionArn=arn:aws:sns:us-west-2:123456789012:SES-EJ-B:c4b92a6d-5e69-49cf-bf38-b4c9ebb70972"
11
+ }
@@ -0,0 +1 @@
1
+ {"notificationType":"Complaint","complaint":{"complainedRecipients":[{"emailAddress":"complaint@simulator.amazonses.com"}],"timestamp":"2016-11-25T01:49:01.000Z","feedbackId":"01010158992bed93-5747af89-b2b1-11e6-be59-ed91bcff66c4-000000","userAgent":"Amazon SES Mailbox Simulator","complaintFeedbackType":"abuse"},"mail":{"timestamp":"2016-11-25T01:49:02.811Z","source":"kijitora@neko.example.jp","sourceArn":"arn:aws:ses:us-west-2:123456789012:identity/kijitora@neko.example.jp","sendingAccountId":"123456789012","messageId":"01010158992bd11e-d46429af-0ec9-4aaf-8503-6f7ca5832ca2-000000","destination":["complaint@simulator.amazonses.com"],"headersTruncated":false,"headers":[{"name":"From","value":"kijitora@neko.example.jp"},{"name":"To","value":"complaint@simulator.amazonses.com"},{"name":"Subject","value":"Nyaan"},{"name":"MIME-Version","value":"1.0"},{"name":"Content-Type","value":"text/plain; charset=UTF-8"},{"name":"Content-Transfer-Encoding","value":"7bit"}],"commonHeaders":{"from":["kijitora@neko.example.jp"],"to":["complaint@simulator.amazonses.com"],"subject":"Nyaan"}}}
@@ -0,0 +1 @@
1
+ {"notificationType":"Delivery","mail":{"timestamp":"2016-11-23T12:00:59.530Z","source":"kijitora@neko.example.jp","sourceArn":"arn:aws:ses:us-west-2:123456789012:identity/kijitora@neko.example.jp","sendingAccountId":"123456789012","messageId":"01010158910f768a-98f33ad0-6366-4b78-86e7-1048b5d7d519-000000","destination":["success@simulator.amazonses.com"],"headersTruncated":false,"headers":[{"name":"From","value":"kijitora@neko.example.jp"},{"name":"To","value":"success@simulator.amazonses.com"},{"name":"Subject","value":"Nyaan"},{"name":"MIME-Version","value":"1.0"},{"name":"Content-Type","value":"text/plain; charset=UTF-8"},{"name":"Content-Transfer-Encoding","value":"base64"}],"commonHeaders":{"from":["kijitora@neko.example.jp"],"to":["success@simulator.amazonses.com"],"subject":"Nyaan"}},"delivery":{"timestamp":"2016-11-23T12:01:03.512Z","processingTimeMillis":3982,"recipients":["success@simulator.amazonses.com"],"smtpResponse":"250 2.6.0 Message received","reportingMTA":"a27-29.smtp-out.us-west-2.amazonses.com"}}
@@ -0,0 +1 @@
1
+ {"notificationType":"Delivery","mail":{"timestamp":"2016-11-25T01:48:55.454Z","source":"kijitora@neko.example.jp","sourceArn":"arn:aws:ses:us-west-2:123456789012:identity/kijitora@neko.example.jp","sendingAccountId":"123456789012","messageId":"01010158992bd11e-d46429af-0ec9-4aaf-8503-6f7ca5832ca2-000000","destination":["complaint@simulator.amazonses.com"],"headersTruncated":false,"headers":[{"name":"From","value":"kijitora@neko.example.jp"},{"name":"To","value":"complaint@simulator.amazonses.com"},{"name":"Subject","value":"Nyaan"},{"name":"MIME-Version","value":"1.0"},{"name":"Content-Type","value":"text/plain; charset=UTF-8"},{"name":"Content-Transfer-Encoding","value":"7bit"}],"commonHeaders":{"from":["kijitora@neko.example.jp"],"to":["complaint@simulator.amazonses.com"],"subject":"Nyaan"}},"delivery":{"timestamp":"2016-11-25T01:49:01.207Z","processingTimeMillis":5753,"recipients":["complaint@simulator.amazonses.com"],"smtpResponse":"250 2.6.0 Message received","reportingMTA":"a27-33.smtp-out.us-west-2.amazonses.com"}}
@@ -0,0 +1 @@
1
+ [{"status": "550", "created": "2011-10-08 12:32:14", "reason": "550 Unknown user kijitora@example.ne.jp ", "email": "kijitora@example.ne.jp"}]
@@ -0,0 +1 @@
1
+ [{"status": "550", "created": "2011-10-08 12:39:14", "reason": "550 Unknown user kijitora@example.ne.jp ", "email": "kijitora@example.ne.jp"},{"status": "5.2.2", "created": "2011-10-08 13:57:43", "reason": "550 5.2.2 <kijitora@example.co.jp>... Mailbox Full ", "email": "kijitora@example.co.jp"}]
@@ -0,0 +1 @@
1
+ [{"status": "5.1.1", "created": "2011-10-08 14:05:44", "reason": "550 5.1.1 The email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at http://mail.google.com/support/bin/answer.py?answer=6596 s21si9740701yhn.23 ", "email": "kijitora@example.com"}]
@@ -0,0 +1 @@
1
+ [{"status": "554", "created": "2011-10-08 14:05:44", "reason": "554 delivery error: dd This user doesn't have a yahoo.com account (kijitora@kijitora.com) [0] - mta1300.mail.mud.yahoo.com ", "email": "kijitora@example.com"}]
@@ -0,0 +1 @@
1
+ [{"status": "550", "created": "2012-06-14 21:47:52", "reason": "550 Invalid recipient: <kijitora@example.ne.jp> ", "email": "kijitora@example.ne.jp"}]
@@ -0,0 +1 @@
1
+ [{"status": "5.1.1", "created": "2012-10-31 18:46:53", "reason": "550 5.1.1 <kijitora@example.co.jp>... User Unknown ", "email": "kijitora@example.co.jp"}]
@@ -0,0 +1 @@
1
+ [{"status": "5.2.1", "created": "2013-07-06 03:31:31", "reason": "550 5.2.1 <mikeneko@example.co.jp>... User Unknown ", "email": "mikeneko@example.co.jp"}]
@@ -0,0 +1 @@
1
+ [{"status": "5.1.1", "created": "2013-07-06 03:32:22", "reason": "550 5.1.1 <sironeko@nyaan.example.jp>... User unknown ", "email": "sironeko@nyaan.example.jp"}]
@@ -0,0 +1 @@
1
+ [{"status": "5.1.1", "created": "2013-07-06 13:03:39", "reason": "550 5.1.1 <kijitora@nyaan.example.jp>... User unknown ", "email": "kijitora@nyaan.example.jp"}]
@@ -0,0 +1 @@
1
+ [{"status": "5.1.1", "created": "2013-07-06 13:03:55", "reason": "550 5.1.1 <kijitora@nyaan.example.jp>... User unknown ", "email": "kijitora@nyaan.example.jp"}]
@@ -0,0 +1 @@
1
+ [{"reason": "Mail domain mentioned in email address is unknown", "created": "2013-06-25 18:41:03", "email": "neko@neko"},{"reason": "Mail domain mentioned in email address is unknown", "created": "2013-06-25 18:41:03", "email": "kijitora@neko"},{"reason": "Mail domain mentioned in email address is unknown", "created": "2013-07-06 03:23:24", "email": "sironeko@example.invalid"}]
@@ -13,173 +13,173 @@ Sisimai::ARF
13
13
 
14
14
  Sisimai::MTA::Exchange2003
15
15
  --------------------------
16
- * exchange-06.eml
16
+ * mta-exchange-06.eml
17
17
  * mailman-2.1.15/tests/bounces/groupwise_01.txt
18
18
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
19
19
 
20
20
  Sisimai::MTA::Exchange2007
21
21
  --------------------------
22
- * exchange2007-02.eml
22
+ * mta-exchange2007-02.eml
23
23
  * [message-too-large.msg](https://github.com/rjbs/Mail-DeliveryStatus-BounceParser/blob/master/t/corpus/message-too-large.msg)
24
24
  * Copyright (C) 2003-2006 IC Group, Inc. | GPLv2
25
25
 
26
- * exchange2007-03.eml
26
+ * mta-exchange2007-03.eml
27
27
  * https://github.com/LoneStarInternet/mail_manager/tree/master/spec/test_app/spec/support/files/bounce-mail-box-full.txt
28
28
  * Copyright (c) 2015 Lone Star Internet, Inc. | MIT
29
29
 
30
30
  Sisimai::MTA::Exim
31
31
  ------------------
32
- * exim-09.eml
32
+ * mta-exim-09.eml
33
33
  * [13.eml](https://github.com/prasad83/node-bounce-handler/blob/master/eml/13.eml)
34
34
  * Copyright (c) 2014 prasad83 | The MIT License
35
35
 
36
- * exim-10.eml
36
+ * mta-exim-10.eml
37
37
  * [34.eml](https://github.com/prasad83/node-bounce-handler/blob/master/eml/34.eml)
38
38
  * Copyright (c) 2014 prasad83 | The MIT License
39
39
 
40
- * exim-11.eml
40
+ * mta-exim-11.eml
41
41
  * [44.eml](https://github.com/prasad83/node-bounce-handler/blob/master/eml/44.eml)
42
42
  * Copyright (c) 2014 prasad83 | The MIT License
43
43
 
44
- * exim-12.eml
44
+ * mta-exim-12.eml
45
45
  * [0224.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0224.CALLER)
46
46
  * Copyright (c) 1995 - 2012 University of Cambridge.
47
47
 
48
- * exim-13.eml
48
+ * mta-exim-13.eml
49
49
  * [0237.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0237.CALLER)
50
50
  * Copyright (c) 1995 - 2012 University of Cambridge.
51
51
 
52
- * exim-14.eml
52
+ * mta-exim-14.eml
53
53
  * [9001.CALLER](https://github.com/Exim/exim/blob/master/test/mail/9001.CALLER)
54
54
  * Copyright (c) 1995 - 2012 University of Cambridge.
55
55
 
56
- * exim-15.eml
56
+ * mta-exim-15.eml
57
57
  * [0536.oksender](https://github.com/Exim/exim/blob/master/test/mail/0536.oksender)
58
58
  * Copyright (c) 1995 - 2012 University of Cambridge.
59
59
 
60
- * exim-16.eml
60
+ * mta-exim-16.eml
61
61
  * [0522.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0522.CALLER)
62
62
  * Copyright (c) 1995 - 2012 University of Cambridge.
63
63
 
64
- * exim-17.eml
64
+ * mta-exim-17.eml
65
65
  * [0310.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0310.CALLER)
66
66
  * Copyright (c) 1995 - 2012 University of Cambridge.
67
67
 
68
- * exim-18.eml
68
+ * mta-exim-18.eml
69
69
  * [0280.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0280.CALLER)
70
70
  * Copyright (c) 1995 - 2012 University of Cambridge.
71
71
 
72
- * exim-19.eml
72
+ * mta-exim-19.eml
73
73
  * [0174.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0174.CALLER)
74
74
  * Copyright (c) 1995 - 2012 University of Cambridge.
75
75
 
76
- * exim-20.eml
76
+ * mta-exim-20.eml
77
77
  * [0531.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0531.CALLER)
78
78
  * Copyright (c) 1995 - 2012 University of Cambridge.
79
79
 
80
- * exim-21.eml
80
+ * mta-exim-21.eml
81
81
  * [0461.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0461.CALLER)
82
82
  * Copyright (c) 1995 - 2012 University of Cambridge.
83
83
 
84
- * exim-22.eml
84
+ * mta-exim-22.eml
85
85
  * [0321.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0321.CALLER)
86
86
  * Copyright (c) 1995 - 2012 University of Cambridge.
87
87
 
88
- * exim-23.eml
88
+ * mta-exim-23.eml
89
89
  * [0253.lmn](https://github.com/Exim/exim/blob/master/test/mail/0253.lmn)
90
90
  * Copyright (c) 1995 - 2012 University of Cambridge.
91
91
 
92
- * exim-24.eml
92
+ * mta-exim-24.eml
93
93
  * [0136.forwarder](https://github.com/Exim/exim/blob/master/test/mail/0136.forwarder)
94
94
  * Copyright (c) 1995 - 2012 University of Cambridge.
95
95
 
96
- * exim-25.eml
96
+ * mta-exim-25.eml
97
97
  * [0233.me](https://github.com/Exim/exim/blob/master/test/mail/0233.me)
98
98
  * Copyright (c) 1995 - 2012 University of Cambridge.
99
99
 
100
- * exim-26.eml
100
+ * mta-exim-26.eml
101
101
  * [0015.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0015.CALLER)
102
102
  * Copyright (c) 1995 - 2012 University of Cambridge.
103
103
 
104
- * exim-27.eml
104
+ * mta-exim-27.eml
105
105
  * [0211.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0211.CALLER)
106
106
  * Copyright (c) 1995 - 2012 University of Cambridge.
107
107
 
108
- * exim-28.eml
108
+ * mta-exim-28.eml
109
109
  * [0226.CALLER](https://github.com/Exim/exim/blob/master/test/mail/0226.CALLER)
110
110
  * Copyright (c) 1995 - 2012 University of Cambridge.
111
111
 
112
112
  Sisimai::MTA::IMailServer
113
113
  -------------------------
114
- * imailserver-05.eml
114
+ * mta-imailserver-05.eml
115
115
  * mailman-2.1.15/tests/bounces/smtp32_03.txt
116
116
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
117
117
 
118
118
  Sisimai::MTA::InterScanMSS
119
119
  --------------------------
120
- * interscanmss-02.eml
120
+ * mta-interscanmss-02.eml
121
121
  * mailman-2.1.15/tests/bounces/simple_15.txt
122
122
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
123
123
 
124
124
  Sisimai::MTA::Notes
125
125
  -------------------
126
- * notes-04.eml
126
+ * mta-notes-04.eml
127
127
  * [msg00154.html](http://osdir.com/ml/org.telecom.india-gii/2003-02/msg00154.html)
128
128
  * Copyrighted (c) 2000-2015, but we're happy to let you use what you wish with attribution. OSDir.com
129
129
 
130
130
  Sisimai::MTA::Postfix
131
131
  ---------------------
132
- * postfix-18.eml
132
+ * mta-postfix-18.eml
133
133
  * [relay_failed.eml](https://github.com/choonkeat/deliveryboy/blob/master/spec/fixtures/bounce_cases/relay_failed.eml)
134
134
  * Copyright (c) 2011 Chew Choon Keat | The MIT License
135
135
 
136
- * postfix-19.eml
136
+ * mta-postfix-19.eml
137
137
  * [testfile.eml](https://github.com/prasad83/node-bounce-handler/blob/master/eml/testfile.eml)
138
138
  * Copyright (c) 2011 Chew Choon Keat | The MIT License
139
139
 
140
- * postfix-20.eml
140
+ * mta-postfix-20.eml
141
141
  * mailman-2.1.15/tests/bounces/postfix_05.txt
142
142
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
143
143
 
144
- * postfix-22.eml
144
+ * mta-postfix-22.eml
145
145
  * https://github.com/LoneStarInternet/mail_manager/tree/master/spec/test_app/spec/support/files/bounce_400.txt
146
146
  * Copyright (c) 2015 Lone Star Internet, Inc. | MIT
147
147
 
148
- * postfix-23.eml
148
+ * mta-postfix-23.eml
149
149
  * https://github.com/LoneStarInternet/mail_manager/tree/master/spec/test_app/spec/support/files/bounce_500.txt
150
150
  * Copyright (c) 2015 Lone Star Internet, Inc. | MIT
151
151
 
152
- * postfix-24.eml
152
+ * mta-postfix-24.eml
153
153
  * https://github.com/LoneStarInternet/mail_manager/tree/master/spec/test_app/spec/support/files/bounce-invalid-address.txt
154
154
  * Copyright (c) 2015 Lone Star Internet, Inc. | MIT
155
155
 
156
- * postfix-25.eml
156
+ * mta-postfix-25.eml
157
157
  * https://github.com/LoneStarInternet/mail_manager/tree/master/spec/test_app/spec/support/files/bounce-smtp-timeout.txt
158
158
  * Copyright (c) 2015 Lone Star Internet, Inc. | MIT
159
159
 
160
- * postfix-26.eml
160
+ * mta-postfix-26.eml
161
161
  * https://github.com/LoneStarInternet/mail_manager/tree/master/spec/test_app/spec/support/files/bounce-unknown_domain.txt
162
162
  * Copyright (c) 2015 Lone Star Internet, Inc. | MIT
163
163
 
164
- * postfix-27.eml
164
+ * mta-postfix-27.eml
165
165
  * https://github.com/rgl/MailBounceDetector/blob/master/MailBounceDetector.Tests/Fixtures/bounce_postfix_non_existing_mailbox.eml
166
166
  * Copyright (c) 2015 Rui Lopes (ruilopes.com) | MIT
167
167
 
168
168
  Sisimai::MTA::qmail
169
169
  -------------------
170
- * qmail-09.eml
170
+ * mta-qmail-09.eml
171
171
  * mailman-2.1.15/tests/bounces/qmail_01.txt
172
172
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
173
173
 
174
- * qmail-10.eml
174
+ * mta-qmail-10.eml
175
175
  * https://github.com/rgl/MailBounceDetector/blob/master/MailBounceDetector.Tests/Fixtures/bounce_qmail_extra_lines_between_recipient_paragraphs.eml
176
176
  * Copyright (c) 2015 Rui Lopes (ruilopes.com) | MIT
177
177
 
178
- * qmail-11.eml
178
+ * mta-qmail-11.eml
179
179
  * https://github.com/rgl/MailBounceDetector/blob/master/MailBounceDetector.Tests/Fixtures/bounce_qmail_multipart_alternative_non_existing_mailbox.eml
180
180
  * Copyright (c) 2015 Rui Lopes (ruilopes.com) | MIT
181
181
 
182
- * qmail-12.eml
182
+ * mta-qmail-12.eml
183
183
  * https://github.com/rgl/MailBounceDetector/blob/master/MailBounceDetector.Tests/Fixtures/bounce_qmail_no_host_found.eml
184
184
  * Copyright (c) 2015 Rui Lopes (ruilopes.com) | MIT
185
185
 
@@ -265,55 +265,55 @@ Sisimai::RFC3834
265
265
 
266
266
  Sisimai::MTA::Sendmail
267
267
  ----------------------
268
- * sendmail-23.eml
268
+ * mta-sendmail-23.eml
269
269
  * [DSN-spam.eml](https://github.com/sendgrid/go-gmime/blob/master/gmime/fixtures/DSN-spam.eml)
270
270
  * Copyright (c) 2014, 2015 SendGrid Inc. | The MIT License
271
271
 
272
272
  Sisimai::MSP::US::Google
273
273
  ------------------------
274
- * us-google-12.eml
274
+ * us-msp-google-12.eml
275
275
  * mailman-2.1.15/tests/bounces/simple_17.txt
276
276
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
277
277
 
278
- * us-google-13.eml
278
+ * us-msp-google-13.eml
279
279
  * mailman-2.1.15/tests/bounces/simple_28.txt
280
280
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
281
281
 
282
282
  Sisimai::MSP::US::Outlook
283
283
  -------------------------
284
- * us-outlook-09.eml
284
+ * us-msp-outlook-09.eml
285
285
  * [connection_timed_out.eml](https://github.com/choonkeat/deliveryboy/blob/master/spec/fixtures/bounce_cases/connection_timed_out.eml)
286
286
  * Copyright (c) 2011 Chew Choon Keat | The MIT License
287
287
 
288
288
  Sisimai::MTA::X2
289
289
  ----------------
290
- * x2-05.eml
290
+ * mta-x2-05.eml
291
291
  * mailman-2.1.15/tests/bounces/yahoo_03.txt
292
292
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
293
293
 
294
294
  Sisimai::MTA::X4
295
295
  ----------------
296
- * x4-01.eml
296
+ * mta-x4-01.eml
297
297
  * [bounce-secureservers.net-mailfolder_is_full.eml](https://github.com/justingit/dada-mail/blob/master/dada/t/corpus/email_messages/bounce-secureservers.net-mailfolder_is_full.eml)
298
298
  * Copyright (c) 1999 - 2015 Justin Simoni | GPL
299
299
 
300
- * x4-02.eml
300
+ * mta-x4-02.eml
301
301
  * mailman-2.1.15/tests/bounces/newmailru_01.txt
302
302
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
303
303
 
304
- * x4-03.eml
304
+ * mta-x4-03.eml
305
305
  * mailman-2.1.15/tests/bounces/qmail_03.txt
306
306
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
307
307
 
308
- * x4-04.eml
308
+ * mta-x4-04.eml
309
309
  * mailman-2.1.15/tests/bounces/qmail_04.txt
310
310
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
311
311
 
312
- * x4-05.eml
312
+ * mta-x4-05.eml
313
313
  * mailman-2.1.15/tests/bounces/qmail_05.txt
314
314
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
315
315
 
316
- * x4-06.eml
316
+ * mta-x4-06.eml
317
317
  * mailman-2.1.15/tests/bounces/qmail_06.txt
318
318
  * Copyright (C) 1989, 1991 Free Software Foundation, Inc. | GPLv2
319
319
 
@@ -0,0 +1,47 @@
1
+ Delivered-To: sironeko@example.com
2
+ Received: by 10.37.47.81 with SMTP id v78csp965841ybv;
3
+ Thu, 20 Oct 2016 17:06:41 -0700 (PDT)
4
+ X-Received: by 10.99.2.214 with SMTP id 205mr4929756pgc.1.1477008401761;
5
+ Thu, 20 Oct 2016 17:06:41 -0700 (PDT)
6
+ Return-Path: <01010157e48fa0da-c8193da8-0663-4595-93f1-48a12e862252-000000@us-west-2.amazonses.com>
7
+ Received: from nijo.example.jp (nijo.example.jp. [192.0.2.153])
8
+ by mx.google.com with ESMTP id c17si30985537pgj.153.2016.10.20.17.06.41
9
+ for <sironeko@example.com>;
10
+ Thu, 20 Oct 2016 17:06:41 -0700 (PDT)
11
+ Received-SPF: fail (google.com: domain of 01010157e48fa0da-c8193da8-0663-4595-93f1-48a12e862252-000000@us-west-2.amazonses.com does not designate 192.0.2.153 as permitted sender) client-ip=192.0.2.153;
12
+ Authentication-Results: mx.google.com;
13
+ dkim=neutral (body hash did not verify) header.i=@amazonses.com;
14
+ spf=fail (google.com: domain of 01010157e48fa0da-c8193da8-0663-4595-93f1-48a12e862252-000000@us-west-2.amazonses.com does not designate 192.0.2.153 as permitted sender) smtp.mailfrom=01010157e48fa0da-c8193da8-0663-4595-93f1-48a12e862252-000000@us-west-2.amazonses.com
15
+ Received: from a27-82.smtp-out.us-west-2.amazonses.com (a27-82.smtp-out.us-west-2.amazonses.com [54.240.27.82])
16
+ by nijo.example.jp (V8/cf) with ESMTP id u9L06fOn017159
17
+ for <nekochan@example.jp>; Fri, 21 Oct 2016 09:06:41 +0900
18
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 nijo.example.jp u9L06fOn017159
19
+ Authentication-Results: nijo.example.jp; sender-id=none header.from=no-reply@sns.amazonaws.com; spf=pass smtp.mfrom=01010157e48fa0da-c8193da8-0663-4595-93f1-48a12e862252-000000@us-west-2.amazonses.com
20
+ DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple;
21
+ s=gdwg2y3kokkkj5a55z2ilkup5wp5hhxx; d=amazonses.com; t=1477008400;
22
+ h=Date:From:To:Message-ID:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding:Feedback-ID;
23
+ bh=Z2dTQ3/mPA3FKUGnivGj2m77HvJT6arMwX7iB5K+eyw=;
24
+ b=GbmozRKJzswLXWDMk8eyN/o1oC07lxI3Fia/9cTDWMzPPjt4LNy/3OOLDLzTtm3I
25
+ 4pEh4m7iu9DZSuflR0uLeoY9rfwfl+AarBz7A1CDWf3n+hDt3Aa8bBfmmVhtO7Kzwmp
26
+ SvtQ+k39gAllN+KpQIH6aQ2cBPMhrEIVMb0ar+S0=
27
+ Date: Fri, 21 Oct 2016 00:06:40 +0000
28
+ From: SES-EM-B <no-reply@sns.amazonaws.com>
29
+ To: nekochan@example.jp
30
+ Message-ID: <01010157e48fa0da-c8193da8-0663-4595-93f1-48a12e862252-000000@us-west-2.amazonses.com>
31
+ Subject: AWS Notification Message
32
+ MIME-Version: 1.0
33
+ Content-Type: text/plain; charset=UTF-8
34
+ Content-Transfer-Encoding: 7bit
35
+ x-amz-sns-message-id: ad6bdf42-f483-5bae-bf50-8fc1aad3f981
36
+ x-amz-sns-subscription-arn: arn:aws:sns:us-west-2:123456789012:SES-EM-B:6826a561-3e15-47c8-a928-bf7e4463942d
37
+ X-SES-Outgoing: 2016.10.21-54.240.27.82
38
+ Feedback-ID: 1.us-west-2.c55J8LO2Yl1R0Ht+ysI6VjzUH6Cvo3dHPF80AUVC/G8=:AmazonSES
39
+
40
+ {"notificationType":"Bounce","bounce":{"bounceType":"Permanent","bounceSubType":"General","bouncedRecipients":[{"emailAddress":"bounce@simulator.amazonses.com","action":"failed","status":"5.1.1","diagnosticCode":"smtp; 550 5.1.1 user unknown"}],"timestamp":"2016-10-21T00:06:40.502Z","feedbackId":"01010157e48fa03f-c7e948fe-3c34-403e-b681-02a497797067-000000","reportingMTA":"dsn; a27-23.smtp-out.us-west-2.amazonses.com"},"mail":{"timestamp":"2016-10-21T00:06:39.000Z","source":"kijitora@neko.example.org","sourceArn":"arn:aws:ses:us-west-2:123456789012:identity/kijitora@neko.example.org","sendingAccountId":"123456789012","messageId":"01010157e48f9b9b-891e9a0e-9c9d-4773-9bfe-608f2ef4756d-000000","destination":["bounce@simulator.amazonses.com"],"headersTruncated":false,"headers":[{"name":"From","value":"kijitora@neko.example.org"},{"name":"To","value":"bounce@simulator.amazonses.com"},{"name":"Subject","value":"nyaan"},{"name":"MIME-Version","value":"1.0"},{"name":"Content-Type","value":"text/plain; charset=UTF-8"},{"name":"!
41
+ Content-Transfer-Encoding","value":"base64"}],"commonHeaders":{"from":["kijitora@neko.example.org"],"to":["bounce@simulator.amazonses.com"],"subject":"nyaan"}}}
42
+
43
+ --
44
+ If you wish to stop receiving notifications from this topic, please click or visit the link below to unsubscribe:
45
+ https://sns.us-west-2.amazonaws.com/unsubscribe.html?SubscriptionArn=arn:aws:sns:us-west-2:123456789012:SES-EM-B:6826a561-3e15-47c8-a928-bf7e4463942d&Endpoint=nekochan@example.jp
46
+
47
+ Please do not reply directly to this email. If you have any questions or comments regarding this email, please contact us at https://aws.amazon.com/support
@@ -0,0 +1,51 @@
1
+ Delivered-To: sironeko@example.com
2
+ Received: by 10.37.47.81 with SMTP id v78csp1081351ybv;
3
+ Thu, 20 Oct 2016 23:58:06 -0700 (PDT)
4
+ X-Received: by 10.98.73.203 with SMTP id r72mr8950513pfi.4.1477033086421;
5
+ Thu, 20 Oct 2016 23:58:06 -0700 (PDT)
6
+ Return-Path: <01010157e6083e0a-4218bd58-f11a-4bce-b20d-ad670c9a8f4a-000000@us-west-2.amazonses.com>
7
+ Received: from nijo.example.jp (nijo.example.jp. [192.0.2.153])
8
+ by mx.google.com with ESMTP id yw4si1087120pab.235.2016.10.20.23.58.06
9
+ for <sironeko@example.com>;
10
+ Thu, 20 Oct 2016 23:58:06 -0700 (PDT)
11
+ Received-SPF: fail (google.com: domain of 01010157e6083e0a-4218bd58-f11a-4bce-b20d-ad670c9a8f4a-000000@us-west-2.amazonses.com does not designate 192.0.2.153 as permitted sender) client-ip=192.0.2.153;
12
+ Authentication-Results: mx.google.com;
13
+ dkim=neutral (body hash did not verify) header.i=@amazonses.com;
14
+ spf=fail (google.com: domain of 01010157e6083e0a-4218bd58-f11a-4bce-b20d-ad670c9a8f4a-000000@us-west-2.amazonses.com does not designate 192.0.2.153 as permitted sender) smtp.mailfrom=01010157e6083e0a-4218bd58-f11a-4bce-b20d-ad670c9a8f4a-000000@us-west-2.amazonses.com
15
+ Received: from a27-84.smtp-out.us-west-2.amazonses.com (a27-84.smtp-out.us-west-2.amazonses.com [54.240.27.84])
16
+ by nijo.example.jp (V8/cf) with ESMTP id u9L6w4Rc002915
17
+ for <nekochan@example.jp>; Fri, 21 Oct 2016 15:58:04 +0900
18
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 nijo.example.jp u9L6w4Rc002915
19
+ Authentication-Results: nijo.example.jp; sender-id=none header.from=no-reply@sns.amazonaws.com; spf=pass smtp.mfrom=01010157e6083e0a-4218bd58-f11a-4bce-b20d-ad670c9a8f4a-000000@us-west-2.amazonses.com
20
+ DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple;
21
+ s=gdwg2y3kokkkj5a55z2ilkup5wp5hhxx; d=amazonses.com; t=1477033082;
22
+ h=Date:From:To:Message-ID:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding:Feedback-ID;
23
+ bh=99fii1AUIlruZw9Lf6Ac9goZx1dgrNvtQlk/Aw9xvQA=;
24
+ b=fFf+0ZqGYUe5oi8d929a3wCzeo/WoX5n0JC/M4YxjB4e60E6kK+l7lORFDaCL5x6
25
+ pyJhKFDWO2AO40ZoJ7/VrfuCqwocjC5ExqqAsBOHhwvKEvZX42X1p/dMnkrj/dfZeg0
26
+ nQ/34M1PWDhFbPvDt08XL4aPlR/870GDADx99cPM=
27
+ Date: Fri, 21 Oct 2016 06:58:02 +0000
28
+ From: SES-EJ-B <no-reply@sns.amazonaws.com>
29
+ To: nekochan@example.jp
30
+ Message-ID: <01010157e6083e0a-4218bd58-f11a-4bce-b20d-ad670c9a8f4a-000000@us-west-2.amazonses.com>
31
+ Subject: AWS Notification Message
32
+ MIME-Version: 1.0
33
+ Content-Type: text/plain; charset=UTF-8
34
+ Content-Transfer-Encoding: 7bit
35
+ x-amz-sns-message-id: 02f86d9b-eecf-573d-b47d-3d1850750c30
36
+ x-amz-sns-subscription-arn: arn:aws:sns:us-west-2:123456789012:SES-EJ-B:c4b92a6d-5e69-49cf-bf38-b4c9ebb70972
37
+ X-SES-Outgoing: 2016.10.21-54.240.27.84
38
+ Feedback-ID: 1.us-west-2.c55J8LO2Yl1R0Ht+ysI6VjzUH6Cvo3dHPF80AUVC/G8=:AmazonSES
39
+
40
+ {
41
+ "Type" : "Notification",
42
+ "MessageId" : "02f86d9b-eecf-573d-b47d-3d1850750c30",
43
+ "TopicArn" : "arn:aws:sns:us-west-2:123456789012:SES-EJ-B",
44
+ "Message" : "{\"notificationType\":\"Bounce\",\"bounce\":{\"bounceType\":\"Permanent\",\"bounceSubType\":\"General\",\"bouncedRecipients\":[{\"emailAddress\":\"bounce@simulator.amazonses.com\",\"action\":\"failed\",\"status\":\"5.1.1\",\"diagnosticCode\":\"smtp; 550 5.1.1 user unknown\"}],\"timestamp\":\"2016-10-21T06:58:02.245Z\",\"feedbackId\":\"01010157e6083d17-38cf01f3-852d-4401-8e8a-84e67a3e51d8-000000\",\"reportingMTA\":\"dsn; a27-33.smtp-out.us-west-2.amazonses.com\"},\"mail\":{\"timestamp\":\"2016-10-21T06:58:00.000Z\",\"source\":\"kijitora@neko.example.org\",\"sourceArn\":\"arn:aws:ses:us-west-2:123456789012:identity/kijitora@neko.example.org\",\"sendingAccountId\":\"123456789012\",\"messageId\":\"01010157e6083857-2c73eed0-71f8-47d1-ab77-c4646f9d776d-000000\",\"destination\":[\"bounce@simulator.amazonses.com\"],\"headersTruncated\":false,\"headers\":[{\"name\":\"From\",\"value\":\"kijitora@neko.example.org\"},{\"name\":\"To\",\"value\":\"bounce@simulator.amazonses.com\"},{\"name\":\"Subject\",\"value\":\"Nya!
45
+ aan\"},{\"name\":\"MIME-Version\",\"value\":\"1.0\"},{\"name\":\"Content-Type\",\"value\":\"text/plain; charset=UTF-8\"},{\"name\":\"Content-Transfer-Encoding\",\"value\":\"base64\"}],\"commonHeaders\":{\"from\":[\"kijitora@neko.example.org\"],\"to\":[\"bounce@simulator.amazonses.com\"],\"subject\":\"Nyaaan\"}}}",
46
+ "Timestamp" : "2016-10-21T06:58:02.294Z",
47
+ "SignatureVersion" : "1",
48
+ "Signature" : "C8prgK1poqge9QGVsmEejcVIWCDZGtQ92c1VFywS0ZbpWFJi28y9BEKhjopGdy2PtZ8llYeksStsgqcWbwVrHIEeIhVSRBexI46uYPxP9isUQxbhmc1TjcPefDHyc2/blYA5Xi4RYgRu257s/XEPb/7eC2nmjjtjfhbOMwJVKv9yaOKAIXOgQaRTUZgXN3zgWHgMWxNaaWGM/I1qQTqdDakq9kWAsVwDo9+KJlmMWtIIEywZ8ut9GkHGJFdoWcdhubDUuFlaVlcQpyVqP9wsU6KtvurSl0KLMq0+IQVFBo3/BKt8RxwDvgl3b1MTq5xdhLtiYO6Ldlrmn3kElF2pOw==",
49
+ "SigningCertURL" : "https://sns.us-west-2.amazonaws.com/SimpleNotificationService-b95095beb82e8f6a046b3aafc7f4149a.pem",
50
+ "UnsubscribeURL" : "https://sns.us-west-2.amazonaws.com/?Action=Unsubscribe&SubscriptionArn=arn:aws:sns:us-west-2:123456789012:SES-EJ-B:c4b92a6d-5e69-49cf-bf38-b4c9ebb70972"
51
+ }