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,86 @@
|
|
1
|
+
From MAILER-DAEMON Fri Feb 13 02:45:58 2015
|
2
|
+
Return-Path: <>
|
3
|
+
X-Original-To: root@vagrant-centos65.vagrantup.com
|
4
|
+
Delivered-To: root@vagrant-centos65.vagrantup.com
|
5
|
+
Received: by vagrant-centos65.vagrantup.com (Postfix)
|
6
|
+
id BE7D320C11; Fri, 13 Feb 2015 02:45:58 +0000 (UTC)
|
7
|
+
Date: Fri, 13 Feb 2015 02:45:58 +0000 (UTC)
|
8
|
+
From: MAILER-DAEMON@vagrant-centos65.vagrantup.com (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: root@vagrant-centos65.vagrantup.com
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="1BC7520C0F.1423795558/vagrant-centos65.vagrantup.com"
|
15
|
+
Message-Id: <20150213024558.BE7D320C11@vagrant-centos65.vagrantup.com>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--1BC7520C0F.1423795558/vagrant-centos65.vagrantup.com
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host vagrant-centos65.vagrantup.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
|
+
<kijitora@example.jp>: host mx.example.jp[192.0.2.22] said: 553 5.1.8
|
36
|
+
<root@vagrant-centos65.vagrantup.com>... Domain of sender address
|
37
|
+
root@vagrant-centos65.vagrantup.com does not exist (in reply to MAIL FROM
|
38
|
+
command)
|
39
|
+
|
40
|
+
<noraneko@example.jp>: host mx.example.jp[192.0.2.22] said: 553
|
41
|
+
5.1.8 <root@vagrant-centos65.vagrantup.com>... Domain of sender address
|
42
|
+
root@vagrant-centos65.vagrantup.com does not exist (in reply to MAIL FROM
|
43
|
+
command)
|
44
|
+
|
45
|
+
--1BC7520C0F.1423795558/vagrant-centos65.vagrantup.com
|
46
|
+
Content-Description: Delivery report
|
47
|
+
Content-Type: message/delivery-status
|
48
|
+
|
49
|
+
Reporting-MTA: dns; vagrant-centos65.vagrantup.com
|
50
|
+
X-Postfix-Queue-ID: 1BC7520C0F
|
51
|
+
X-Postfix-Sender: rfc822; root@vagrant-centos65.vagrantup.com
|
52
|
+
Arrival-Date: Fri, 13 Feb 2015 02:45:58 +0000 (UTC)
|
53
|
+
|
54
|
+
Final-Recipient: rfc822; kijitora@example.jp
|
55
|
+
Original-Recipient: rfc822;kijitora@example.jp
|
56
|
+
Action: failed
|
57
|
+
Status: 5.1.8
|
58
|
+
Remote-MTA: dns; mx.example.jp
|
59
|
+
Diagnostic-Code: smtp; 553 5.1.8 <root@vagrant-centos65.vagrantup.com>...
|
60
|
+
Domain of sender address root@vagrant-centos65.vagrantup.com does not exist
|
61
|
+
|
62
|
+
Final-Recipient: rfc822; noraneko@example.jp
|
63
|
+
Original-Recipient: rfc822;noraneko@example.jp
|
64
|
+
Action: failed
|
65
|
+
Status: 5.1.8
|
66
|
+
Remote-MTA: dns; mx.example.jp
|
67
|
+
Diagnostic-Code: smtp; 553 5.1.8 <root@vagrant-centos65.vagrantup.com>...
|
68
|
+
Domain of sender address root@vagrant-centos65.vagrantup.com does not exist
|
69
|
+
|
70
|
+
--1BC7520C0F.1423795558/vagrant-centos65.vagrantup.com
|
71
|
+
Content-Description: Undelivered Message
|
72
|
+
Content-Type: message/rfc822
|
73
|
+
|
74
|
+
Return-Path: <root@vagrant-centos65.vagrantup.com>
|
75
|
+
Received: by vagrant-centos65.vagrantup.com (Postfix, from userid 0)
|
76
|
+
id 1BC7520C0F; Fri, 13 Feb 2015 02:45:58 +0000 (UTC)
|
77
|
+
To: kijitora@example.jp,noraneko@example.jp
|
78
|
+
Subject: Nyaaaan
|
79
|
+
Message-Id: <20150213024558.1BC7520C0F@vagrant-centos65.vagrantup.com>
|
80
|
+
Date: Fri, 13 Feb 2015 02:45:58 +0000 (UTC)
|
81
|
+
From: root@vagrant-centos65.vagrantup.com (root)
|
82
|
+
|
83
|
+
Nyaaan
|
84
|
+
|
85
|
+
--1BC7520C0F.1423795558/vagrant-centos65.vagrantup.com--
|
86
|
+
|
@@ -0,0 +1,71 @@
|
|
1
|
+
From MAILER-DAEMON Fri Feb 13 02:47:36 2015
|
2
|
+
Return-Path: <>
|
3
|
+
X-Original-To: root@6kaku.cubicroot.jp
|
4
|
+
Delivered-To: root@6kaku.cubicroot.jp
|
5
|
+
Received: by 6kaku.cubicroot.jp (Postfix)
|
6
|
+
id 7628420C1A; Fri, 13 Feb 2015 02:47:36 +0000 (UTC)
|
7
|
+
Date: Fri, 13 Feb 2015 02:47:36 +0000 (UTC)
|
8
|
+
From: MAILER-DAEMON@6kaku.cubicroot.jp (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: root@6kaku.cubicroot.jp
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="BB8E820C16.1423795656/6kaku.cubicroot.jp"
|
15
|
+
Message-Id: <20150213024736.7628420C1A@6kaku.cubicroot.jp>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--BB8E820C16.1423795656/6kaku.cubicroot.jp
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host 6kaku.cubicroot.jp.
|
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
|
+
<userunknown@cubicroot.jp>: host mx.cubicroot.jp[173.255.246.153] said: 550
|
36
|
+
5.1.1 <userunknown@cubicroot.jp>... User Unknown (in reply to RCPT TO
|
37
|
+
command)
|
38
|
+
|
39
|
+
--BB8E820C16.1423795656/6kaku.cubicroot.jp
|
40
|
+
Content-Description: Delivery report
|
41
|
+
Content-Type: message/delivery-status
|
42
|
+
|
43
|
+
Reporting-MTA: dns; 6kaku.cubicroot.jp
|
44
|
+
X-Postfix-Queue-ID: BB8E820C16
|
45
|
+
X-Postfix-Sender: rfc822; root@6kaku.cubicroot.jp
|
46
|
+
Arrival-Date: Fri, 13 Feb 2015 02:47:35 +0000 (UTC)
|
47
|
+
|
48
|
+
Final-Recipient: rfc822; userunknown@cubicroot.jp
|
49
|
+
Original-Recipient: rfc822;userunknown@cubicroot.jp
|
50
|
+
Action: failed
|
51
|
+
Status: 5.1.1
|
52
|
+
Remote-MTA: dns; mx.cubicroot.jp
|
53
|
+
Diagnostic-Code: smtp; 550 5.1.1 <userunknown@cubicroot.jp>... User Unknown
|
54
|
+
|
55
|
+
--BB8E820C16.1423795656/6kaku.cubicroot.jp
|
56
|
+
Content-Description: Undelivered Message
|
57
|
+
Content-Type: message/rfc822
|
58
|
+
|
59
|
+
Return-Path: <root@6kaku.cubicroot.jp>
|
60
|
+
Received: by 6kaku.cubicroot.jp (Postfix, from userid 0)
|
61
|
+
id BB8E820C16; Fri, 13 Feb 2015 02:47:35 +0000 (UTC)
|
62
|
+
To: userunknown@cubicroot.jp
|
63
|
+
Subject: Nyaaaan
|
64
|
+
Message-Id: <20150213024735.BB8E820C16@6kaku.cubicroot.jp>
|
65
|
+
Date: Fri, 13 Feb 2015 02:47:35 +0000 (UTC)
|
66
|
+
From: root@6kaku.cubicroot.jp (root)
|
67
|
+
|
68
|
+
Nyaaan
|
69
|
+
|
70
|
+
--BB8E820C16.1423795656/6kaku.cubicroot.jp--
|
71
|
+
|
@@ -0,0 +1,81 @@
|
|
1
|
+
From MAILER-DAEMON Fri Feb 13 02:47:49 2015
|
2
|
+
Return-Path: <>
|
3
|
+
X-Original-To: root@2jo.example.jp
|
4
|
+
Delivered-To: root@2jo.example.jp
|
5
|
+
Received: by 2jo.example.jp (Postfix)
|
6
|
+
id 815C320C1A; Fri, 13 Feb 2015 02:47:49 +0000 (UTC)
|
7
|
+
Date: Fri, 13 Feb 2015 02:47:49 +0000 (UTC)
|
8
|
+
From: MAILER-DAEMON@2jo.example.jp (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: root@2jo.example.jp
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="CEEDB20C16.1423795669/2jo.example.jp"
|
15
|
+
Message-Id: <20150213024749.815C320C1A@2jo.example.jp>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--CEEDB20C16.1423795669/2jo.example.jp
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host 2jo.example.jp.
|
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
|
+
<kijitora@example.jp>: host mx.example.jp[192.0.2.22] said: 550 5.2.1
|
36
|
+
<kijitora@example.jp>... User Unknown (in reply to RCPT TO command)
|
37
|
+
|
38
|
+
<noraneko@example.jp>: host mx.example.jp[192.0.2.22] said: 550
|
39
|
+
5.2.2 <noraneko@example.jp>... Mailbox Full (in reply to RCPT TO
|
40
|
+
command)
|
41
|
+
|
42
|
+
--CEEDB20C16.1423795669/2jo.example.jp
|
43
|
+
Content-Description: Delivery report
|
44
|
+
Content-Type: message/delivery-status
|
45
|
+
|
46
|
+
Reporting-MTA: dns; 2jo.example.jp
|
47
|
+
X-Postfix-Queue-ID: CEEDB20C16
|
48
|
+
X-Postfix-Sender: rfc822; root@2jo.example.jp
|
49
|
+
Arrival-Date: Fri, 13 Feb 2015 02:47:48 +0000 (UTC)
|
50
|
+
|
51
|
+
Final-Recipient: rfc822; kijitora@example.jp
|
52
|
+
Original-Recipient: rfc822;kijitora@example.jp
|
53
|
+
Action: failed
|
54
|
+
Status: 5.2.1
|
55
|
+
Remote-MTA: dns; mx.example.jp
|
56
|
+
Diagnostic-Code: smtp; 550 5.2.1 <kijitora@example.jp>... User Unknown
|
57
|
+
|
58
|
+
Final-Recipient: rfc822; noraneko@example.jp
|
59
|
+
Original-Recipient: rfc822;noraneko@example.jp
|
60
|
+
Action: failed
|
61
|
+
Status: 5.2.2
|
62
|
+
Remote-MTA: dns; mx.example.jp
|
63
|
+
Diagnostic-Code: smtp; 550 5.2.2 <noraneko@example.jp>... Mailbox Full
|
64
|
+
|
65
|
+
--CEEDB20C16.1423795669/2jo.example.jp
|
66
|
+
Content-Description: Undelivered Message
|
67
|
+
Content-Type: message/rfc822
|
68
|
+
|
69
|
+
Return-Path: <root@2jo.example.jp>
|
70
|
+
Received: by 2jo.example.jp (Postfix, from userid 0)
|
71
|
+
id CEEDB20C16; Fri, 13 Feb 2015 02:47:48 +0000 (UTC)
|
72
|
+
To: kijitora@example.jp,noraneko@example.jp
|
73
|
+
Subject: Nyaaaan
|
74
|
+
Message-Id: <20150213024748.CEEDB20C16@2jo.example.jp>
|
75
|
+
Date: Fri, 13 Feb 2015 02:47:48 +0000 (UTC)
|
76
|
+
From: root@2jo.example.jp (root)
|
77
|
+
|
78
|
+
Nyaaan
|
79
|
+
|
80
|
+
--CEEDB20C16.1423795669/2jo.example.jp--
|
81
|
+
|
@@ -0,0 +1,68 @@
|
|
1
|
+
From MAILER-DAEMON Fri Feb 13 02:48:13 2015
|
2
|
+
Return-Path: <>
|
3
|
+
X-Original-To: root@2jo.example.jp
|
4
|
+
Delivered-To: root@2jo.example.jp
|
5
|
+
Received: by 2jo.example.jp (Postfix)
|
6
|
+
id E068820C1A; Fri, 13 Feb 2015 02:48:13 +0000 (UTC)
|
7
|
+
Date: Fri, 13 Feb 2015 02:48:13 +0000 (UTC)
|
8
|
+
From: MAILER-DAEMON@2jo.example.jp (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: root@2jo.example.jp
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="DE9FF20C16.1423795693/2jo.example.jp"
|
15
|
+
Message-Id: <20150213024813.E068820C1A@2jo.example.jp>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--DE9FF20C16.1423795693/2jo.example.jp
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host 2jo.example.jp.
|
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
|
+
<kijitora@2jo.example.jp>: unknown user: "kijitora"
|
36
|
+
|
37
|
+
--DE9FF20C16.1423795693/2jo.example.jp
|
38
|
+
Content-Description: Delivery report
|
39
|
+
Content-Type: message/delivery-status
|
40
|
+
|
41
|
+
Reporting-MTA: dns; 2jo.example.jp
|
42
|
+
X-Postfix-Queue-ID: DE9FF20C16
|
43
|
+
X-Postfix-Sender: rfc822; root@2jo.example.jp
|
44
|
+
Arrival-Date: Fri, 13 Feb 2015 02:48:13 +0000 (UTC)
|
45
|
+
|
46
|
+
Final-Recipient: rfc822; kijitora@2jo.example.jp
|
47
|
+
Original-Recipient: rfc822;kijitora@2jo.example.jp
|
48
|
+
Action: failed
|
49
|
+
Status: 5.1.1
|
50
|
+
Diagnostic-Code: X-Postfix; unknown user: "kijitora"
|
51
|
+
|
52
|
+
--DE9FF20C16.1423795693/2jo.example.jp
|
53
|
+
Content-Description: Undelivered Message
|
54
|
+
Content-Type: message/rfc822
|
55
|
+
|
56
|
+
Return-Path: <root@2jo.example.jp>
|
57
|
+
Received: by 2jo.example.jp (Postfix, from userid 0)
|
58
|
+
id DE9FF20C16; Fri, 13 Feb 2015 02:48:13 +0000 (UTC)
|
59
|
+
To: kijitora@2jo.example.jp
|
60
|
+
Subject: Nyaaaan
|
61
|
+
Message-Id: <20150213024813.DE9FF20C16@2jo.example.jp>
|
62
|
+
Date: Fri, 13 Feb 2015 02:48:13 +0000 (UTC)
|
63
|
+
From: root@2jo.example.jp (root)
|
64
|
+
|
65
|
+
Nyaaan
|
66
|
+
|
67
|
+
--DE9FF20C16.1423795693/2jo.example.jp--
|
68
|
+
|
@@ -0,0 +1,69 @@
|
|
1
|
+
From MAILER-DAEMON Fri Feb 13 05:04:57 2015
|
2
|
+
Return-Path: <>
|
3
|
+
X-Original-To: root@kawaramachi.example.jp
|
4
|
+
Delivered-To: root@kawaramachi.example.jp
|
5
|
+
Received: by kawaramachi.example.jp (Postfix)
|
6
|
+
id 5908320C15; Fri, 13 Feb 2015 05:04:57 +0000 (UTC)
|
7
|
+
Date: Fri, 13 Feb 2015 05:04:57 +0000 (UTC)
|
8
|
+
From: MAILER-DAEMON@kawaramachi.example.jp (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: root@kawaramachi.example.jp
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="54EF320C12.1423803897/kawaramachi.example.jp"
|
15
|
+
Message-Id: <20150213050457.5908320C15@kawaramachi.example.jp>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--54EF320C12.1423803897/kawaramachi.example.jp
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host kawaramachi.example.jp.
|
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
|
+
<kijitora@bukkoji.example.org>: connect to
|
36
|
+
bukkoji.example.org[192.0.2.1]:25: Connection timed out
|
37
|
+
|
38
|
+
--54EF320C12.1423803897/kawaramachi.example.jp
|
39
|
+
Content-Description: Delivery report
|
40
|
+
Content-Type: message/delivery-status
|
41
|
+
|
42
|
+
Reporting-MTA: dns; kawaramachi.example.jp
|
43
|
+
X-Postfix-Queue-ID: 54EF320C12
|
44
|
+
X-Postfix-Sender: rfc822; root@kawaramachi.example.jp
|
45
|
+
Arrival-Date: Fri, 13 Feb 2015 03:12:31 +0000 (UTC)
|
46
|
+
|
47
|
+
Final-Recipient: rfc822; kijitora@bukkoji.example.org
|
48
|
+
Original-Recipient: rfc822;kijitora@bukkoji.example.org
|
49
|
+
Action: failed
|
50
|
+
Status: 4.4.1
|
51
|
+
Diagnostic-Code: X-Postfix; connect to
|
52
|
+
bukkoji.example.org[192.0.2.1]:25: Connection timed out
|
53
|
+
|
54
|
+
--54EF320C12.1423803897/kawaramachi.example.jp
|
55
|
+
Content-Description: Undelivered Message
|
56
|
+
Content-Type: message/rfc822
|
57
|
+
|
58
|
+
Return-Path: <root@kawaramachi.example.jp>
|
59
|
+
Received: by kawaramachi.example.jp (Postfix, from userid 0)
|
60
|
+
id 54EF320C12; Fri, 13 Feb 2015 03:12:31 +0000 (UTC)
|
61
|
+
To: kijitora@bukkoji.example.org
|
62
|
+
Subject: Nyaaaan
|
63
|
+
Message-Id: <20150213031231.54EF320C12@kawaramachi.example.jp>
|
64
|
+
Date: Fri, 13 Feb 2015 03:12:31 +0000 (UTC)
|
65
|
+
From: root@kawaramachi.example.jp (root)
|
66
|
+
|
67
|
+
Nyaaan
|
68
|
+
|
69
|
+
--54EF320C12.1423803897/kawaramachi.example.jp--
|
@@ -0,0 +1,73 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: by 192.0.2.22 with SMTP id fffffff000;
|
3
|
+
Thu, 20 Jan 2011 23:34:45 +0900 (JST)
|
4
|
+
Received: from mx0.example.jp (mx0.example.jp [192.0.2.9])
|
5
|
+
by mx.example.org with ESMTP id 0000000000000000000000;
|
6
|
+
Thu, 20 Jan 2011 23:34:45 +0900 (JST)
|
7
|
+
Received-SPF: pass (example.org: best guess record for domain of mx0.example.jp designates 192.0.2.9 as permitted sender) client-ip=192.0.2.9;
|
8
|
+
Received: by mx0.example.jp (Postfix)
|
9
|
+
id FFFFFFFFFFFF; Thu, 20 Jan 2011 23:34:45 +0900 (JST)
|
10
|
+
Date: Thu, 20 Jan 2011 23:34:45 +0900 (JST)
|
11
|
+
From: MAILER-DAEMON@example.jp (Mail Delivery System)
|
12
|
+
Subject: Undelivered Mail Returned to Sender
|
13
|
+
To: shironeko@cat.example.com
|
14
|
+
Auto-Submitted: auto-replied
|
15
|
+
MIME-Version: 1.0
|
16
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
17
|
+
boundary="FFFFFFFFFF.00000000/mx0.example.jp"
|
18
|
+
Content-Transfer-Encoding: 8bit
|
19
|
+
Message-Id: <000000000000000.FFFFFFFFFFFF@mx0.example.jp>
|
20
|
+
|
21
|
+
This is a MIME-encapsulated message.
|
22
|
+
|
23
|
+
--FFFFFFFFFF.00000000/mx0.example.jp
|
24
|
+
Content-Description: Notification
|
25
|
+
Content-Type: text/plain; charset=us-ascii
|
26
|
+
|
27
|
+
This is the mail system at host mx0.example.jp.
|
28
|
+
|
29
|
+
I'm sorry to have to inform you that your message could not
|
30
|
+
be delivered to one or more recipients. It's attached below.
|
31
|
+
|
32
|
+
For further assistance, please send mail to <postmaster>
|
33
|
+
|
34
|
+
If you do so, please include this problem report. You can
|
35
|
+
delete your own text from the attached returned message.
|
36
|
+
|
37
|
+
The mail system
|
38
|
+
|
39
|
+
<kijitora@example.go.jp>: host mx1.example.go.jp[192.0.2.127] said: 550 5.1.6 recipient
|
40
|
+
no longer on server: kijitora@example.go.jp (in reply to RCPT TO command)
|
41
|
+
|
42
|
+
--FFFFFFFFFF.00000000/mx0.example.jp
|
43
|
+
Content-Description: Delivery report
|
44
|
+
Content-Type: message/delivery-status
|
45
|
+
|
46
|
+
Reporting-MTA: dns; mx0.example.jp
|
47
|
+
X-Postfix-Queue-ID: FFFFFF000000
|
48
|
+
X-Postfix-Sender: rfc822; shironeko@cat.example.com
|
49
|
+
Arrival-Date: Thu, 20 Jan 2011 23:34:45 +0900 (JST)
|
50
|
+
|
51
|
+
Final-Recipient: rfc822; kijitora@example.go.jp
|
52
|
+
Action: failed
|
53
|
+
Status: 5.1.6
|
54
|
+
Remote-MTA: dns; mx1.example.go.jp
|
55
|
+
Diagnostic-Code: smtp; 550 5.1.6 recipient no longer on server: kijitora@example.go.jp
|
56
|
+
|
57
|
+
--FFFFFFFFFF.00000000/mx0.example.jp
|
58
|
+
Content-Description: Undelivered Message
|
59
|
+
Content-Type: message/rfc822
|
60
|
+
Content-Transfer-Encoding: 8bit
|
61
|
+
|
62
|
+
Received: by mx0.example.jp (Postfix, from userid 525)
|
63
|
+
id FFFFFF000000; Thu, 20 Jan 2011 23:34:45 +0900 (JST)
|
64
|
+
MIME-Version: 1.0
|
65
|
+
Content-Transfer-Encoding: 7bit
|
66
|
+
Content-Type: text/plain
|
67
|
+
Date: Thu, 20 Jan 2011 23:34:45 +0900
|
68
|
+
From: White Cat <shironeko@cat.example.com>
|
69
|
+
Subject: Nyaaaaan
|
70
|
+
To: Kijitora <kijitora@example.go.jp>
|
71
|
+
Message-Id: <0000000000000.FFFFFF000000@mx0.example.jp>
|
72
|
+
|
73
|
+
Nyaaaan
|