sisimai 4.16.0-java
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 +182 -0
- data/.travis.yml +18 -0
- data/ANALYTICAL-PRECISION +56 -0
- data/Changes +36 -0
- data/Developers.mk +129 -0
- data/Gemfile +15 -0
- data/LICENSE +25 -0
- data/Makefile +70 -0
- data/README.md +361 -0
- data/Rakefile +12 -0
- data/Repository.mk +69 -0
- data/appveyor.yml +23 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sisimai.rb +95 -0
- data/lib/sisimai/address.rb +224 -0
- data/lib/sisimai/arf.rb +338 -0
- data/lib/sisimai/data.rb +409 -0
- data/lib/sisimai/data/json.rb +40 -0
- data/lib/sisimai/data/yaml.rb +32 -0
- data/lib/sisimai/datetime.rb +511 -0
- data/lib/sisimai/mail.rb +82 -0
- data/lib/sisimai/mail/maildir.rb +82 -0
- data/lib/sisimai/mail/mbox.rb +69 -0
- data/lib/sisimai/mail/stdin.rb +53 -0
- data/lib/sisimai/mda.rb +152 -0
- data/lib/sisimai/message.rb +525 -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/amazonworkmail.rb +224 -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/office365.rb +273 -0
- data/lib/sisimai/msp/us/outlook.rb +242 -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 +54 -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 +220 -0
- data/lib/sisimai/reason.rb +234 -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 +79 -0
- data/lib/sisimai/reason/mailboxfull.rb +118 -0
- data/lib/sisimai/reason/mailererror.rb +55 -0
- data/lib/sisimai/reason/mesgtoobig.rb +82 -0
- data/lib/sisimai/reason/networkerror.rb +58 -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 +84 -0
- data/lib/sisimai/smtp/status.rb +758 -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/rfc3464-28.eml +122 -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/sendmail-38.eml +167 -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-amazonworkmail-01.eml +156 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-02.eml +160 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-03.eml +161 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-04.eml +156 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-05.eml +157 -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-office365-01.eml +102 -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-java.gemspec +29 -0
- data/sisimai.gemspec +28 -0
- metadata +680 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
X-Apparently-To: shironeko@y.example.co.jp via 182.22.66.39; Sat, 22 Nov 2014 07:23:30 +0900
|
2
|
+
X-YahooFilteredBulk: 183.79.56.197
|
3
|
+
X-YMailISG: kMIl1aUWLDsMnrU8bZDaa2fE56a1EjIYTviRozFbY8GuJRkI
|
4
|
+
KHW0IFJTADKX9Je2oaAFoxDHKMCkE0aVvopz3KVA2XfYMX7ZKiZN0.i1w9JD
|
5
|
+
w9OEy1AmKktn7GQ2bzzVHPMVO1dkRYe5w0Z_G975GbXKNyNl8OxWw63RNwaF
|
6
|
+
p1fAJbv5_hlSkM_KYhR0GW3ukATstS3MHPeL08M9J1cMls.3BZeq41iNmGZ6
|
7
|
+
dbnPI9jown0zj4B6zsWxeXNDB9TvIDAr6msjEcgcbo2nziLHyikvcJXGWvGs
|
8
|
+
ZEToewEunz6WLPXWVFC7n5xFQPnE2Uak50n6vCW6SIqnETJKkyUfI5zJA8YP
|
9
|
+
rv0ACtrchfHHsuO0o7Ahae2uJ.wS41DGqNV9oIYipnDMZVgqCaV5YaBpkGuH
|
10
|
+
OpaEo.lAFxqMq7eDqkp1xm9er38Zmn76un25JHHuQY7tIaC7cqO.dfyPh_.4
|
11
|
+
Irw4Lp0zUWzHsEbjjGXWgD3qK5WodMOy0Q2k6ztSnPYhEGzy2o.z4Cx1ew_a
|
12
|
+
m_GKkE_4km43qkEj2D0iUbAQ8PNK4Mxd6M0CE9u9gjte_j5ATtX2Ek6pqume
|
13
|
+
0vFVMMC6lDFBbICLfhdOjuFYvqsWZ5Tez6aHRH5ohrR8YqbbY1YgY5ekbD2Q
|
14
|
+
x96JNE2ExoXQpjP7a5c0o6plVLQD.IVM2or46KDbNo2K4iS88K1leAmgcqCj
|
15
|
+
wyd97ZWr7F19f9eEtTg9EhokOaZJaGH2K2o7X90BdUuIcKe_sxuW8pZ6ClkD
|
16
|
+
uNyRXG27VpBc9RWZUi6gbJFVSXrkcA_lkslYjNwCgm_GyEJ6Biv7x5i3xZvC
|
17
|
+
FO0tG3RzRTMmXtoEz0zIYTUG1v2MDN9JibGIYu8NyWKFbC2gKuhVrwhbFJlz
|
18
|
+
9rQH.O54ChQHysmiWbpIufS97T4qFCxbOMGD9Yvwmc8g9Jmkp978hqvSmYfX
|
19
|
+
wJry9PqvHk9B5TTUUxVJdCRtan3DMB.MYmaL8Js_r6xjJiT4rZ7jI7_u_A9w
|
20
|
+
zSFQOzj1GwFwlD6nTRhvS.W40aXxTDogeM0lm2.VeIEQpZmUHyy6C5PJhRll
|
21
|
+
adH7WxN4LTNvHJ.ZOD11QR9QtxTS6KQCvPedknmkyDbB0L1EOc_q_tfNk3.c
|
22
|
+
u0QnoV_xhn2osJE6IWArnicUEX224IhUI3qNMWlahghsG5te7dTbtg--
|
23
|
+
X-Originating-IP: [183.79.56.197]
|
24
|
+
Received-SPF: none (nh503-vm11.bullet.mail.kks.y.example.co.jp: domain of nh503-vm11.bullet.mail.kks.y.example.co.jp does not designate permitted sender hosts)
|
25
|
+
Authentication-Results: mta514.mail.kks.y.example.co.jp from=y.example.co.jp; domainkeys=pass (ok); dkim=pass (ok); header.i=@y.example.co.jp
|
26
|
+
Received: from 183.79.56.197 (EHLO nh503-vm11.bullet.mail.kks.y.example.co.jp) (183.79.56.197)
|
27
|
+
by mta514.mail.kks.y.example.co.jp with SMTP; Sat, 22 Nov 2014 07:23:30 +0900
|
28
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=y.example.co.jp; s=yj20110701; t=1416608610; bh=yhH6DvEukfzhRkQDlfph3QhP/2PAlFa4y0tYE2J1yT4=; h=From:To:Date:Subject:X-Yahoo-Newman-Property; b=VIXBSffIGAx7jKQzlD/lecF2ExLrXSA+gff1Cb/niR5bHATrXkYYvHlTmLHDHT3ccyhxWlqrxK+TtSQP44px71ZzC4PK58eeYC//CseWElnbsjdE1LdjtKN3vQTd0SnyeA3jVvnAfkgLPlVJ7ioJLUBT4MyWy6b4Aa4977+EMiQ=
|
29
|
+
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20110701; d=y.example.co.jp;
|
30
|
+
b=uixH7JLHcoB9PnqStOtWuiwu4AuKpVWd3iDl3PouaBFt1zoKhPxQ40hXiZRYxO+v4F+3NQfH63s+hNphgyQWzzmBMkOBbNVQ0vqDBWY4TBWJCfBDs4iVfzIbXn2AoW/KFUOaqJ4q168c8OtVFdXp0k4X+wuF8fY4BCqeRHsZ/yg=;
|
31
|
+
From: MAILER-DAEMON@y.example.co.jp
|
32
|
+
To: shironeko@y.example.co.jp
|
33
|
+
Date: Fri, 21 Nov 2014 22:23:30 -0000
|
34
|
+
Subject: Failure Notice
|
35
|
+
|
36
|
+
Sorry, we were unable to deliver your message to the following address.
|
37
|
+
|
38
|
+
<kijitora@example.ed.jp>:
|
39
|
+
Remote host said: 550 5.2.2 <kijitora@example.ed.jp>... Mailbox Full [RCPT_TO]
|
40
|
+
|
41
|
+
--- Below this line is a copy of the message.
|
42
|
+
|
43
|
+
Received: from [183.79.100.138] by nh503.bullet.mail.kks.y.example.co.jp with NNFMP; 21 Nov 2014 22:23:29 -0000
|
44
|
+
Received: from [183.79.100.134] by t501.bullet.mail.kks.y.example.co.jp with NNFMP; 21 Nov 2014 22:23:29 -0000
|
45
|
+
Received: from [127.0.0.1] by omp503.mail.kks.y.example.co.jp with NNFMP; 21 Nov 2014 22:23:29 -0000
|
46
|
+
X-Yahoo-Newman-Property: ymail-3
|
47
|
+
X-Yahoo-Newman-Id: 169798.94330.bm@omp503.mail.kks.y.example.co.jp
|
48
|
+
Received: (qmail 30892 invoked by alias); 21 Nov 2014 22:23:29 -0000
|
49
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=y.example.co.jp; s=yj20110701; t=1416608609; bh=OXnJSZZHMURLg7srttfhZDg/08xL/3vXSZDyc5x/dNk=; h=Received:X-YMail-JAS:X-Apparently-From:X-YMail-OSG:From:Content-Type:Content-Transfer-Encoding:Subject:Message-Id:Date:To:Mime-Version:X-Mailer; b=HjcHaCkTXM3uazrTqrOcFRF/BzYk4PV1yq9rq8htwlOZe3SQlQAPKBUz5td3Er0rE8rkPno7AIlLP5UUzLz8y23pjJArUCXFTp7PK41Ci7Fm/y2WhFG5z5kuxeg6UnczUwyszxjjxU2Qx+FKUhjGXi+6sPgZKi6Al50na/I0f0w=
|
50
|
+
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
|
51
|
+
s=yj20110701; d=y.example.co.jp;
|
52
|
+
h=Received:X-YMail-JAS:X-Apparently-From:X-YMail-OSG:From:Content-Type:Content-Transfer-Encoding:Subject:Message-Id:Date:To:Mime-Version:X-Mailer;
|
53
|
+
b=qB3j5QZpDHIkjPSpAU9rQhz3mLKA+etkAlR5wPriKfSGum1gcazhBrttmWogAqhcXC6g9G/mlKbJsh49LLGA5uWj0Lk6eiOHcxfJbkALN/6ZxNLcINhG6zCR6t7uMdNLlPYCUueg9TTCfZYIvHxB6BDL9lJnuxcMGgKFBxYxGf0= ;
|
54
|
+
Received: from unknown (HELO ?192.0.2.3?) (192.0.2.135 with plain)
|
55
|
+
by applesmtp522.mail.kks.y.example.co.jp with SMTP; 21 Nov 2014 22:23:28 -0000
|
56
|
+
X-YMail-JAS: 9jKIRUIVM1n0VWuJvpQqiZt4fgR_rtMwQIywl9.kstMKNSkYvFmrTlZcnh1AE.8dVt191viBAw9rEM_tRfmpVHLTzJMAoHka5jpXcEhZ2gyb10qCJjnfkNTFsCQ5m.OHku7Iqll_
|
57
|
+
X-Apparently-From: <shironeko@y.example.co.jp>
|
58
|
+
X-YMail-OSG: .JRdE1wVM1kIprLHsflXWZycxJbMTcLOwf5YVPEjmMZgePm
|
59
|
+
KLZcUvyQxLY9OmwraS7VCOYDubvJM6y7Lxe_mpDxTzVP8Q..0t6_7Z4TLtM3
|
60
|
+
HMTLdBM_puCI1pLfjcFs26hKU7CujHyAxGA2f_oAlAHhZsmjxLwPaTdpiigS
|
61
|
+
ioSDe1Lv6vuW1wbzotAn6ChxIEPLVbPLnVRO1ANYGJxCU2fnag7wm4huu6Qe
|
62
|
+
8JTv1V752HJ2yI6slFl1EnIz7F9dqoWmpoztiaTPcFD8ZoRFPa45sy0dDAnV
|
63
|
+
8e5vAJDn7z7Fpv7Z9NCxfCn.Ei7VNp57Hkxjt5Nq2K2R1ZCx2kz4iEWpadEi
|
64
|
+
wa1E7RChtw_v5eIbN1UNdzndC6uLSL_mMtrJeYpTUQnNetAWTS7.FNvskTLI
|
65
|
+
D4IsUqe0tJBJMLpk8sbRk1TBDroNqXXvW2Tfc4aA8JFiZ.q.g1fHn7kmJotR
|
66
|
+
DU7Aybf530SIMI8P2T3IkcFAcTHLWtNYqPGyPQuQzeDdATp7sT3zNM4WOJWh
|
67
|
+
68D9GaGwUy7LOrxS.3As-
|
68
|
+
From: Shironeko <shironeko@y.example.co.jp>
|
69
|
+
Content-Type: text/plain; charset=us-ascii
|
70
|
+
Content-Transfer-Encoding: 7bit
|
71
|
+
Message-Id: <3C1693EF-7886-4E59-BBF9-D3DF3B74820F@y.example.co.jp>
|
72
|
+
Date: Sat, 22 Nov 2014 07:23:23 +0900
|
73
|
+
To: userunknown@example.ed.jp,
|
74
|
+
kijitora@example.ed.jp
|
75
|
+
Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
|
76
|
+
X-Mailer: Apple Mail (2.1878.6)
|
77
|
+
Subject: Nyaaaan
|
78
|
+
|
79
|
+
Nyaaaa
|
@@ -0,0 +1,93 @@
|
|
1
|
+
From MAILER-DAEMON@yahoo.com Sat Dec 6 13:45:31 2014
|
2
|
+
X-Apparently-To: shironeko@ovi.example.com; Sat, 06 Dec 2014 13:45:32 +0000
|
3
|
+
Return-Path: <>
|
4
|
+
Received-SPF: none (domain of nm39-vm5.bullet.mail.ne1.yahoo.com does not designate permitted sender hosts)
|
5
|
+
AzE-
|
6
|
+
X-YMailISG: U8ArlT0WLDvdWOCstoKB3vnrqVXbL.Lt95vu3rNgQWZTA6Pq
|
7
|
+
S.zHOdVS4tSwNs3YnWWpd6QcHFv6C3KEOQpqAkIJ7i_MtrgwYZWsZ9meVlMP
|
8
|
+
0WcbBUPnaet8tx95r1IZj6rr.8yIif_XuRMBPAKhx1x1hPuCWE36d3ZBd0OV
|
9
|
+
7oIgExdNGfwETRX6AuOS1zX6ecsYZv74K4L9HjXx4RrhI1njrXR2rNWuIoLc
|
10
|
+
Qu001J7jjNuFjioOvttJqaDvZ4YONd44hArE3qjOXFpLmfSbz7JDcHDRuAnc
|
11
|
+
YOapp.58Uwh5tFJWg9f3uyN26cmI5bZrPilc.4.25gMhL5cbX8A.vKjwm6I9
|
12
|
+
bH6dPpVdqqfCbsTceceL46DL2CXvkpQKPlabf2XXW5osPrkKWUbE0VhRosqo
|
13
|
+
qPMvkuZekJCcAwDvZeLa5lIzoIoPAwAZqU3rKaNdTS6krztkHI4aC3tOIxIN
|
14
|
+
.IxEfTpkAjf9Mah86.9U7zDs2jY_q0W3fmwuzeXoxerPokXJzrZ1e6hO_sOt
|
15
|
+
HNVMpgRRf4TqJsT2C.gk3fV6VIvezMeh48Y1rEnyFHM3puhn1sLmigPxnTyd
|
16
|
+
ueT9nO.P0QTYIghaRyyRKvIu7nR2SXZws3kMfaOcshHa1dnhb6S0meQCrMP_
|
17
|
+
jJjKAPJpO4EA7HMC2PUgjSCQ8f7NKDydItWQG1Y7R44q.W8m8a8qZjCh8h8q
|
18
|
+
NeNCLoa1wYtCw2HRGPewVwm_mu16ZEYpzl1zfarQzSu3KFXTV5WEAbQe89RJ
|
19
|
+
zBWUkbCVsUYu8yQrSkBtxm3nsVgBjj886k7Y2z8dgCKhTyqgmL7FYdeEPY0X
|
20
|
+
r.btoTl5e174wiR54a8PdFrQLJ3n9pAUGvqYni6OWK_zz01R66Dodd0QlPAc
|
21
|
+
sYCJylzV_VCamRpLU64grVekzOwXtRA4cvKMgIdDcD9PTgUEpRbilUVlpd8z
|
22
|
+
EdO0FMljd9Up5ScGpbQSB4TDIlpUP_qz_pYEnCdJYXeVchNhAJ_g_zPIFoBB
|
23
|
+
sPV_f4vq1qgtu8ikBIxhew5oc50O3q8eRfnJB_t2Yzxpd3LP385.FBtbgy0g
|
24
|
+
.qapXv6YaSz5Fde9faxPBSy8Nm4rKSfTV4Dz7u_cOzhJ.BFrsA5XiIendFiq
|
25
|
+
mkGRm_GABXVOnGTLBC5QSnleZ8.2YRZ3CI59MGPVxfyAv9S20uSZLONKIezL
|
26
|
+
J9DSkSq.UxsiLUCFdyRypJjswzI1KK7jwRJ5MJmQ5p_lCQqpsFJ7xp3wq.7i
|
27
|
+
a_AXBMOx.YZAWPOrh3l8C1zkZTfEcW06p94_M9PdUoLvGqyAuM977Jj53FF6
|
28
|
+
Qsn8xq6cKjdpV_ybZ3p10E2E2hUp5FQ3.QOmuXMYjEynLqgN5uBZNukjG5T5
|
29
|
+
IIciCdHnh2d3hlf09WH4jjU.okmwwyAscVKWNlu0Dk29oAOy3L5AmBoySEt8
|
30
|
+
h.EOZsJk7KKrPBSVx8iUsLV0tN_Ie7nAytYEwms1k_iIGaFbTkZASD4XY8rG
|
31
|
+
Ts0kdbP6rpOiFkBAl4CIcoG0JDZAbHvJXUKgr9WL6xRoWRnxKlwxij3QcJp9
|
32
|
+
tXAN2tvKIWysfNXEDC8nwl7TnFLp88QPBpkvsCwxAnUcchSP.T9ZYYt4HO2E
|
33
|
+
eIXq
|
34
|
+
X-Originating-IP: [98.138.229.165]
|
35
|
+
Authentication-Results: mta1465.mail.ne1.yahoo.com from=yahoo.com; domainkeys=pass (ok); from=yahoo.com; dkim=pass (ok)
|
36
|
+
Received: from 127.0.0.1 (EHLO nm39-vm5.bullet.mail.ne1.yahoo.com) (98.138.229.165)
|
37
|
+
by mta1465.mail.ne1.yahoo.com with SMTPS; Sat, 06 Dec 2014 13:45:31 +0000
|
38
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=bounce; t=1417873531; bh=Gh0YCdBT+U6b+BN6kDIuIpKqhK5uYTdBbFocGASInQE=; h=From:To:Date:Subject:From:Subject; b=XyXeJzCQh168v/UHSOGXVTtYjBf2eXxAFypsa49xZzHStscptY4+o0bsE36x5VTlbnvd89czgr85hRt8Ny+EJhV26V7q8cG3R3BoV9AE0YBd9jn/a7SJGVZF7C11CJTqvJFZ25AWkVZvYQc4KOPCwHfcarGPt5fLaTdEIg33KSs=
|
39
|
+
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=bounce; d=yahoo.com;
|
40
|
+
b=VfFndmAZt6zQub4gN59HLB0kJpkO3QBpqPI489nl7j73h5Pp7/PeC7qQVQWjp1xSVpyAgSBWQYQlBouq1V8WpXZ+d7I1xcC2QcdMSwlryM4T53B7xovrHTUzctUscmsrLfbZhyfa26VV52T8t2UtfJ09hnmwMzFjuNGsmV+2AhA=;
|
41
|
+
From: MAILER-DAEMON@yahoo.com
|
42
|
+
To: shironeko@ovi.example.com
|
43
|
+
Date: Sat, 06 Dec 2014 13:45:31 -0000
|
44
|
+
Subject: Failure Notice
|
45
|
+
X-Yahoo-Newman-Property: bmbounce
|
46
|
+
Content-Length: 2316
|
47
|
+
|
48
|
+
Sorry, we were unable to deliver your message to the following address.
|
49
|
+
|
50
|
+
<kijitora@example.jp>:
|
51
|
+
Remote host said:
|
52
|
+
550 5.1.1 <kijitora@example.jp>... User Unknown
|
53
|
+
[RCPT_TO]
|
54
|
+
|
55
|
+
--- Below this line is a copy of the message.
|
56
|
+
|
57
|
+
Received: from [127.0.0.1] by nm39.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:45:30 -0000
|
58
|
+
Received: from [98.138.101.132] by nm39.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:42:31 -0000
|
59
|
+
Received: from [98.138.87.3] by tm20.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:42:31 -0000
|
60
|
+
Received: from [127.0.0.1] by omp1003.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:42:31 -0000
|
61
|
+
X-Yahoo-Newman-Property: ymail-4
|
62
|
+
X-Yahoo-Newman-Id: 670247.51572.bm@omp1003.mail.ne1.yahoo.com
|
63
|
+
X-YMail-OSG: sJozuJQVM1kkC1y4Dtgz0F0uhWMq36faXgvvJ1XUl3PY2TuPeIAkTE_XeGcMhJV
|
64
|
+
YucJV_MXbxg1XjxeXhxlX2rT82kQqjv0QUcvRxD.YOseKehxYkh0Kt_Otq4_SXLYz2kjiSbcyuFA
|
65
|
+
5XyD7ryAI4q34LRL64iRIl9ZpGf.YOhiAeJNhuhV3ueJN09oMkmM63ek1dbC8qwqP.17ecX6hqFZ
|
66
|
+
DxT_PM2xZQ6MleQrC7rNfN0h5NDKFpCZGtgXBDKttx6Zf72YbAmHRC9F9Nmg0Jljn_YAXnbeoDEy
|
67
|
+
IAu2hYk.EWYZgd9GIZK2nKS0KzQBTlP6_IE5qFmoaeL7Hn0nqObXDIq_OOL59gQg9eI5OBV1Kx4D
|
68
|
+
qgnto3tNs3TnLrHTsH3a1xgFbtjneTfrCWcWAiUvMcOIa8MyX2L0XYFSr87sDFOl6Ht5XPhMtrFb
|
69
|
+
d3gJ_0.W4i6flhq_c5ZljsJu797MKln7Koah52fc7e3KJBbsU39CLQb1yUgggWw94UMGQ98SHUXs
|
70
|
+
BfiOb
|
71
|
+
Received: by 98.138.105.199; Sat, 06 Dec 2014 13:42:31 +0000
|
72
|
+
Date: Sat, 6 Dec 2014 13:42:30 +0000 (UTC)
|
73
|
+
From: Shironeko <shironeko@ovi.example.com>
|
74
|
+
Reply-To: Shironeko <shironeko@ovi.example.com>
|
75
|
+
To: "kijitora@example.jp" <kijitora@example.jp>
|
76
|
+
Message-ID: <4480863.3669135.1417873350756.JavaMail.yahoo@jws10091.mail.ne1.yahoo.com>
|
77
|
+
Subject: Nyaaan
|
78
|
+
MIME-Version: 1.0
|
79
|
+
Content-Type: multipart/alternative;
|
80
|
+
boundary="----=_Part_3669134_1064894262.1417873350754"
|
81
|
+
Content-Length: 530
|
82
|
+
|
83
|
+
------=_Part_3669134_1064894262.1417873350754
|
84
|
+
Content-Type: text/plain; charset=UTF-8
|
85
|
+
Content-Transfer-Encoding: 7bit
|
86
|
+
|
87
|
+
Nyaaan
|
88
|
+
------=_Part_3669134_1064894262.1417873350754
|
89
|
+
Content-Type: text/html; charset=UTF-8
|
90
|
+
Content-Transfer-Encoding: 7bit
|
91
|
+
|
92
|
+
<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><div dir="ltr">Nyaaan</div></div></body></html>
|
93
|
+
------=_Part_3669134_1064894262.1417873350754--
|
@@ -0,0 +1,94 @@
|
|
1
|
+
From MAILER-DAEMON@yahoo.com Sat Dec 6 13:46:11 2014
|
2
|
+
X-Apparently-To: shironeko@ovi.example.com; Sat, 06 Dec 2014 13:46:12 +0000
|
3
|
+
Return-Path: <>
|
4
|
+
Received-SPF: none (domain of nm36-vm0.bullet.mail.ne1.yahoo.com does not designate permitted sender hosts)
|
5
|
+
bAMDMQ--
|
6
|
+
X-YMailISG: vUVJ1uEWLDtRgnpYRKpThlix9osCqNA.IvSqzPvPQymD991C
|
7
|
+
_aby4X7GZcQrzksT_ghddXp_Hu2Te291S3aZhqr6r8ArXa7WmOoEAjgtz2Pm
|
8
|
+
_nHovP5G49rfqinFUj7ZtMNsnxvU_NTscKml0qviPuSxjzjbopmyQGntr4Ew
|
9
|
+
voMNwzmK9gmZDo4gWZuK_mCTz0t_VTp2BXYTTWPaKb0fLJoqkk1X_aoabdWh
|
10
|
+
tYpDjMVkr_RcZl8ikuoeHJ_G_xM5rMmeyol.3jz841bVKOdd95itzo25ieQ2
|
11
|
+
.mSPsOv5DWW3M8x3pdfRgskJyHA6N6Oe3S6sNOYCwjO9pssGHg_ludh2sv3S
|
12
|
+
bFUeD7ryqL0fhLq6iaick9cn0mwdW_sFZRcWeu.WihFK5Efu0q9ZHktjaHHZ
|
13
|
+
RplwRIas64b.kKzZJBX_abEy4VdPZny6ppeeWHUnCUICnZFKobbduvbIiO6O
|
14
|
+
TtKGcMgBNEtFj_kaWb3.dSYnrIIufR85NW9aLHJFoQ3oPL7GB7ggrdz4.at1
|
15
|
+
SISRpHjgzlzFE64Z_LkWepf41XM05thQg46xTmSRNB9SX4K6BzOmuERzA4VV
|
16
|
+
tywPIMQKiDyWshvZjqTNfEeIcYjxYt6_hdatYxmX4bdcvP9brn8UXAH7mw82
|
17
|
+
X1pc8.hTje6TDdThydb7hAWgd81SDUiAFsv42n3kHm1kBQ6LEwjdmyNQGWAd
|
18
|
+
mtRt_y9RY3Sjvu5L74tgWSPpKPfzr96EIYeHDm1YTGim6ha.LRfC5Q7r4DKE
|
19
|
+
_7uNbyDIadq9dweeV.d8.NPeB2QKlnKPlP3iGkG0QpSEWHtH4evPFeX3Oymp
|
20
|
+
M1Jc__YcpeuzKT1P4yUFk9EOO888M32VRa5KeD4W1pIEAQQ8E3AVrTL2pMZt
|
21
|
+
YKrx54nwSKq.5Z_ovt_C5VO9zypQx_EfTsnzW39bEJtWHIvxW0WjMSkGgssq
|
22
|
+
Bl77cD8rAXyDzYJXWppJsWnSC99A3Qy9mhMvdTyQ9f5ULsPv62q1vUGpKHW1
|
23
|
+
2JbGuNMlmHDqjU3ui7fViv9klQLfglz41HFwbAaeMe6e4bUuu1XmZsvV.Jzx
|
24
|
+
FQjxB..sv7M.1C_diNGPE7mNUFT9fdtCCkwEJ2jOjAdg5SBK7Dj.hKAjYb3q
|
25
|
+
noh62vvZq8xTQo1bJmM_GUDAZEoksAfcC_nyX047A2V7rFsGdS5qEAWPp_.4
|
26
|
+
4BKEPzD4u51cnMSONsUWRyG.3EQHnJG9JuldoqJ4aYpnv4Q_k3hJyE_g2WcY
|
27
|
+
Qc3VSIMueQOtGEMGg7wqIzPt7vuQAoZNL3YOivic.In92VjRuuSTp9eFra7t
|
28
|
+
4cytT7.gfFWQZ2rYsilMAuHp2HMZqCG0ABBGuz00bv9SpbhDEohodqNw75yc
|
29
|
+
PcFXJG8mF_olPm1srG7WKClHr1JfoyrBo7VOVX4muDZdV53gjUbBm7.pbb6t
|
30
|
+
EUKFZJJKdtY.6Hqggnh.2Qc4vB.8APDDS3iPPc8Z4Afixc55UdzV8AVMdQvA
|
31
|
+
VCx07oFzIpNMEcFeFEIQLTmuClMVW_wteO_k4dNvoYjkuc1iKFl46gL9eFkJ
|
32
|
+
SWkGjJ8.JOSpd.wDIuxybHXpKe3N9rc7RvkahIN3yeydgNqXr6S0XKZSg4Qp
|
33
|
+
TkP4HRWcUgJSmj1w5XCu8Aspar_HzyDO.kGf7g--
|
34
|
+
X-Originating-IP: [98.138.229.112]
|
35
|
+
Authentication-Results: mta1271.mail.bf1.yahoo.com from=yahoo.com; domainkeys=pass (ok); from=yahoo.com; dkim=pass (ok)
|
36
|
+
Received: from 127.0.0.1 (EHLO nm36-vm0.bullet.mail.ne1.yahoo.com) (98.138.229.112)
|
37
|
+
by mta1271.mail.bf1.yahoo.com with SMTPS; Sat, 06 Dec 2014 13:46:11 +0000
|
38
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=bounce; t=1417873571; bh=OP4DrW1D5+HHkgEWBVVubXtxEun8zKTssuQMfEL1XE8=; h=From:To:Date:Subject:From:Subject; b=KlpMkeptI/mYfGXC8oBcUKmyeoYn87hXsbvz2eRephDiCoF86Oujb0wRbVxMrQBXybBbReMsGJsyCM8SLZ/w8zGPGQX0tjtv8uoESEXBumZAAhNUJNIqxFJowewHXzexOGiRoHFZt/KAIrcPaMUbyMz0nwYVltajLJIHiK8HkQc=
|
39
|
+
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=bounce; d=yahoo.com;
|
40
|
+
b=ADYXZBJqQ/DCX6h6dRbotB4vYGZfZl6UeRe/bsDrNVY7D+Jgko/3H2ZrnGckNrdcm1lEhkGtARGoFA+eesjNBcfRuXBQda/eZGo8SWdCrYyfTmxlEIM1TLJqMf65T2dEXonDaHHU/WcXfll7hdmkbfsfeYfxlYj5CG8jdE78K8I=;
|
41
|
+
From: MAILER-DAEMON@yahoo.com
|
42
|
+
To: shironeko@ovi.example.com
|
43
|
+
Date: Sat, 06 Dec 2014 13:46:11 -0000
|
44
|
+
Subject: Failure Notice
|
45
|
+
X-Yahoo-Newman-Property: bmbounce
|
46
|
+
Content-Length: 2384
|
47
|
+
|
48
|
+
Sorry, we were unable to deliver your message to the following address.
|
49
|
+
|
50
|
+
<kijitora@example.co.jp>:
|
51
|
+
Remote host said:
|
52
|
+
550 5.2.2 <kijitora@example.co.jp>... Mailbox Full
|
53
|
+
[RCPT_TO]
|
54
|
+
|
55
|
+
--- Below this line is a copy of the message.
|
56
|
+
|
57
|
+
Received: from [127.0.0.1] by nm36.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:46:10 -0000
|
58
|
+
Received: from [98.138.100.114] by nm36.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:43:11 -0000
|
59
|
+
Received: from [98.138.226.165] by tm105.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:43:01 -0000
|
60
|
+
Received: from [127.0.0.1] by omp1066.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:43:01 -0000
|
61
|
+
X-Yahoo-Newman-Property: ymail-4
|
62
|
+
X-Yahoo-Newman-Id: 842758.25055.bm@omp1066.mail.ne1.yahoo.com
|
63
|
+
X-YMail-OSG: T5Nn1DYVM1lLcAqNwFXAUmQzYek5g7uSlqvD8WruAsKQgVWciqzf46HmcOneeIg
|
64
|
+
MoeQ1suROdCCQbgEskAYSGz850BGKMGcbp7OHZuOlADL2S2WdMd8Xo_Xukx3bZeJASPkut.YUtZj
|
65
|
+
GzN5.VmeKom07GoM7S93hclElPxO_a4OEifx8MrEMOmVsbLL2q6zqdaNafqzsz1KWCI5bRFLjSIf
|
66
|
+
fdkxScwGKTLCkZRNzQc5XSS2pFyt0SYKQvszFcYB5aiFVJy5_JZop.k_sn3FOXsyKn50PYj4b.L9
|
67
|
+
YDh60SabLEX1z4CC_K8uTJOXk3SCxZGrcI6WQDXmny8VIDbB5lSmxhus9aJgSUXC2D2TYOFSLyhy
|
68
|
+
XWrI7CSI3N_os4qXTeCshiPy.2hzuoB00Gz2mrWKN0FmfRMu4tSiGmL15qZLx9NwBFgJCXBA0Gm7
|
69
|
+
U.QEoTo4pN2gMKrWrC79Nq3b0ba8tJlC2HzWnDC2mUXFpe.h9uU7VHC7te_sPnNrc9zl9.Hpdf07
|
70
|
+
wxpPT_w--
|
71
|
+
Received: by 98.138.105.203; Sat, 06 Dec 2014 13:43:01 +0000
|
72
|
+
Date: Sat, 6 Dec 2014 13:43:01 +0000 (UTC)
|
73
|
+
From: Shironeko <shironeko@ovi.example.com>
|
74
|
+
Reply-To: Shironeko <shironeko@ovi.example.com>
|
75
|
+
To: "kijitora@example.co.jp" <kijitora@example.co.jp>,
|
76
|
+
"mikeneko@example.co.jp" <mikeneko@example.co.jp>
|
77
|
+
Message-ID: <92177194.3672721.1417873381074.JavaMail.yahoo@jws100157.mail.ne1.yahoo.com>
|
78
|
+
Subject: Nyaaaaaan
|
79
|
+
MIME-Version: 1.0
|
80
|
+
Content-Type: multipart/alternative;
|
81
|
+
boundary="----=_Part_3672720_1310345634.1417873381072"
|
82
|
+
Content-Length: 534
|
83
|
+
|
84
|
+
------=_Part_3672720_1310345634.1417873381072
|
85
|
+
Content-Type: text/plain; charset=UTF-8
|
86
|
+
Content-Transfer-Encoding: 7bit
|
87
|
+
|
88
|
+
Nyaaaaan
|
89
|
+
------=_Part_3672720_1310345634.1417873381072
|
90
|
+
Content-Type: text/html; charset=UTF-8
|
91
|
+
Content-Transfer-Encoding: 7bit
|
92
|
+
|
93
|
+
<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><div dir="ltr">Nyaaaaan</div></div></body></html>
|
94
|
+
------=_Part_3672720_1310345634.1417873381072--
|
@@ -0,0 +1,94 @@
|
|
1
|
+
From MAILER-DAEMON@yahoo.com Sat Dec 6 13:46:11 2014
|
2
|
+
X-Apparently-To: shironeko@ovi.example.com; Sat, 06 Dec 2014 13:46:12 +0000
|
3
|
+
Return-Path: <>
|
4
|
+
Received-SPF: none (domain of nm36-vm0.bullet.mail.ne1.yahoo.com does not designate permitted sender hosts)
|
5
|
+
bAMDMQ--
|
6
|
+
X-YMailISG: HoE9Z18WLDvCTYN7vGHWjh_VjIxMF3RVeBJcYfndzkYQ.BU6
|
7
|
+
L_0CLBdRB5iYtiKUW3J8o4k1XvK0Lp4Xluu74fWjmeBwZbsfbBGuJwEAOH35
|
8
|
+
.yFPf6iy.G7Gznvvo6wPE.mxCYP43R1OPT7OVRs0Tc_DOoqknSw42V0QE29s
|
9
|
+
QvRTqj4focx2UtMI.SBmWuEYTLZvyEl3vieLNc3Kr4_ZZeRXFvWzaFwastao
|
10
|
+
Uhtkc0b2oNfBZMQKiEri5HvPNbNcy7qlLt8vIN5ineU_y7bPnzDgYNGacHfS
|
11
|
+
YcmAxNMFx9t1pegwQeCSMcoywxtqG9FCLGFnSxNgmJt9LceFgiNJ7nS_0.3a
|
12
|
+
n4A1xU2LnO37KtTANjD1e73VxzxJqRnNageoa6f1Kv6b6Rc_wlScPqExSX8D
|
13
|
+
NO5SZUrwsSGV96H5WMbULi2.4iBtsYsooG5tQl4EF6YG.omLscwtZrwnuGb8
|
14
|
+
bJeYIU_RArLzx334or3kqWOsWye_fFEasKpxJeN7icmLXX9U4yqogKHU297b
|
15
|
+
pSUn88kFo5uXvcjUyyrwttM5f9QwrqUYb8tCueYER7YlHiH8GuZ9bTPGpzyW
|
16
|
+
Oa9.17EOAmw4U7TYgPs2.V6c.CaCB1kTh0LOcxZ5rXy7tGNT80b2e4x8Hdgl
|
17
|
+
9jMGebR.aiTq_fmK3sV3Rnb_Phn6uM4PhodQPVBxGMIRHTFZPf.0kOGWkxj8
|
18
|
+
gRR7imFjS3dJGTNwMVKGzH6n6cI94QgcrYJZ1TqJFcJ3QxTuFZUSTFLYhHHw
|
19
|
+
x0S7aIQEGEps7cv7f2AevwXo6PkuDT6dLxEcZYPNc_0FBKu9dC9H_4ihxSA8
|
20
|
+
B6qC8I4jmXjjIF4RZflp4J3L.rnB6yEEKHDB9S4tbU3sJsQvd82X2qA5E3Uw
|
21
|
+
hz_ah5pviFAUkCL.MNPaRIQRaDcgR8mZPS3T7CJ_orGmopOtXy_xXsPBQ6fv
|
22
|
+
3izTl1PVfuD8mEtudKlap.7Fbblt7rwe2ejQQLHJQ0P0jzWPHJLa3myDWZUN
|
23
|
+
F2GboGyfFbbvsG286bCmTtF7EisI4T7S__6Zh.U9kJBTY5C8yOoKpcl88u50
|
24
|
+
THjnuKexv1WpW49mFnNH2Uil_Gu3i4GMw78Hg96H7BuNvsHlbw4Q7t66ESF5
|
25
|
+
LzULi0UiXNu9_U975eVlNhgqxFdpvxxWocPmtM.jZ.bXJe2QfvCqcBBXAj8Z
|
26
|
+
HOIJwo74fIiHhg4mTv1.mJlx_g4PPhL.Hhwp1qlITuasMqocHu5NFOodHP2i
|
27
|
+
6dxF2V72_6_OaJF_7ylMINTZfQ01opw.rnJMGzT1HShZ5Oxh2IS.yS_0P72n
|
28
|
+
Cl50VzJY3DAa3NnDqUPU5pNnntXaHe9sct.zKrT1rrcF_Bc4MF5gbRYYpEOH
|
29
|
+
ZGiH5_f006Wg0EAIE7reHl_M1WWG.jHvNVcPLhluuu_ZEq1rvy6.RnG56cTH
|
30
|
+
PrwGvKRu4XYSc7Zca.mzF6YAd0o93z1cvNSGDvEG6HhiA3KiNGaC3F0HW1OV
|
31
|
+
FMTj8Hy4SQOhmc8WJCW1sZvTSzp6rxdEfg1Dl3iQ24pjjIrlil0DdsG7ACHp
|
32
|
+
.goYMExWq2sPpAUC40cbH6l5hFklTXD4UGHXGxUZNyB9Z2MB4AtN.p0ZccZE
|
33
|
+
ZuzHlWictFCF1uOSqugrap0v5CA-
|
34
|
+
X-Originating-IP: [98.138.229.112]
|
35
|
+
Authentication-Results: mta1474.mail.gq1.yahoo.com from=yahoo.com; domainkeys=pass (ok); from=yahoo.com; dkim=pass (ok)
|
36
|
+
Received: from 127.0.0.1 (EHLO nm36-vm0.bullet.mail.ne1.yahoo.com) (98.138.229.112)
|
37
|
+
by mta1474.mail.gq1.yahoo.com with SMTPS; Sat, 06 Dec 2014 13:46:12 +0000
|
38
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=bounce; t=1417873571; bh=i44t+jF86t9LT5u7s99r8QlUlEmX7Ru0flRjER5p2u8=; h=From:To:Date:Subject:From:Subject; b=FpYP8Mwd5PwIrqEjFn5KQaoAu679jKr1MGtVoMeiXN0Zy67XOCutkyNeN2/5P6OQmvu/7SGcZ9qn38TUSwAKPmEmaKmU/ZkhehvRFar1bIewyYIrjzrQiMo+iTEpoBbsAKYS4qoeKQjn5Y7qWtbddr10QktqVKbVbt3S5pSrzyg=
|
39
|
+
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=bounce; d=yahoo.com;
|
40
|
+
b=Tb3m6SxdlmRIg/eDFtqsMNpYglYxeI5s7t7p6dnVuLj19On1Go3wJfypBm3FzaymZCXIy9fYIjlOV5os/upQaT0wHkm5WE4xPuD3FkSMZUVn2hqsukKa4VH4VcrQSw9lhv2roD9izm+uBFuj2MlkWQlOjexGHTiJBgKwC9zbwzM=;
|
41
|
+
From: MAILER-DAEMON@yahoo.com
|
42
|
+
To: shironeko@ovi.example.com
|
43
|
+
Date: Sat, 06 Dec 2014 13:46:11 -0000
|
44
|
+
Subject: Failure Notice
|
45
|
+
X-Yahoo-Newman-Property: bmbounce
|
46
|
+
Content-Length: 2378
|
47
|
+
|
48
|
+
Sorry, we were unable to deliver your message to the following address.
|
49
|
+
|
50
|
+
<kijitora@example.co.jp>:
|
51
|
+
Remote host said:
|
52
|
+
550 5.2.1 <kijitora@example.co.jp>... User Unknown
|
53
|
+
[RCPT_TO]
|
54
|
+
|
55
|
+
--- Below this line is a copy of the message.
|
56
|
+
|
57
|
+
Received: from [127.0.0.1] by nm36.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:46:10 -0000
|
58
|
+
Received: from [98.138.100.114] by nm36.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:43:11 -0000
|
59
|
+
Received: from [98.138.226.165] by tm105.bullet.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:43:01 -0000
|
60
|
+
Received: from [127.0.0.1] by omp1066.mail.ne1.yahoo.com with NNFMP; 06 Dec 2014 13:43:01 -0000
|
61
|
+
X-Yahoo-Newman-Property: ymail-4
|
62
|
+
X-Yahoo-Newman-Id: 842758.25055.bm@omp1066.mail.ne1.yahoo.com
|
63
|
+
X-YMail-OSG: T5Nn1DYVM1lLcAqNwFXAUmQzYek5g7uSlqvD8WruAsKQgVWciqzf46HmcOneeIg
|
64
|
+
MoeQ1suROdCCQbgEskAYSGz850BGKMGcbp7OHZuOlADL2S2WdMd8Xo_Xukx3bZeJASPkut.YUtZj
|
65
|
+
GzN5.VmeKom07GoM7S93hclElPxO_a4OEifx8MrEMOmVsbLL2q6zqdaNafqzsz1KWCI5bRFLjSIf
|
66
|
+
fdkxScwGKTLCkZRNzQc5XSS2pFyt0SYKQvszFcYB5aiFVJy5_JZop.k_sn3FOXsyKn50PYj4b.L9
|
67
|
+
YDh60SabLEX1z4CC_K8uTJOXk3SCxZGrcI6WQDXmny8VIDbB5lSmxhus9aJgSUXC2D2TYOFSLyhy
|
68
|
+
XWrI7CSI3N_os4qXTeCshiPy.2hzuoB00Gz2mrWKN0FmfRMu4tSiGmL15qZLx9NwBFgJCXBA0Gm7
|
69
|
+
U.QEoTo4pN2gMKrWrC79Nq3b0ba8tJlC2HzWnDC2mUXFpe.h9uU7VHC7te_sPnNrc9zl9.Hpdf07
|
70
|
+
wxpPT_w--
|
71
|
+
Received: by 98.138.105.203; Sat, 06 Dec 2014 13:43:01 +0000
|
72
|
+
Date: Sat, 6 Dec 2014 13:43:01 +0000 (UTC)
|
73
|
+
From: Shironeko <shironeko@ovi.example.com>
|
74
|
+
Reply-To: Shironeko <shironeko@ovi.example.com>
|
75
|
+
To: "sabineko@example.co.jp" <sabineko@example.co.jp>,
|
76
|
+
"kijitora@example.co.jp" <kijitora@example.co.jp>
|
77
|
+
Message-ID: <92177194.3672721.1417873381074.JavaMail.yahoo@jws100157.mail.ne1.yahoo.com>
|
78
|
+
Subject: Nyaaaaaan
|
79
|
+
MIME-Version: 1.0
|
80
|
+
Content-Type: multipart/alternative;
|
81
|
+
boundary="----=_Part_3672720_1310345634.1417873381072"
|
82
|
+
Content-Length: 534
|
83
|
+
|
84
|
+
------=_Part_3672720_1310345634.1417873381072
|
85
|
+
Content-Type: text/plain; charset=UTF-8
|
86
|
+
Content-Transfer-Encoding: 7bit
|
87
|
+
|
88
|
+
Nyaaaaan
|
89
|
+
------=_Part_3672720_1310345634.1417873381072
|
90
|
+
Content-Type: text/html; charset=UTF-8
|
91
|
+
Content-Transfer-Encoding: 7bit
|
92
|
+
|
93
|
+
<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><div dir="ltr">Nyaaaaan</div></div></body></html>
|
94
|
+
------=_Part_3672720_1310345634.1417873381072--
|
@@ -0,0 +1,40 @@
|
|
1
|
+
Delivered-To: shironeko@zoho.example.com
|
2
|
+
Received: from mail.zoho.com by mx.zohomail.com
|
3
|
+
with SMTP id 1418381185105625.5030548674308; Fri, 12 Dec 2014 02:46:25 -0800 (PST)
|
4
|
+
Date: Fri, 12 Dec 2014 02:46:25 -0800
|
5
|
+
From: mailer-daemon@mail.zoho.com
|
6
|
+
To: shironeko@zoho.example.com
|
7
|
+
Message-ID: <14a3e1b5025.afd54d4e-1195432814.-7833712081840535000@zohomail.com>
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
MIME-Version: 1.0
|
10
|
+
Content-Type: multipart/mixed;
|
11
|
+
boundary="----=_Part_837_1127031491.1418381185060"
|
12
|
+
User-Agent: Zoho Mail
|
13
|
+
X-Mailer: Zoho Mail
|
14
|
+
X-ZohoMail: Si CHF_MF_NL SS_10 UW48 UB48 FMWL UW48 UB48 SGR3_1_09124_42
|
15
|
+
X-Zoho-Virus-Status: 2
|
16
|
+
|
17
|
+
|
18
|
+
------=_Part_837_1127031491.1418381185060
|
19
|
+
Content-Type: text/plain; charset="UTF-8"
|
20
|
+
Content-Transfer-Encoding: quoted-printable
|
21
|
+
|
22
|
+
This message was created automatically by mail delivery software.
|
23
|
+
A message that you sent could not be delivered to one or more of its recip=
|
24
|
+
ients. This is a permanent error.=20
|
25
|
+
|
26
|
+
kijitora@example.co.jp Invalid Address, ERROR_CODE :550, ERROR_CODE :5.1.=
|
27
|
+
1 <kijitora@example.co.jp>... User Unknown
|
28
|
+
|
29
|
+
|
30
|
+
Received:from mail.zoho.com by mx.zohomail.com
|
31
|
+
=09with SMTP id 1418381183885346.4063599424554; Fri, 12 Dec 2014 02:46:23 -=
|
32
|
+
0800 (PST)
|
33
|
+
Message-ID:<14a3e1b4b5a.10b1a4c5610175.8588386083425091336@zoho.example.com>
|
34
|
+
Date:Fri, 12 Dec 2014 10:46:23 +0000
|
35
|
+
From:Nyanko <shironeko@zoho.example.com>
|
36
|
+
User-Agent:Zoho Mail
|
37
|
+
To:<kijitora@example.co.jp>
|
38
|
+
Subject:=E3=81=AB=E3=82=83=E3=83=BC=E3=82=93
|
39
|
+
Content-Type:text/plain; charset=3D"UTF-8"
|
40
|
+
------=_Part_837_1127031491.1418381185060--
|
@@ -0,0 +1,38 @@
|
|
1
|
+
Delivered-To: shironeko@zoho.example.com
|
2
|
+
Received: from mail.zoho.com by mx.zohomail.com
|
3
|
+
with SMTP id 1418381305038171.1991566282053; Fri, 12 Dec 2014 02:48:25 -0800 (PST)
|
4
|
+
Date: Fri, 12 Dec 2014 02:48:24 -0800
|
5
|
+
From: mailer-daemon@mail.zoho.com
|
6
|
+
To: shironeko@zoho.example.com
|
7
|
+
Message-ID: <14a3e1d24a2.ff50ad55-254202117.-8985336133438503403@zohomail.com>
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
MIME-Version: 1.0
|
10
|
+
Content-Type: multipart/mixed;
|
11
|
+
boundary="----=_Part_798_389710357.1418381304993"
|
12
|
+
User-Agent: Zoho Mail
|
13
|
+
X-Mailer: Zoho Mail
|
14
|
+
X-ZohoMail: Si CHF_MF_NL SS_10 UW48 UB48 FMWL UW48 UB48 SGR3_1_09124_42
|
15
|
+
X-Zoho-Virus-Status: 2
|
16
|
+
|
17
|
+
|
18
|
+
------=_Part_798_389710357.1418381304993
|
19
|
+
Content-Type: text/plain; charset="UTF-8"
|
20
|
+
Content-Transfer-Encoding: 7bit
|
21
|
+
|
22
|
+
This message was created automatically by mail delivery software.
|
23
|
+
A message that you sent could not be delivered to one or more of its recipients. This is a permanent error.
|
24
|
+
|
25
|
+
mikeneko@example.co.jp Invalid Address, ERROR_CODE :550, ERROR_CODE :5.2.1 <mikeneko@example.co.jp>... User Unknown
|
26
|
+
sabineko@example.co.jp Invalid Address, ERROR_CODE :550, ERROR_CODE :5.2.2 <sabineko@example.co.jp>... Mailbox Full
|
27
|
+
|
28
|
+
|
29
|
+
Received:from mail.zoho.com by mx.zohomail.com
|
30
|
+
with SMTP id 141838130288041.93205735647143; Fri, 12 Dec 2014 02:48:22 -0800 (PST)
|
31
|
+
Message-ID:<14a3e1d1c33.f7b5d16d10424.9039632619844387192@zoho.example.com>
|
32
|
+
Date:Fri, 12 Dec 2014 10:48:22 +0000
|
33
|
+
From: Nyanko <shironeko@zoho.example.com>
|
34
|
+
User-Agent:Zoho Mail
|
35
|
+
To:<mikeneko@example.co.jp>, <sabineko@example.co.jp>
|
36
|
+
Subject:Nyaaan
|
37
|
+
Content-Type:text/plain; charset="UTF-8"
|
38
|
+
------=_Part_798_389710357.1418381304993--
|
@@ -0,0 +1,37 @@
|
|
1
|
+
Delivered-To: shironeko@zoho.example.com
|
2
|
+
Received: from mail.zoho.com by mx.zohomail.com
|
3
|
+
with SMTP id 1418381367218712.0482915907297; Fri, 12 Dec 2014 02:49:27 -0800 (PST)
|
4
|
+
Date: Fri, 12 Dec 2014 02:49:27 -0800
|
5
|
+
From: mailer-daemon@mail.zoho.com
|
6
|
+
To: shironeko@zoho.example.com
|
7
|
+
Message-ID: <14a3e1e1785.10e032042-1827262923.18851293078035029@zohomail.com>
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
MIME-Version: 1.0
|
10
|
+
Content-Type: multipart/mixed;
|
11
|
+
boundary="----=_Part_873_1744249839.1418381367173"
|
12
|
+
User-Agent: Zoho Mail
|
13
|
+
X-Mailer: Zoho Mail
|
14
|
+
X-ZohoMail: Si CHF_MF_NL SS_10 UW48 UB48 FMWL UW48 UB48 SGR3_1_09124_45
|
15
|
+
X-Zoho-Virus-Status: 2
|
16
|
+
|
17
|
+
|
18
|
+
------=_Part_873_1744249839.1418381367173
|
19
|
+
Content-Type: text/plain; charset="UTF-8"
|
20
|
+
Content-Transfer-Encoding: 7bit
|
21
|
+
|
22
|
+
This message was created automatically by mail delivery software.
|
23
|
+
A message that you sent could not be delivered to one or more of its recipients. This is a permanent error.
|
24
|
+
|
25
|
+
shironeko@example.org Invalid Address, ERROR_CODE :550, ERROR_CODE :Requested action not taken: mailbox unavailable
|
26
|
+
|
27
|
+
|
28
|
+
Received:from mail.zoho.com by mx.zohomail.com
|
29
|
+
with SMTP id 1418381365566172.6749913299642; Fri, 12 Dec 2014 02:49:25 -0800 (PST)
|
30
|
+
Message-ID:<14a3e1e110a.b4fa4ce310535.5193856207448782548@zoho.example.com>
|
31
|
+
Date:Fri, 12 Dec 2014 10:49:25 +0000
|
32
|
+
From:Neko <shironeko@zoho.example.com>
|
33
|
+
User-Agent:Zoho Mail
|
34
|
+
Subject:TEST FOR BOUNCE
|
35
|
+
Content-Type:text/plain; charset="UTF-8"
|
36
|
+
To:<shironeko@example.org>
|
37
|
+
------=_Part_873_1744249839.1418381367173--
|