sisimai 4.14.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sisimai might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.rubocop.yml +165 -0
- data/.travis.yml +21 -0
- data/ANALYTICAL-PRECISION +54 -0
- data/Changes +5 -0
- data/Developers.mk +129 -0
- data/Gemfile +9 -0
- data/LICENSE +26 -0
- data/Makefile +56 -0
- data/README.md +300 -0
- data/Rakefile +7 -0
- data/Repository.mk +69 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sisimai.rb +60 -0
- data/lib/sisimai/address.rb +218 -0
- data/lib/sisimai/arf.rb +343 -0
- data/lib/sisimai/data.rb +413 -0
- data/lib/sisimai/data/json.rb +36 -0
- data/lib/sisimai/data/yaml.rb +32 -0
- data/lib/sisimai/datetime.rb +518 -0
- data/lib/sisimai/mail.rb +82 -0
- data/lib/sisimai/mail/maildir.rb +85 -0
- data/lib/sisimai/mail/mbox.rb +69 -0
- data/lib/sisimai/mail/stdin.rb +52 -0
- data/lib/sisimai/mda.rb +152 -0
- data/lib/sisimai/message.rb +510 -0
- data/lib/sisimai/mime.rb +127 -0
- data/lib/sisimai/msp.rb +54 -0
- data/lib/sisimai/msp/de/einsundeins.rb +174 -0
- data/lib/sisimai/msp/de/gmx.rb +197 -0
- data/lib/sisimai/msp/jp/biglobe.rb +179 -0
- data/lib/sisimai/msp/jp/ezweb.rb +292 -0
- data/lib/sisimai/msp/jp/kddi.rb +195 -0
- data/lib/sisimai/msp/ru/mailru.rb +306 -0
- data/lib/sisimai/msp/ru/yandex.rb +241 -0
- data/lib/sisimai/msp/uk/messagelabs.rb +250 -0
- data/lib/sisimai/msp/us/amazonses.rb +248 -0
- data/lib/sisimai/msp/us/aol.rb +234 -0
- data/lib/sisimai/msp/us/bigfoot.rb +243 -0
- data/lib/sisimai/msp/us/facebook.rb +306 -0
- data/lib/sisimai/msp/us/google.rb +357 -0
- data/lib/sisimai/msp/us/outlook.rb +243 -0
- data/lib/sisimai/msp/us/receivingses.rb +247 -0
- data/lib/sisimai/msp/us/sendgrid.rb +257 -0
- data/lib/sisimai/msp/us/verizon.rb +311 -0
- data/lib/sisimai/msp/us/yahoo.rb +178 -0
- data/lib/sisimai/msp/us/zoho.rb +198 -0
- data/lib/sisimai/mta.rb +55 -0
- data/lib/sisimai/mta/activehunter.rb +155 -0
- data/lib/sisimai/mta/apachejames.rb +194 -0
- data/lib/sisimai/mta/courier.rb +307 -0
- data/lib/sisimai/mta/domino.rb +209 -0
- data/lib/sisimai/mta/exchange.rb +314 -0
- data/lib/sisimai/mta/exim.rb +549 -0
- data/lib/sisimai/mta/imailserver.rb +227 -0
- data/lib/sisimai/mta/interscanmss.rb +167 -0
- data/lib/sisimai/mta/mailfoundry.rb +173 -0
- data/lib/sisimai/mta/mailmarshalsmtp.rb +206 -0
- data/lib/sisimai/mta/mcafee.rb +201 -0
- data/lib/sisimai/mta/messagingserver.rb +241 -0
- data/lib/sisimai/mta/mfilter.rb +190 -0
- data/lib/sisimai/mta/mxlogic.rb +283 -0
- data/lib/sisimai/mta/notes.rb +206 -0
- data/lib/sisimai/mta/opensmtpd.rb +225 -0
- data/lib/sisimai/mta/postfix.rb +306 -0
- data/lib/sisimai/mta/qmail.rb +335 -0
- data/lib/sisimai/mta/sendmail.rb +317 -0
- data/lib/sisimai/mta/surfcontrol.rb +193 -0
- data/lib/sisimai/mta/userdefined.rb +148 -0
- data/lib/sisimai/mta/v5sendmail.rb +232 -0
- data/lib/sisimai/mta/x1.rb +156 -0
- data/lib/sisimai/mta/x2.rb +157 -0
- data/lib/sisimai/mta/x3.rb +171 -0
- data/lib/sisimai/mta/x4.rb +365 -0
- data/lib/sisimai/mta/x5.rb +208 -0
- data/lib/sisimai/order.rb +217 -0
- data/lib/sisimai/reason.rb +235 -0
- data/lib/sisimai/reason/blocked.rb +105 -0
- data/lib/sisimai/reason/contenterror.rb +53 -0
- data/lib/sisimai/reason/exceedlimit.rb +60 -0
- data/lib/sisimai/reason/expired.rb +53 -0
- data/lib/sisimai/reason/filtered.rb +98 -0
- data/lib/sisimai/reason/hasmoved.rb +45 -0
- data/lib/sisimai/reason/hostunknown.rb +74 -0
- data/lib/sisimai/reason/mailboxfull.rb +118 -0
- data/lib/sisimai/reason/mailererror.rb +55 -0
- data/lib/sisimai/reason/mesgtoobig.rb +77 -0
- data/lib/sisimai/reason/networkerror.rb +57 -0
- data/lib/sisimai/reason/norelaying.rb +71 -0
- data/lib/sisimai/reason/notaccept.rb +63 -0
- data/lib/sisimai/reason/onhold.rb +45 -0
- data/lib/sisimai/reason/rejected.rb +101 -0
- data/lib/sisimai/reason/securityerror.rb +72 -0
- data/lib/sisimai/reason/spamdetected.rb +172 -0
- data/lib/sisimai/reason/suspend.rb +58 -0
- data/lib/sisimai/reason/systemerror.rb +69 -0
- data/lib/sisimai/reason/systemfull.rb +45 -0
- data/lib/sisimai/reason/toomanyconn.rb +73 -0
- data/lib/sisimai/reason/userunknown.rb +194 -0
- data/lib/sisimai/rfc2606.rb +24 -0
- data/lib/sisimai/rfc3464.rb +497 -0
- data/lib/sisimai/rfc3834.rb +150 -0
- data/lib/sisimai/rfc5322.rb +204 -0
- data/lib/sisimai/rhost.rb +47 -0
- data/lib/sisimai/rhost/googleapps.rb +237 -0
- data/lib/sisimai/smtp.rb +58 -0
- data/lib/sisimai/smtp/reply.rb +81 -0
- data/lib/sisimai/smtp/status.rb +755 -0
- data/lib/sisimai/string.rb +65 -0
- data/lib/sisimai/time.rb +11 -0
- data/lib/sisimai/version.rb +4 -0
- data/set-of-emails/README.md +35 -0
- data/set-of-emails/mailbox/mbox-0 +2467 -0
- data/set-of-emails/mailbox/mbox-1 +71 -0
- data/set-of-emails/maildir/bsd/README.md +261 -0
- data/set-of-emails/maildir/bsd/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/bsd/activehunter-02.eml +53 -0
- data/set-of-emails/maildir/bsd/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/bsd/arf-01.eml +66 -0
- data/set-of-emails/maildir/bsd/arf-02.eml +68 -0
- data/set-of-emails/maildir/bsd/arf-03.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-04.eml +89 -0
- data/set-of-emails/maildir/bsd/arf-05.eml +82 -0
- data/set-of-emails/maildir/bsd/arf-06.eml +166 -0
- data/set-of-emails/maildir/bsd/arf-07.eml +59 -0
- data/set-of-emails/maildir/bsd/arf-08.eml +103 -0
- data/set-of-emails/maildir/bsd/arf-09.eml +104 -0
- data/set-of-emails/maildir/bsd/arf-10.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-11.eml +37 -0
- data/set-of-emails/maildir/bsd/arf-12.eml +40 -0
- data/set-of-emails/maildir/bsd/arf-13.eml +76 -0
- data/set-of-emails/maildir/bsd/arf-14.eml +333 -0
- data/set-of-emails/maildir/bsd/arf-15.eml +66 -0
- data/set-of-emails/maildir/bsd/courier-01.eml +79 -0
- data/set-of-emails/maildir/bsd/courier-02.eml +83 -0
- data/set-of-emails/maildir/bsd/courier-03.eml +85 -0
- data/set-of-emails/maildir/bsd/courier-04.eml +87 -0
- data/set-of-emails/maildir/bsd/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/bsd/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/bsd/de-gmx-02.eml +51 -0
- data/set-of-emails/maildir/bsd/de-gmx-03.eml +56 -0
- data/set-of-emails/maildir/bsd/de-gmx-04.eml +51 -0
- data/set-of-emails/maildir/bsd/domino-01.eml +33 -0
- data/set-of-emails/maildir/bsd/domino-02.eml +83 -0
- data/set-of-emails/maildir/bsd/exchange-01.eml +31 -0
- data/set-of-emails/maildir/bsd/exchange-02.eml +67 -0
- data/set-of-emails/maildir/bsd/exchange-03.eml +52 -0
- data/set-of-emails/maildir/bsd/exchange-04.eml +28 -0
- data/set-of-emails/maildir/bsd/exchange-05.eml +56 -0
- data/set-of-emails/maildir/bsd/exchange-06.eml +151 -0
- data/set-of-emails/maildir/bsd/exim-01.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-02.eml +41 -0
- data/set-of-emails/maildir/bsd/exim-03.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-04.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-05.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-06.eml +44 -0
- data/set-of-emails/maildir/bsd/exim-07.eml +28 -0
- data/set-of-emails/maildir/bsd/exim-08.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-09.eml +169 -0
- data/set-of-emails/maildir/bsd/exim-10.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-11.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-12.eml +75 -0
- data/set-of-emails/maildir/bsd/exim-13.eml +145 -0
- data/set-of-emails/maildir/bsd/exim-14.eml +32 -0
- data/set-of-emails/maildir/bsd/exim-15.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-16.eml +98 -0
- data/set-of-emails/maildir/bsd/exim-17.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-18.eml +96 -0
- data/set-of-emails/maildir/bsd/exim-19.eml +52 -0
- data/set-of-emails/maildir/bsd/exim-20.eml +159 -0
- data/set-of-emails/maildir/bsd/exim-21.eml +150 -0
- data/set-of-emails/maildir/bsd/exim-22.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-23.eml +57 -0
- data/set-of-emails/maildir/bsd/exim-24.eml +107 -0
- data/set-of-emails/maildir/bsd/exim-25.eml +18 -0
- data/set-of-emails/maildir/bsd/exim-26.eml +111 -0
- data/set-of-emails/maildir/bsd/exim-27.eml +120 -0
- data/set-of-emails/maildir/bsd/exim-28.eml +148 -0
- data/set-of-emails/maildir/bsd/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/bsd/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/bsd/imailserver-02.eml +36 -0
- data/set-of-emails/maildir/bsd/imailserver-03.eml +28 -0
- data/set-of-emails/maildir/bsd/imailserver-04.eml +15 -0
- data/set-of-emails/maildir/bsd/imailserver-05.eml +92 -0
- data/set-of-emails/maildir/bsd/imailserver-06.eml +29 -0
- data/set-of-emails/maildir/bsd/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/bsd/interscanmss-02.eml +259 -0
- data/set-of-emails/maildir/bsd/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-02.eml +65 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-03.eml +35 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-04.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-05.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-06.eml +33 -0
- data/set-of-emails/maildir/bsd/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/bsd/jp-kddi-02.eml +54 -0
- data/set-of-emails/maildir/bsd/jp-kddi-03.eml +54 -0
- data/set-of-emails/maildir/bsd/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/bsd/mailfoundry-02.eml +49 -0
- data/set-of-emails/maildir/bsd/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/bsd/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/bsd/mcafee-02.eml +65 -0
- data/set-of-emails/maildir/bsd/mcafee-03.eml +59 -0
- data/set-of-emails/maildir/bsd/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-02.eml +72 -0
- data/set-of-emails/maildir/bsd/messagingserver-03.eml +70 -0
- data/set-of-emails/maildir/bsd/messagingserver-04.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-05.eml +98 -0
- data/set-of-emails/maildir/bsd/messagingserver-06.eml +101 -0
- data/set-of-emails/maildir/bsd/messagingserver-07.eml +129 -0
- data/set-of-emails/maildir/bsd/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/bsd/mfilter-02.eml +48 -0
- data/set-of-emails/maildir/bsd/mfilter-03.eml +43 -0
- data/set-of-emails/maildir/bsd/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/bsd/mxlogic-02.eml +44 -0
- data/set-of-emails/maildir/bsd/mxlogic-03.eml +46 -0
- data/set-of-emails/maildir/bsd/notes-01.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-02.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-03.eml +38 -0
- data/set-of-emails/maildir/bsd/notes-04.eml +181 -0
- data/set-of-emails/maildir/bsd/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-02.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-03.eml +36 -0
- data/set-of-emails/maildir/bsd/opensmtpd-04.eml +40 -0
- data/set-of-emails/maildir/bsd/opensmtpd-05.eml +36 -0
- data/set-of-emails/maildir/bsd/postfix-01.eml +60 -0
- data/set-of-emails/maildir/bsd/postfix-02.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-03.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-04.eml +89 -0
- data/set-of-emails/maildir/bsd/postfix-05.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-06.eml +72 -0
- data/set-of-emails/maildir/bsd/postfix-07.eml +74 -0
- data/set-of-emails/maildir/bsd/postfix-08.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-09.eml +76 -0
- data/set-of-emails/maildir/bsd/postfix-10.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-11.eml +86 -0
- data/set-of-emails/maildir/bsd/postfix-12.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-13.eml +81 -0
- data/set-of-emails/maildir/bsd/postfix-14.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-15.eml +69 -0
- data/set-of-emails/maildir/bsd/postfix-16.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-17.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-18.eml +121 -0
- data/set-of-emails/maildir/bsd/postfix-19.eml +105 -0
- data/set-of-emails/maildir/bsd/postfix-20.eml +231 -0
- data/set-of-emails/maildir/bsd/postfix-21.eml +60 -0
- data/set-of-emails/maildir/bsd/qmail-01.eml +40 -0
- data/set-of-emails/maildir/bsd/qmail-02.eml +35 -0
- data/set-of-emails/maildir/bsd/qmail-03.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-04.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-05.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-06.eml +39 -0
- data/set-of-emails/maildir/bsd/qmail-07.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-08.eml +23 -0
- data/set-of-emails/maildir/bsd/qmail-09.eml +103 -0
- data/set-of-emails/maildir/bsd/rfc3464-01.eml +60 -0
- data/set-of-emails/maildir/bsd/rfc3464-02.eml +43 -0
- data/set-of-emails/maildir/bsd/rfc3464-03.eml +40 -0
- data/set-of-emails/maildir/bsd/rfc3464-04.eml +50 -0
- data/set-of-emails/maildir/bsd/rfc3464-05.eml +63 -0
- data/set-of-emails/maildir/bsd/rfc3464-06.eml +48 -0
- data/set-of-emails/maildir/bsd/rfc3464-07.eml +88 -0
- data/set-of-emails/maildir/bsd/rfc3464-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rfc3464-09.eml +93 -0
- data/set-of-emails/maildir/bsd/rfc3464-10.eml +467 -0
- data/set-of-emails/maildir/bsd/rfc3464-11.eml +1171 -0
- data/set-of-emails/maildir/bsd/rfc3464-12.eml +101 -0
- data/set-of-emails/maildir/bsd/rfc3464-13.eml +131 -0
- data/set-of-emails/maildir/bsd/rfc3464-14.eml +121 -0
- data/set-of-emails/maildir/bsd/rfc3464-15.eml +144 -0
- data/set-of-emails/maildir/bsd/rfc3464-16.eml +36 -0
- data/set-of-emails/maildir/bsd/rfc3464-17.eml +109 -0
- data/set-of-emails/maildir/bsd/rfc3464-18.eml +149 -0
- data/set-of-emails/maildir/bsd/rfc3464-19.eml +65 -0
- data/set-of-emails/maildir/bsd/rfc3464-20.eml +145 -0
- data/set-of-emails/maildir/bsd/rfc3464-21.eml +146 -0
- data/set-of-emails/maildir/bsd/rfc3464-22.eml +105 -0
- data/set-of-emails/maildir/bsd/rfc3464-23.eml +21 -0
- data/set-of-emails/maildir/bsd/rfc3464-24.eml +27 -0
- data/set-of-emails/maildir/bsd/rfc3464-25.eml +33 -0
- data/set-of-emails/maildir/bsd/rfc3464-26.eml +98 -0
- data/set-of-emails/maildir/bsd/rfc3464-27.eml +180 -0
- data/set-of-emails/maildir/bsd/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/bsd/rfc3834-02.eml +51 -0
- data/set-of-emails/maildir/bsd/rfc3834-03.eml +33 -0
- data/set-of-emails/maildir/bsd/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-02.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-03.eml +62 -0
- data/set-of-emails/maildir/bsd/ru-mailru-04.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/bsd/ru-yandex-02.eml +113 -0
- data/set-of-emails/maildir/bsd/ru-yandex-03.eml +101 -0
- data/set-of-emails/maildir/bsd/sendmail-01.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-02.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-03.eml +76 -0
- data/set-of-emails/maildir/bsd/sendmail-04.eml +63 -0
- data/set-of-emails/maildir/bsd/sendmail-05.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-06.eml +67 -0
- data/set-of-emails/maildir/bsd/sendmail-07.eml +65 -0
- data/set-of-emails/maildir/bsd/sendmail-08.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-09.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-10.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-11.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-12.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-13.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-14.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-15.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-16.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-17.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-18.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-19.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-20.eml +120 -0
- data/set-of-emails/maildir/bsd/sendmail-21.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-22.eml +73 -0
- data/set-of-emails/maildir/bsd/sendmail-23.eml +137 -0
- data/set-of-emails/maildir/bsd/sendmail-24.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-25.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-26.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-27.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-28.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-29.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-30.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-31.eml +80 -0
- data/set-of-emails/maildir/bsd/sendmail-32.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-33.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-34.eml +75 -0
- data/set-of-emails/maildir/bsd/sendmail-35.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-36.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-37.eml +71 -0
- data/set-of-emails/maildir/bsd/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/bsd/surfcontrol-02.eml +70 -0
- data/set-of-emails/maildir/bsd/surfcontrol-03.eml +70 -0
- data/set-of-emails/maildir/bsd/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/bsd/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/bsd/us-amazonses-02.eml +177 -0
- data/set-of-emails/maildir/bsd/us-amazonses-03.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonses-04.eml +55 -0
- data/set-of-emails/maildir/bsd/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/bsd/us-aol-02.eml +1257 -0
- data/set-of-emails/maildir/bsd/us-aol-03.eml +1264 -0
- data/set-of-emails/maildir/bsd/us-aol-04.eml +1260 -0
- data/set-of-emails/maildir/bsd/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/bsd/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-facebook-02.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-01.eml +70 -0
- data/set-of-emails/maildir/bsd/us-google-02.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-03.eml +51 -0
- data/set-of-emails/maildir/bsd/us-google-04.eml +82 -0
- data/set-of-emails/maildir/bsd/us-google-05.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-06.eml +56 -0
- data/set-of-emails/maildir/bsd/us-google-07.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-08.eml +59 -0
- data/set-of-emails/maildir/bsd/us-google-09.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-10.eml +69 -0
- data/set-of-emails/maildir/bsd/us-google-11.eml +68 -0
- data/set-of-emails/maildir/bsd/us-google-12.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-13.eml +79 -0
- data/set-of-emails/maildir/bsd/us-google-14.eml +304 -0
- data/set-of-emails/maildir/bsd/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/us-outlook-05.eml +85 -0
- data/set-of-emails/maildir/bsd/us-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/us-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-02.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-03.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-04.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-05.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-06.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-07.eml +74 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-02.eml +98 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-03.eml +100 -0
- data/set-of-emails/maildir/bsd/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/bsd/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/bsd/us-yahoo-02.eml +79 -0
- data/set-of-emails/maildir/bsd/us-yahoo-03.eml +93 -0
- data/set-of-emails/maildir/bsd/us-yahoo-04.eml +94 -0
- data/set-of-emails/maildir/bsd/us-yahoo-05.eml +94 -0
- data/set-of-emails/maildir/bsd/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-zoho-02.eml +38 -0
- data/set-of-emails/maildir/bsd/us-zoho-03.eml +37 -0
- data/set-of-emails/maildir/bsd/us-zoho-04.eml +47 -0
- data/set-of-emails/maildir/bsd/us-zoho-05.eml +37 -0
- data/set-of-emails/maildir/bsd/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/bsd/v5sendmail-02.eml +26 -0
- data/set-of-emails/maildir/bsd/v5sendmail-03.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-04.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-05.eml +42 -0
- data/set-of-emails/maildir/bsd/v5sendmail-06.eml +28 -0
- data/set-of-emails/maildir/bsd/v5sendmail-07.eml +35 -0
- data/set-of-emails/maildir/bsd/x1-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x1-02.eml +62 -0
- data/set-of-emails/maildir/bsd/x2-01.eml +41 -0
- data/set-of-emails/maildir/bsd/x2-02.eml +46 -0
- data/set-of-emails/maildir/bsd/x2-03.eml +34 -0
- data/set-of-emails/maildir/bsd/x2-04.eml +0 -0
- data/set-of-emails/maildir/bsd/x2-05.eml +98 -0
- data/set-of-emails/maildir/bsd/x3-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x3-02.eml +64 -0
- data/set-of-emails/maildir/bsd/x3-03.eml +59 -0
- data/set-of-emails/maildir/bsd/x3-04.eml +106 -0
- data/set-of-emails/maildir/bsd/x4-01.eml +92 -0
- data/set-of-emails/maildir/bsd/x4-02.eml +112 -0
- data/set-of-emails/maildir/bsd/x4-03.eml +245 -0
- data/set-of-emails/maildir/bsd/x4-04.eml +81 -0
- data/set-of-emails/maildir/bsd/x4-05.eml +121 -0
- data/set-of-emails/maildir/bsd/x4-06.eml +32 -0
- data/set-of-emails/maildir/bsd/x4-07.eml +153 -0
- data/set-of-emails/maildir/bsd/x5-01.eml +155 -0
- data/set-of-emails/maildir/dos/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/dos/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/dos/arf-01.eml +66 -0
- data/set-of-emails/maildir/dos/courier-01.eml +79 -0
- data/set-of-emails/maildir/dos/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/dos/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/dos/domino-01.eml +33 -0
- data/set-of-emails/maildir/dos/exchange-01.eml +31 -0
- data/set-of-emails/maildir/dos/exim-01.eml +46 -0
- data/set-of-emails/maildir/dos/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/dos/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/dos/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/dos/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/dos/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/dos/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/dos/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/dos/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/dos/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/dos/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/dos/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/dos/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/dos/notes-01.eml +42 -0
- data/set-of-emails/maildir/dos/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/dos/postfix-01.eml +60 -0
- data/set-of-emails/maildir/dos/qmail-01.eml +40 -0
- data/set-of-emails/maildir/dos/rfc3464-01.eml +59 -0
- data/set-of-emails/maildir/dos/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/dos/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/dos/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/dos/sendmail-01.eml +69 -0
- data/set-of-emails/maildir/dos/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/dos/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/dos/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/dos/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/dos/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/dos/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/dos/us-google-01.eml +70 -0
- data/set-of-emails/maildir/dos/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/dos/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/dos/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/dos/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/dos/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/dos/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/dos/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/dos/x1-01.eml +61 -0
- data/set-of-emails/maildir/dos/x2-01.eml +41 -0
- data/set-of-emails/maildir/dos/x3-01.eml +61 -0
- data/set-of-emails/maildir/dos/x4-01.eml +90 -0
- data/set-of-emails/maildir/dos/x5-01.eml +155 -0
- data/set-of-emails/maildir/err/make-test-01.eml +70 -0
- data/set-of-emails/maildir/err/make-test-02.eml +70 -0
- data/set-of-emails/maildir/err/make-test-03.eml +64 -0
- data/set-of-emails/maildir/err/make-test-04.eml +64 -0
- data/set-of-emails/maildir/err/make-test-05.eml +66 -0
- data/set-of-emails/maildir/err/make-test-06.eml +118 -0
- data/set-of-emails/maildir/err/make-test-07.eml +26 -0
- data/set-of-emails/maildir/err/make-test-08.eml +67 -0
- data/set-of-emails/maildir/err/make-test-09.eml +55 -0
- data/set-of-emails/maildir/err/make-test-10.eml +69 -0
- data/set-of-emails/maildir/err/make-test-11.eml +64 -0
- data/set-of-emails/maildir/err/make-test-12.eml +66 -0
- data/set-of-emails/maildir/err/make-test-13.eml +67 -0
- data/set-of-emails/maildir/err/make-test-14.eml +66 -0
- data/set-of-emails/maildir/err/make-test-15.eml +70 -0
- data/set-of-emails/maildir/err/make-test-16.eml +68 -0
- data/set-of-emails/maildir/err/make-test-17.eml +68 -0
- data/set-of-emails/maildir/err/make-test-18.eml +68 -0
- data/set-of-emails/maildir/err/make-test-19.eml +69 -0
- data/set-of-emails/maildir/err/make-test-20.eml +67 -0
- data/set-of-emails/maildir/err/make-test-21.eml +69 -0
- data/set-of-emails/maildir/err/make-test-22.eml +66 -0
- data/set-of-emails/maildir/err/make-test-23.eml +70 -0
- data/set-of-emails/maildir/err/make-test-24.eml +69 -0
- data/set-of-emails/maildir/err/make-test-25.eml +67 -0
- data/set-of-emails/maildir/err/make-test-26.eml +69 -0
- data/set-of-emails/maildir/err/make-test-27.eml +69 -0
- data/set-of-emails/maildir/err/make-test-28.eml +66 -0
- data/set-of-emails/maildir/err/make-test-29.eml +68 -0
- data/set-of-emails/maildir/err/make-test-30.eml +68 -0
- data/set-of-emails/maildir/err/make-test-31.eml +80 -0
- data/set-of-emails/maildir/err/make-test-32.eml +66 -0
- data/set-of-emails/maildir/err/make-test-33.eml +68 -0
- data/set-of-emails/maildir/err/make-test-34.eml +56 -0
- data/set-of-emails/maildir/err/make-test-35.eml +59 -0
- data/set-of-emails/maildir/err/make-test-36.eml +53 -0
- data/set-of-emails/maildir/err/make-test-37.eml +62 -0
- data/set-of-emails/maildir/mac/activehunter-01.eml +1 -2
- data/set-of-emails/maildir/mac/apachejames-01.eml +1 -4
- data/set-of-emails/maildir/mac/arf-01.eml +1 -3
- data/set-of-emails/maildir/mac/courier-01.eml +1 -6
- data/set-of-emails/maildir/mac/de-einsundeins-01.eml +1 -1
- data/set-of-emails/maildir/mac/de-gmx-01.eml +1 -1
- data/set-of-emails/maildir/mac/domino-01.eml +1 -0
- data/set-of-emails/maildir/mac/exchange-01.eml +1 -0
- data/set-of-emails/maildir/mac/exim-01.eml +1 -1
- data/set-of-emails/maildir/mac/google-apps-01.eml +1 -4
- data/set-of-emails/maildir/mac/imailserver-01.eml +1 -0
- data/set-of-emails/maildir/mac/interscanmss-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-biglobe-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-ezweb-01.eml +1 -1
- data/set-of-emails/maildir/mac/jp-kddi-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailfoundry-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailmarshalsmtp-01.eml +1 -2
- data/set-of-emails/maildir/mac/mcafee-01.eml +1 -4
- data/set-of-emails/maildir/mac/messagingserver-01.eml +1 -4
- data/set-of-emails/maildir/mac/mfilter-01.eml +1 -3
- data/set-of-emails/maildir/mac/mxlogic-01.eml +1 -1
- data/set-of-emails/maildir/mac/notes-01.eml +1 -2
- data/set-of-emails/maildir/mac/opensmtpd-01.eml +1 -0
- data/set-of-emails/maildir/mac/postfix-01.eml +1 -3
- data/set-of-emails/maildir/mac/qmail-01.eml +1 -1
- data/set-of-emails/maildir/mac/rfc3464-01.eml +1 -4
- data/set-of-emails/maildir/mac/rfc3834-01.eml +1 -0
- data/set-of-emails/maildir/mac/ru-mailru-01.eml +1 -1
- data/set-of-emails/maildir/mac/ru-yandex-01.eml +1 -4
- data/set-of-emails/maildir/mac/sendmail-01.eml +1 -4
- data/set-of-emails/maildir/mac/surfcontrol-01.eml +1 -5
- data/set-of-emails/maildir/mac/uk-messagelabs-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-amazonses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-aol-01.eml +1 -15
- data/set-of-emails/maildir/mac/us-bigfoot-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-facebook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-google-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-outlook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-receivingses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-sendgrid-01.eml +1 -3
- data/set-of-emails/maildir/mac/us-verizon-01.eml +1 -2
- data/set-of-emails/maildir/mac/us-yahoo-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-zoho-01.eml +1 -2
- data/set-of-emails/maildir/mac/v5sendmail-01.eml +1 -0
- data/set-of-emails/maildir/mac/x1-01.eml +1 -4
- data/set-of-emails/maildir/mac/x2-01.eml +1 -1
- data/set-of-emails/maildir/mac/x3-01.eml +1 -3
- data/set-of-emails/maildir/mac/x4-01.eml +1 -2
- data/set-of-emails/maildir/mac/x5-01.eml +1 -8
- data/set-of-emails/maildir/not/is-not-bounce-01.eml +25 -0
- data/set-of-emails/to-be-debugged-because/reason-is-onhold/onhold-0001.eml +85 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0002.eml +27 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0003.eml +78 -0
- data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml +25 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml +79 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml +72 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml +68 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/no-message-id-from-pr-150.eml +75 -0
- data/set-of-emails/to-be-parsed-for-test/README.md +20 -0
- data/sisimai.gemspec +25 -0
- metadata +647 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from vagrant-centos65.example.com (c213502.kyoto.example.ne.jp [192.0.2.135])
|
3
|
+
by aneyakoji.example.jp (V8/cf) with ESMTP id s6HB0VsJ028505
|
4
|
+
for <kijitora@example.jp>; Thu, 17 Jul 2014 20:00:32 +0900
|
5
|
+
Message-Id: <201407171100.s6HB0VsJ028505@aneyakoji.example.jp>
|
6
|
+
Received: from localhost (localhost [local]);
|
7
|
+
by localhost (OpenSMTPD) with ESMTPA id 1e2a9eaa;
|
8
|
+
for <kijitora@example.jp>;
|
9
|
+
Thu, 17 Jul 2014 11:20:14 +0000 (UTC)
|
10
|
+
Subject: Delivery status notification: error
|
11
|
+
From: Mailer Daemon <MAILER-DAEMON@aneyakoji.example.jp>
|
12
|
+
To: kijitora@example.jp
|
13
|
+
Date: Thu, 17 Jul 2014 11:20:14 +0000 (UTC)
|
14
|
+
|
15
|
+
Hi!
|
16
|
+
|
17
|
+
This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail.
|
18
|
+
|
19
|
+
An error has occurred while attempting to deliver a message for
|
20
|
+
the following list of recipients:
|
21
|
+
|
22
|
+
apdugoaidugoaidugoaeiudggadi@gmail.com: 550 5.1.1 http://support.google.com/mail/bin/answer.py?answer=6596 ad1si1997204pbd.83 - gsmtp
|
23
|
+
|
24
|
+
Below is a copy of the original message:
|
25
|
+
|
26
|
+
Received: from [127.0.0.1] (localhost [127.0.0.1]);
|
27
|
+
by localhost (OpenSMTPD) with ESMTP id d70f9624;
|
28
|
+
for <apdugoaidugoaidugoaeiudggadi@gmail.com>;
|
29
|
+
Thu, 17 Jul 2014 11:19:54 +0000 (UTC)
|
30
|
+
Subject: test from OpenSMTPD
|
31
|
+
From: kijitora@example.jp
|
32
|
+
|
33
|
+
test
|
@@ -0,0 +1,33 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from vagrant-centos65.example.com (c21352.kyoto.example.ne.jp [192.0.2.135])
|
3
|
+
by aneyakoji.example.jp (V8/cf) with ESMTP id s6HAuIEE027507
|
4
|
+
for <kijitora@example.jp>; Thu, 17 Jul 2014 19:56:19 +0900
|
5
|
+
Message-Id: <201407171056.s6HAuIEE027507@aneyakoji.example.jp>
|
6
|
+
Received: from localhost (localhost [local]);
|
7
|
+
by localhost (OpenSMTPD) with ESMTPA id 700fd087;
|
8
|
+
for <kijitora@example.jp>;
|
9
|
+
Thu, 17 Jul 2014 11:15:48 +0000 (UTC)
|
10
|
+
Subject: Delivery status notification: error
|
11
|
+
From: Mailer Daemon <MAILER-DAEMON@aneyakoji.example.jp>
|
12
|
+
To: kijitora@example.jp
|
13
|
+
Date: Thu, 17 Jul 2014 11:15:48 +0000 (UTC)
|
14
|
+
|
15
|
+
Hi!
|
16
|
+
|
17
|
+
This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail.
|
18
|
+
|
19
|
+
An error has occurred while attempting to deliver a message for
|
20
|
+
the following list of recipients:
|
21
|
+
|
22
|
+
mailboxfull@example.jp: 550 5.2.2 <mailboxfull@example.jp>... Mailbox Full
|
23
|
+
userunknown@example.jp: 550 5.1.1 <userunknown@example.jp>... User Unknown
|
24
|
+
|
25
|
+
Below is a copy of the original message:
|
26
|
+
|
27
|
+
Received: from [127.0.0.1] (localhost [127.0.0.1]);
|
28
|
+
by localhost (OpenSMTPD) with ESMTP id 966254b0;
|
29
|
+
Thu, 17 Jul 2014 11:15:29 +0000 (UTC)
|
30
|
+
Subject: test from OpenSMTPD
|
31
|
+
From: kijitora@example.jp
|
32
|
+
|
33
|
+
test
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from vagrant-centos65.vagrantup.com (c135.kyoto.example.ne.jp [192.0.2.135])
|
3
|
+
by 6jo.example.jp (V8/cf) with ESMTP id s9OApEx7008965
|
4
|
+
for <shironeko@example.jp>; Fri, 24 Oct 2014 19:51:15 +0900
|
5
|
+
X-SenderID: Sendmail Sender-ID Filter v1.0.0 6jo.example.jp s9OApEx7008965
|
6
|
+
Authentication-Results: 6jo.example.jp; sender-id=fail (MalformedDomain) header.from=MAILER-DAEMON@localhost
|
7
|
+
Message-Id: <201410241051.s9OApEx7008965@6jo.example.jp>
|
8
|
+
Received: from localhost (localhost [local]);
|
9
|
+
by localhost (OpenSMTPD) with ESMTPA id c3832c27;
|
10
|
+
for <shironeko@example.jp>;
|
11
|
+
Fri, 24 Oct 2014 10:51:13 +0000 (UTC)
|
12
|
+
Subject: Delivery status notification: error
|
13
|
+
From: Mailer Daemon <MAILER-DAEMON@6jo.example.jp>
|
14
|
+
To: shironeko@example.jp
|
15
|
+
Date: Fri, 24 Oct 2014 10:51:13 +0000 (UTC)
|
16
|
+
|
17
|
+
Hi!
|
18
|
+
|
19
|
+
This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail.
|
20
|
+
|
21
|
+
An error has occurred while attempting to deliver a message for
|
22
|
+
the following list of recipients:
|
23
|
+
|
24
|
+
kijitora@neko.example.jp: Domain does not exist
|
25
|
+
|
26
|
+
Below is a copy of the original message:
|
27
|
+
|
28
|
+
Received: from [127.0.0.1] (localhost [127.0.0.1]);
|
29
|
+
by localhost (OpenSMTPD) with ESMTP id a6bdcb6d;
|
30
|
+
for <kijitora@neko.example.jp>;
|
31
|
+
Fri, 24 Oct 2014 10:50:33 +0000 (UTC)
|
32
|
+
Subject: TEST
|
33
|
+
From: "Shironeko, Nyanko" <shironeko@example.jp>
|
34
|
+
To: "Kijitora" <kijitora@example.jp>
|
35
|
+
|
36
|
+
TEST
|
@@ -0,0 +1,40 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from vagrant-centos65.vagrantup.com (c135.kyoto.example.ne.jp [192.0.2.135])
|
3
|
+
by 6jo.example.jp (V8/cf) with ESMTP id s9OCUk6P029335
|
4
|
+
for <shironeko@example.jp>; Fri, 24 Oct 2014 21:30:47 +0900
|
5
|
+
X-SenderID: Sendmail Sender-ID Filter v1.0.0 6jo.example.jp s9OCUk6P029335
|
6
|
+
Authentication-Results: 6jo.example.jp; sender-id=fail (MalformedDomain) header.from=MAILER-DAEMON@localhost
|
7
|
+
Message-Id: <201410241230.s9OCUk6P029335@6jo.example.jp>
|
8
|
+
Received: from localhost (localhost [local]);
|
9
|
+
by localhost (OpenSMTPD) with ESMTPA id b945e617;
|
10
|
+
for <shironeko@example.jp>;
|
11
|
+
Fri, 24 Oct 2014 12:30:45 +0000 (UTC)
|
12
|
+
Subject: Delivery status notification: warning
|
13
|
+
From: Mailer Daemon <MAILER-DAEMON@6jo.example.jp>
|
14
|
+
To: shironeko@example.jp
|
15
|
+
Date: Fri, 24 Oct 2014 12:30:45 +0000 (UTC)
|
16
|
+
|
17
|
+
Hi!
|
18
|
+
|
19
|
+
This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail.
|
20
|
+
|
21
|
+
A message is delayed for more than 10 minutes for the following
|
22
|
+
list of recipients:
|
23
|
+
|
24
|
+
kijitora@neko.example.jp: Network error on destination MXs
|
25
|
+
|
26
|
+
Please note that this is only a temporary failure report.
|
27
|
+
The message is kept in the queue for up to 4 days.
|
28
|
+
You DO NOT NEED to re-send the message to these recipients.
|
29
|
+
|
30
|
+
Below is a copy of the original message:
|
31
|
+
|
32
|
+
Received: from [127.0.0.1] (localhost [127.0.0.1]);
|
33
|
+
by localhost (OpenSMTPD) with ESMTP id 74009b37;
|
34
|
+
for <kijitora@neko.example.jp>;
|
35
|
+
Fri, 24 Oct 2014 12:24:05 +0000 (UTC)
|
36
|
+
Subject: TEST
|
37
|
+
From: Shironeko <shironeko@example.jp>
|
38
|
+
To: <kijitora@neko.example.jp>
|
39
|
+
|
40
|
+
TEST
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from vagrant-centos65.vagrantup.com (c135.kyoto.example.ne.jp [192.0.2.135])
|
3
|
+
by 6jo.example.co.jp (V8/cf) with ESMTP id sB1HmVgA025751
|
4
|
+
for <shironeko@example.co.jp>; Tue, 2 Dec 2014 02:48:32 +0900
|
5
|
+
X-SenderID: Sendmail Sender-ID Filter v1.0.0 6jo.example.co.jp sB1HmVgA025751
|
6
|
+
Authentication-Results: 6jo.example.co.jp; sender-id=fail (MalformedDomain) header.from=MAILER-DAEMON@localhost
|
7
|
+
Message-Id: <201412011748.sB1HmVgA025751@6jo.example.co.jp>
|
8
|
+
Received: from localhost (localhost [local]);
|
9
|
+
by localhost (OpenSMTPD) with ESMTPA id df97d8e0;
|
10
|
+
for <shironeko@example.co.jp>;
|
11
|
+
Mon, 1 Dec 2014 17:48:29 +0000 (UTC)
|
12
|
+
Subject: Delivery status notification: error
|
13
|
+
From: Mailer Daemon <poostmaster@example.co.jp>
|
14
|
+
To: shironeko@example.co.jp
|
15
|
+
Date: Mon, 1 Dec 2014 17:48:29 +0000 (UTC)
|
16
|
+
|
17
|
+
Hi!
|
18
|
+
|
19
|
+
This is the MAILER-DAEMON, please DO NOT REPLY to this e-mail.
|
20
|
+
|
21
|
+
An error has occurred while attempting to deliver a message for
|
22
|
+
the following list of recipients:
|
23
|
+
|
24
|
+
kijitora@mail.example.co.jp: Envelope expired
|
25
|
+
|
26
|
+
Below is a copy of the original message:
|
27
|
+
|
28
|
+
Received: from [127.0.0.1] (localhost [127.0.0.1]);
|
29
|
+
by localhost (OpenSMTPD) with ESMTP id 74009b37;
|
30
|
+
for <kijitora@mail.example.co.jp>;
|
31
|
+
Fri, 24 Oct 2014 12:24:05 +0000 (UTC)
|
32
|
+
Subject: Nyaaaan
|
33
|
+
From: Shironeko <shironeko@example.co.jp>
|
34
|
+
To: <kijitora@mail.example.co.jp>
|
35
|
+
|
36
|
+
Nyaaaaaa
|
@@ -0,0 +1,60 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: shironeko@mx.example.jp
|
3
|
+
Delivered-To: shironeko@mx.example.jp
|
4
|
+
Received: from p351355.pool.example.ne.jp (p351355.pool.example.ne.jp [192.0.2.31])
|
5
|
+
by mx.mx.example.jp (Postfix) with ESMTP id 0000000000
|
6
|
+
for <shironeko@mx.example.jp>; Thu, 29 Apr 2013 23:45:32 +0900 (JST)
|
7
|
+
Received: by p351355.pool.example.ne.jp (Postfix)
|
8
|
+
id 00000000000; Thu, 29 Apr 2013 23:45:32 +0900 (JST)
|
9
|
+
Date: Thu, 29 Apr 2013 23:45:32 +0900 (JST)
|
10
|
+
From: MAILER-DAEMON@p351355.pool.example.ne.jp (Mail Delivery System)
|
11
|
+
Subject: Undelivered Mail Returned to Sender
|
12
|
+
To: shironeko@mx.example.jp
|
13
|
+
Auto-Submitted: auto-replied
|
14
|
+
MIME-Version: 1.0
|
15
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
16
|
+
boundary="FFFFFFFFFFFF.0000000000000/p351355.pool.example.ne.jp"
|
17
|
+
Message-Id: <20130429234532.00000000000@p351355.pool.example.ne.jp>
|
18
|
+
|
19
|
+
This is a MIME-encapsulated message.
|
20
|
+
|
21
|
+
--FFFFFFFFFFFF.0000000000000/p351355.pool.example.ne.jp
|
22
|
+
Content-Description: Notification
|
23
|
+
Content-Type: text/plain; charset=us-ascii
|
24
|
+
|
25
|
+
This is the mail system at host p351355.pool.example.ne.jp.
|
26
|
+
|
27
|
+
I'm sorry to have to inform you that your message could not
|
28
|
+
be delivered to one or more recipients. It's attached below.
|
29
|
+
|
30
|
+
For further assistance, please send mail to <postmaster>
|
31
|
+
|
32
|
+
If you do so, please include this problem report. You can
|
33
|
+
delete your own text from the attached returned message.
|
34
|
+
|
35
|
+
The mail system
|
36
|
+
|
37
|
+
<r@p351355.pool.example.ne.jp> (expanded from <kijitora@example.org>): user
|
38
|
+
unknown. Command output: procmail: Couldn't create "/var/spool/mail/neko" id:
|
39
|
+
r.example.org: No such user
|
40
|
+
|
41
|
+
--FFFFFFFFFFFF.0000000000000/p351355.pool.example.ne.jp
|
42
|
+
Content-Description: Delivery report
|
43
|
+
Content-Type: message/delivery-status
|
44
|
+
|
45
|
+
Reporting-MTA: dns; p351355.pool.example.ne.jp
|
46
|
+
X-Postfix-Queue-ID: 00000000000
|
47
|
+
X-Postfix-Sender: rfc822; shironeko@mx.example.jp
|
48
|
+
Arrival-Date: Thu, 29 Apr 2013 23:45:41 +0900 (JST)
|
49
|
+
|
50
|
+
Final-Recipient: rfc822; r@p351355.pool.example.ne.jp
|
51
|
+
Original-Recipient: rfc822;kijitora@example.org
|
52
|
+
Action: failed
|
53
|
+
Status: 5.1.1
|
54
|
+
Diagnostic-Code: x-unix; procmail: Couldn't create "/var/spool/mail/neko" id:
|
55
|
+
r.example.org: No such user
|
56
|
+
|
57
|
+
--FFFFFFFFFFFF.0000000000000/p351355.pool.example.ne.jp
|
58
|
+
Content-Description: Undelivered Message
|
59
|
+
Content-Type: message/rfc822
|
60
|
+
|
@@ -0,0 +1,78 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from smtp.example.com (c2135.example.ne.jp [192.0.2.135])
|
3
|
+
by mx.example.co.jp (V8/cf) with ESMTP id s5LIZIfM028477
|
4
|
+
for <kijitora@example.jp>; Sun, 22 Jun 2014 03:35:19 +0900
|
5
|
+
Received: by smtp.example.com (Postfix)
|
6
|
+
id 0A3541FB98; Sat, 21 Jun 2014 18:35:16 +0000 (UTC)
|
7
|
+
Date: Sat, 21 Jun 2014 18:35:16 +0000 (UTC)
|
8
|
+
From: MAILER-DAEMON@smtp.example.com (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: kijitora@example.jp
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="7874F1FB8E.1403375716/smtp.example.com"
|
15
|
+
Message-Id: <20140621183516.0A3541FB98@smtp.example.com>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--7874F1FB8E.1403375716/smtp.example.com
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host smtp.example.com.
|
24
|
+
|
25
|
+
I'm sorry to have to inform you that your message could not
|
26
|
+
be delivered to one or more recipients. It's attached below.
|
27
|
+
|
28
|
+
For further assistance, please send mail to postmaster.
|
29
|
+
|
30
|
+
If you do so, please include this problem report. You can
|
31
|
+
delete your own text from the attached returned message.
|
32
|
+
|
33
|
+
The mail system
|
34
|
+
|
35
|
+
<filtered@example.co.jp>: host mx.example.co.jp[192.0.2.153] said: 550 5.2.1
|
36
|
+
<filtered@example.co.jp>... User Unknown (in reply to RCPT TO command)
|
37
|
+
|
38
|
+
<userunknown@example.co.jp>: host mx.example.co.jp[192.0.2.153] said: 550
|
39
|
+
5.1.1 <userunknown@example.co.jp>... User Unknown (in reply to RCPT TO
|
40
|
+
command)
|
41
|
+
|
42
|
+
--7874F1FB8E.1403375716/smtp.example.com
|
43
|
+
Content-Description: Delivery report
|
44
|
+
Content-Type: message/delivery-status
|
45
|
+
|
46
|
+
Reporting-MTA: dns; smtp.example.com
|
47
|
+
X-Postfix-Queue-ID: 7874F1FB8E
|
48
|
+
X-Postfix-Sender: rfc822; kijitora@example.jp
|
49
|
+
Arrival-Date: Sat, 21 Jun 2014 18:34:34 +0000 (UTC)
|
50
|
+
|
51
|
+
Final-Recipient: rfc822; filtered@example.co.jp
|
52
|
+
Original-Recipient: rfc822;filtered@example.co.jp
|
53
|
+
Action: failed
|
54
|
+
Status: 5.2.1
|
55
|
+
Remote-MTA: dns; mx.example.co.jp
|
56
|
+
Diagnostic-Code: smtp; 550 5.2.1 <filtered@example.co.jp>... User Unknown
|
57
|
+
|
58
|
+
Final-Recipient: rfc822; userunknown@example.co.jp
|
59
|
+
Original-Recipient: rfc822;userunknown@example.co.jp
|
60
|
+
Action: failed
|
61
|
+
Status: 5.1.1
|
62
|
+
Remote-MTA: dns; mx.example.co.jp
|
63
|
+
Diagnostic-Code: smtp; 550 5.1.1 <userunknown@example.co.jp>... User Unknown
|
64
|
+
|
65
|
+
--7874F1FB8E.1403375716/smtp.example.com
|
66
|
+
Content-Description: Undelivered Message
|
67
|
+
Content-Type: message/rfc822
|
68
|
+
|
69
|
+
Return-Path: <kijitora@example.jp>
|
70
|
+
Received: from [127.0.0.1] (unknown [172.25.191.1])
|
71
|
+
by smtp.example.com (Postfix) with ESMTP id 7874F1FB8E;
|
72
|
+
Sat, 21 Jun 2014 18:34:34 +0000 (UTC)
|
73
|
+
Subject: test
|
74
|
+
From: kijitora@example.jp
|
75
|
+
|
76
|
+
test
|
77
|
+
|
78
|
+
--7874F1FB8E.1403375716/smtp.example.com--
|
@@ -0,0 +1,71 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: postmaster@e1.example.ne.jp
|
3
|
+
Delivered-To: postmaster@e1.example.ne.jp
|
4
|
+
Received: by e1.example.ne.jp (Postfix)
|
5
|
+
id X0000000000000; Thu, 1 Jul 2014 23:45:01 +0900 (JST)
|
6
|
+
Date: Thu, 1 Jul 2014 23:45:01 +0900 (JST)
|
7
|
+
From: MAILER-DAEMON@e1.example.ne.jp (Mail Delivery System)
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
To: postmaster@e1.example.ne.jp
|
10
|
+
Auto-Submitted: auto-replied
|
11
|
+
MIME-Version: 1.0
|
12
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
13
|
+
boundary="X1111111111111.000000000000/e1.example.ne.jp"
|
14
|
+
Message-Id: <20140701045401.X0000000000000@e1.example.ne.jp>
|
15
|
+
|
16
|
+
This is a MIME-encapsulated message.
|
17
|
+
|
18
|
+
--X1111111111111.000000000000/e1.example.ne.jp
|
19
|
+
Content-Description: Notification
|
20
|
+
Content-Type: text/plain; charset=us-ascii
|
21
|
+
|
22
|
+
This is the mail system at host e1.example.ne.jp.
|
23
|
+
|
24
|
+
I'm sorry to have to inform you that your message could not
|
25
|
+
be delivered to one or more recipients. It's attached below.
|
26
|
+
|
27
|
+
For further assistance, please send mail to postmaster.
|
28
|
+
|
29
|
+
If you do so, please include this problem report. You can
|
30
|
+
delete your own text from the attached returned message.
|
31
|
+
|
32
|
+
The mail system
|
33
|
+
|
34
|
+
<kijitora@example.net>: host mail.example.net[192.0.2.78] said:
|
35
|
+
550 Unknown user kijitora@example.net (in reply to end of DATA
|
36
|
+
command)
|
37
|
+
|
38
|
+
--X1111111111111.000000000000/e1.example.ne.jp
|
39
|
+
Content-Description: Delivery report
|
40
|
+
Content-Type: message/delivery-status
|
41
|
+
|
42
|
+
Reporting-MTA: dns; e1.example.ne.jp
|
43
|
+
X-Postfix-Queue-ID: X1111111111111
|
44
|
+
X-Postfix-Sender: rfc822; postmaster@e1.example.ne.jp
|
45
|
+
Arrival-Date: Thu, 1 Jul 2014 23:45:01 +0900 (JST)
|
46
|
+
|
47
|
+
Final-Recipient: rfc822; kijitora@example.net
|
48
|
+
Original-Recipient: rfc822;kijitora@example.net
|
49
|
+
Action: failed
|
50
|
+
Status: 5.0.0
|
51
|
+
Remote-MTA: dns; mail.example.net
|
52
|
+
Diagnostic-Code: smtp; 550 Unknown user kijitora@example.net
|
53
|
+
|
54
|
+
--X1111111111111.000000000000/e1.example.ne.jp
|
55
|
+
Content-Description: Undelivered Message
|
56
|
+
Content-Type: message/rfc822
|
57
|
+
|
58
|
+
Received: from localhost (localhost.localdomain [127.0.0.1])
|
59
|
+
by e1.example.ne.jp (Postfix) with ESMTP id X1111111111111
|
60
|
+
for <kijitora@example.net>; Thu, 1 Jul 2014 23:45:01 +0900 (JST)
|
61
|
+
Received: by e1.example.ne.jp (Postfix, from userid 255)
|
62
|
+
id 97DAA44A0204; Thu, 1 Jul 2014 23:45:59 +0900 (JST)
|
63
|
+
To: kijitora@example.net
|
64
|
+
Subject: Message
|
65
|
+
From: shironeko@example.jp
|
66
|
+
Mime-Version: 1.0
|
67
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
68
|
+
Content-Transfer-Encoding: 7bit
|
69
|
+
Message-Id: <20140701000000.000000000000@e1.example.ne.jp>
|
70
|
+
Date: Thu, 1 Jul 2014 23:45:59 +0900 (JST)
|
71
|
+
|
@@ -0,0 +1,89 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mfgw229.ocn.ad.jp (mfgw229.ocn.ad.jp [122.1.235.148])
|
3
|
+
by example.ne.jp (Postfix) with ESMTP id A810A2671
|
4
|
+
for <shironeko@example.ne.jp>; Mon, 24 May 2010 19:06:50 +0900 (JST)
|
5
|
+
Received: from mv-osn-hcb007.ocn.ad.jp (mv-osn-hcb007.ocn.ad.jp [118.23.180.69])
|
6
|
+
by mfgw229.ocn.ad.jp (Postfix) with ESMTP id 9697B548263
|
7
|
+
for <shironeko@example.ne.jp>; Mon, 24 May 2010 19:06:50 +0900 (JST)
|
8
|
+
Received: by mv-osn-hcb007.ocn.ad.jp (Postfix)
|
9
|
+
id 7FE851AC10D; Mon, 24 May 2010 19:06:50 +0900 (JST)
|
10
|
+
Date: Mon, 24 May 2010 19:06:50 +0900 (JST)
|
11
|
+
From: MAILER-DAEMON@mv-osn-hcb007.ocn.ad.jp (Mail Delivery System)
|
12
|
+
Subject: Undelivered Mail Returned to Sender
|
13
|
+
To: shironeko@example.ne.jp
|
14
|
+
Auto-Submitted: auto-replied
|
15
|
+
MIME-Version: 1.0
|
16
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
17
|
+
boundary="6265E1AC124.1274695610/mv-osn-hcb007.ocn.ad.jp"
|
18
|
+
Message-Id: <20100524100650.7FE851AC10D@mv-osn-hcb007.ocn.ad.jp>
|
19
|
+
|
20
|
+
This is a MIME-encapsulated message.
|
21
|
+
|
22
|
+
--6265E1AC124.1274695610/mv-osn-hcb007.ocn.ad.jp
|
23
|
+
Content-Description: Notification
|
24
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
25
|
+
|
26
|
+
This is the mail system at host mv-osn-hcb007.ocn.ad.jp.
|
27
|
+
|
28
|
+
$B$3$N%a!<%k$H6&$KJV?.$5$l$F$$$k%a!<%k$O0l$D0J>e$N08@h$KBP(B
|
29
|
+
$B$7$FG[?.$G$-$^$;$s$G$7$?!#(B
|
30
|
+
|
31
|
+
I'm sorry to have to inform you that the message returned
|
32
|
+
below could not be delivered to one or more destinations.
|
33
|
+
|
34
|
+
$B2?$+<ALd$,$4$6$$$^$7$?$i!"(B<support@ocn.ad.jp>$B$X$4O"Mm$/$@$5$$!#(B
|
35
|
+
|
36
|
+
For further assistance, please contact <support@ocn.ad.jp>
|
37
|
+
|
38
|
+
$B$4<ALd$N:]$K$O!"$3$N>c32%l%]!<%H$r0l=o$K$*Aw$j$/$@$5$$!#(B
|
39
|
+
$B$3$N%a!<%k$KE:IU$5$l$F$$$k$"$J$?$N85$N%a!<%k$O:o=|$7$F$b(B
|
40
|
+
$B9=$$$^$;$s(B
|
41
|
+
|
42
|
+
If you do so, please include this problem report. You can
|
43
|
+
delete your own text from the message returned below.
|
44
|
+
|
45
|
+
|
46
|
+
<kijitora@example.co.jp>: host mx01.example.co.jp[192.0.2.8] said:
|
47
|
+
550 5.1.1 Address rejected kijitora@example.co.jp (in reply to
|
48
|
+
RCPT TO command)
|
49
|
+
|
50
|
+
--6265E1AC124.1274695610/mv-osn-hcb007.ocn.ad.jp
|
51
|
+
Content-Description: Delivery report
|
52
|
+
Content-Type: message/delivery-status
|
53
|
+
|
54
|
+
Reporting-MTA: dns; mv-osn-hcb007.ocn.ad.jp
|
55
|
+
X-Postfix-Queue-ID: 6265E1AC124
|
56
|
+
X-Postfix-Sender: rfc822; shironeko@example.ne.jp
|
57
|
+
Arrival-Date: Mon, 24 May 2010 19:06:50 +0900 (JST)
|
58
|
+
|
59
|
+
Final-Recipient: rfc822; kijitora@example.co.jp
|
60
|
+
Original-Recipient: rfc822;kijitora@example.co.jp
|
61
|
+
Action: failed
|
62
|
+
Status: 5.1.1
|
63
|
+
Remote-MTA: dns; mx01.example.co.jp
|
64
|
+
Diagnostic-Code: smtp; 550 5.1.1 Address rejected
|
65
|
+
kijitora@example.co.jp
|
66
|
+
|
67
|
+
--6265E1AC124.1274695610/mv-osn-hcb007.ocn.ad.jp
|
68
|
+
Content-Description: Undelivered Message
|
69
|
+
Content-Type: message/rfc822
|
70
|
+
|
71
|
+
Received: from r.example.ne.jp (mv-osn-hcb007 [118.23.180.69])
|
72
|
+
by mv-osn-hcb007.ocn.ad.jp (Postfix) with ESMTP id 6265E1AC124
|
73
|
+
for <kijitora@example.co.jp>; Mon, 24 May 2010 19:06:50 +0900 (JST)
|
74
|
+
Received: from [192.0.2.31] (c135.kyoto.ocn.ne.jp [192.0.2.135])
|
75
|
+
by r.example.ne.jp (Postfix) with ESMTP
|
76
|
+
for <kijitora@example.co.jp>; Mon, 24 May 2010 19:06:50 +0900 (JST)
|
77
|
+
Message-Id: <A8F82EDD-E518-4F5C-8C70-BC4EFF24AB9F@example.ne.jp>
|
78
|
+
From: shironeko <shironeko@example.ne.jp>
|
79
|
+
To: kijitora@example.co.jp
|
80
|
+
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
81
|
+
Content-Transfer-Encoding: 7bit
|
82
|
+
Mime-Version: 1.0 (Apple Message framework v936)
|
83
|
+
Subject: TEST
|
84
|
+
Date: Mon, 24 May 2010 19:06:49 +0900
|
85
|
+
X-Mailer: Apple Mail (2.936)
|
86
|
+
|
87
|
+
test
|
88
|
+
|
89
|
+
--6265E1AC124.1274695610/mv-osn-hcb007.ocn.ad.jp--
|