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,78 @@
|
|
1
|
+
X-Apparently-To: shironeko@y.example.co.jp via 183.79.150.51; Sat, 22 Nov 2014 07:11:04 +0900
|
2
|
+
X-YahooFilteredBulk: 183.79.56.188
|
3
|
+
X-YMailISG: YtyUVyYWLDsbDhj3mu2nOlrk1HJCJucCscqR7TMgMtv3ChB8
|
4
|
+
sawl0IXLu5Vq0VYyY2Y16vBYcdGR_B1BKjwXuA.0lcGaBgOF0keiRGeBSRhj
|
5
|
+
7ueCNSqQlbIMtKyypHMyYDohrk70zKjAX_e6EiY1AjNzLM9U_WgsgccDi0zN
|
6
|
+
l8jjKtVTsHdFpBxYyyAZY6ceqzKvfZiYbmYjYghhGsMJP6PZxMfLxu.zVNsb
|
7
|
+
T6EKpnxVSGaLLzH3CmW8j7nSbRcqfN_0m_0fgkj._ZIKFhH5l_yPexo9fLw0
|
8
|
+
M4xRgT2aQbbYthE1oQyxHNfsc1orfNVusgtnXRbAnnWgZkpSH5cSl3bh3n0Z
|
9
|
+
t.yeX69BxkhMEeV1VOjx.zIGayq7uGySUqcUnxcXhTjIzDy1Fw2sHg0GMSZQ
|
10
|
+
WzcC9k9I9H_LtQpkxhC5Dqx21A74.HVGN7kxe93KHhr68a6o1HgEPsLhFgh4
|
11
|
+
Se2hrdfHLriOaDVr5j.6DoqGWk._mNWo6sLL8sUHtAnxuwABb45nprvzpn0I
|
12
|
+
cRuWXZJ18zWkkNWZDTLQlLfZioL7sdCW9qblqnIaFhIY4m8pOc1CwAv2EMX2
|
13
|
+
40pWTgLUmTubSIuhXi3uJl.vt3MwxE9towZn6fLTP4V.lTZRnTT2FUi1WNkb
|
14
|
+
2jDsr5pSTvmYTCdQTp9tZFPDkRv.XeKJ8q3wIaRp3WAV2SiUkKNkRcCu.km_
|
15
|
+
as67LrrpMlR.NeuFYzKcq0EEt2W8TjqLVsREobQGFC8ZNgjpjmG017rjwlBk
|
16
|
+
tuGeAi0BA643cxy6IsJDwwqsv3F5D9NqAjYWsW5__kpxOzQG1yR8rJN7KnvY
|
17
|
+
GyhIoP1cCyjNqF9iLp8Q1ov2lFsRtdCi1tgn79Ayg8AhVrD3tptgjT3UVZ_1
|
18
|
+
cEri.WSVF5Y7WkqrudPtlG0k.SzM7UpY.BXB8KGNsx3obMp8KJ41rIGoeRAE
|
19
|
+
a8co7.TLeUiGrNgNs6R2f_leJm1AvL6rWVn7pBMV5MqPkTNa4OMTRyh8P.y7
|
20
|
+
Zt7xR6QIbISMdi76D0fMdyMsPXGVTZ9nmkXVNvJx5PsAsGQ.TRRtbsMV_yrf
|
21
|
+
fjCs9Iuik2NRnR8BRAoFmFrxzTAgVFYY58mr9ByvZBh8wAFXhFdVc2ayG8Pn
|
22
|
+
zNofMyIG6ue.q0IMkliXV5.yyhzHbdhhUA--
|
23
|
+
X-Originating-IP: [183.79.56.188]
|
24
|
+
Received-SPF: none (nh503-vm2.bullet.mail.kks.y.example.co.jp: domain of nh503-vm2.bullet.mail.kks.y.example.co.jp does not designate permitted sender hosts)
|
25
|
+
Authentication-Results: mta508.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.188 (EHLO nh503-vm2.bullet.mail.kks.y.example.co.jp) (183.79.56.188)
|
27
|
+
by mta508.mail.kks.y.example.co.jp with SMTP; Sat, 22 Nov 2014 07:11:04 +0900
|
28
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=y.example.co.jp; s=yj20110701; t=1416607864; bh=qdnBMKc2PoDfatnudwBh0XLI4I3AT250qMRe7pxSFGU=; h=From:To:Date:Subject:X-Yahoo-Newman-Property; b=rLISRoV/pDHJUh5mukEdCv/0+VkV0ZUzKR0pum79ntYv9WD8AQFj1G5lOPPMKsRu3JcJS3Cg511qC4MNq1obkpNyVsxcCU2/2XUvpHYYpQgEtksBUMBvmLCEwf9P5Tbunbjv1vjhew+4mmCw20DPR9ZrFMVaO0Ag0i3ZaDdJtSw=
|
29
|
+
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20110701; d=y.example.co.jp;
|
30
|
+
b=L3ZZKchkjZszsrcMwkkeNq3/HIHlD0tbNh/z6/2vQERCNQw1ja8ihccQpHu7pSJFVYRa6nQ5biI1Ta7jS8NGFtDsD9CpgOq0m5hWNotWsJWTdSOiJPkGrxJ6pwqmigkz2jswGaZsXMtYuVZhZicRHqGRB8oPV/i2KB1ffqPvVHQ=;
|
31
|
+
From: MAILER-DAEMON@y.example.co.jp
|
32
|
+
To: shironeko@y.example.co.jp
|
33
|
+
Date: Fri, 21 Nov 2014 22:11:04 -0000
|
34
|
+
Subject: Failure Notice
|
35
|
+
|
36
|
+
Sorry, we were unable to deliver your message to the following address.
|
37
|
+
|
38
|
+
<kijitora@example.org>:
|
39
|
+
Remote host said: 550 5.1.1 <kijitora@example.org>... User Unknown [RCPT_TO]
|
40
|
+
|
41
|
+
--- Below this line is a copy of the message.
|
42
|
+
|
43
|
+
Received: from [183.79.100.140] by nh503.bullet.mail.kks.y.example.co.jp with NNFMP; 21 Nov 2014 22:11:03 -0000
|
44
|
+
Received: from [183.79.100.135] by t503.bullet.mail.kks.y.example.co.jp with NNFMP; 21 Nov 2014 22:11:03 -0000
|
45
|
+
Received: from [127.0.0.1] by omp504.mail.kks.y.example.co.jp with NNFMP; 21 Nov 2014 22:11:03 -0000
|
46
|
+
X-Yahoo-Newman-Property: ymail-3
|
47
|
+
X-Yahoo-Newman-Id: 650978.48425.bm@omp504.mail.kks.y.example.co.jp
|
48
|
+
Received: (qmail 45838 invoked by alias); 21 Nov 2014 22:11:03 -0000
|
49
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=y.example.co.jp; s=yj20110701; t=1416607863; bh=t4RTq0wP7XXMOD4/Vy94p2VuCD+sZaGyZxAADhrV9sU=; 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=K9rRhPvyxcboRvKZIEPsxn6reoBKTBHFZ33g8uhJSoMAtLABq/OvVs+5m3KzfaVLVTtUW4Grsl/MFM+JlQAhe5OMKBz+rf1ijZftT6pDD0u8yzE+3xGhkCgshjyu0t08Nc2wzC8L88E4yiQVzGboTKhIcsK00690eV5lqMQW9Ns=
|
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=tXd6Ppevs+2A7a9RYXZsxn4K1wKmIP0Mk9fsjYzeLf5q1v1Qxf60qOXjUJTP3+JG0zA1x9IBEjnQvOm1vlBY9Lj2zglakDjyWBKfaAx6veimH8/qYlxLoY/To5/1VsSJGvROhyl1SPGrqECIWnIzHIrZ2q31N1EM8iucq4oiC9Q= ;
|
54
|
+
Received: from unknown (HELO ?192.0.2.3?) (192.0.2.135 with plain)
|
55
|
+
by applesmtp521.mail.kks.y.example.co.jp with SMTP; 21 Nov 2014 22:11:03 -0000
|
56
|
+
X-YMail-JAS: Pb65aU4VM1meiXaRhGHvvXf0xwkoyR0Id2wU2KSoR3Vlmajbbj5Wb3wJ95uVsspZE5fbFt7nST.UrQe9L5DEp7aOSxSFYiocJxGHV_XMGXJZAn523b1j1acvYdDornGrSYQVDSH2
|
57
|
+
X-Apparently-From: <shironeko@y.example.co.jp>
|
58
|
+
X-YMail-OSG: bTIbpDEVM1lHzYBXiDjYdyKVZJPcMzoE6H_uR05djWsFzPS
|
59
|
+
m3sj6dsvP_9bP8hEP7_2W4n_K3vmObQqvT6rMmKBrzDDS0YpnA.2Nar7N_E7
|
60
|
+
aISFplUQjPSApYVUSzC.eo3K3XqQ.N.AsxwFh3qgsKU7A4OTMdZNu6zBQbtg
|
61
|
+
jXfDET56hII6qsok6NsRgVf3DLOF8lvEgyKgy1wlFjO.JRYyBkyxbNepfch9
|
62
|
+
R4aNHqfdPCY7d0wVJ5IawhTAVMbPm1LWU6vvwKyU1za1dO.lbxYMO3PGtRzz
|
63
|
+
Pzotzaw32Qye0sCKYVf1KxbFIVnU0hs6BiThQI5n8Lzs7EEABI6yFDu_qzpy
|
64
|
+
dnBPZyqyrgeCPJzsS1IfEDww2GVuMv.Fb0SA63UgNkwScNL5OwMbdayOmdvn
|
65
|
+
pjYNGLhc.q7pwoo2glOoKwX55hYOzw2hsKx7BrjXgeLUkZINaQkBKi0GQzQ2
|
66
|
+
OlZiIYTcypNQmHOcfHzgKm9HNAPBul5Q9.J70BNqK7Lc-
|
67
|
+
From: Nishiyama <shironeko@y.example.co.jp>
|
68
|
+
Content-Type: text/plain; charset=us-ascii
|
69
|
+
Content-Transfer-Encoding: 7bit
|
70
|
+
Subject: Nyaaaaan
|
71
|
+
Message-Id: <6AE6249A-E7A8-4980-862C-F499F6B8E7C5@y.example.co.jp>
|
72
|
+
Date: Sat, 22 Nov 2014 07:11:02 +0900
|
73
|
+
To: kijitora@example.org
|
74
|
+
Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
|
75
|
+
X-Mailer: Apple Mail (2.1878.6)
|
76
|
+
|
77
|
+
Nyaaaan
|
78
|
+
|
@@ -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,24 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.com>
|
2
|
+
Received: from mx1.example.com ([192.0.2.55])
|
3
|
+
by mx5.example.net (Post.Office MTA v3.1.2 release (FF000-0000) ID# 0-00000000000000000)
|
4
|
+
with SMTP id 00000000 for <shironeko@example.co.jp>;
|
5
|
+
Thu, 29 Apr 1998 23:34:45 -0700
|
6
|
+
Received: by mx5.example.com; (5.65/1.37) id 0000000;
|
7
|
+
Sat, 29 Apr 1995 23:34:45 +0900
|
8
|
+
Date: Sat, 29 Apr 1995 23:34:45 +0900
|
9
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@example.com>
|
10
|
+
Subject: Returned mail: Cannot send message for 4 days
|
11
|
+
Message-Id: <0000000000.0000000@mx5.example.com>
|
12
|
+
To: shironeko@example.co.jp
|
13
|
+
|
14
|
+
----- Transcript of session follows -----
|
15
|
+
421 example.com (smtp)... Deferred: Connection timed out during user open with example.com
|
16
|
+
|
17
|
+
----- Unsent message follows -----
|
18
|
+
Received: by mx9.example.com; (5.65/1.37) id 0000000;
|
19
|
+
Thu, 29 Apr 1995 23:34:45 +0900
|
20
|
+
From: shironeko@example.co.jp
|
21
|
+
To: kijitora@example.com
|
22
|
+
Subject: Nyaaan
|
23
|
+
|
24
|
+
Nyaaaaaaaaaaaaaaaan
|
@@ -0,0 +1,61 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mx4.kyoto.example.co.jp (mx4.kyoto.example.co.jp [192.0.2.25])
|
3
|
+
by 9jo.example.jp (V8/cf) with ESMTP id 00000000000000
|
4
|
+
for <shironeko@example.jp>; Thu, 29 Apr 2010 23:34:45 +0900
|
5
|
+
Received: from relay5.1jo.example.co.jp (host [192.0.2.220])
|
6
|
+
by mx4.kyoto.example.co.jp (Postfix) with SMTP id 00000000000
|
7
|
+
for <shironeko@example.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
8
|
+
Received: By OpenMail Mailer;Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
9
|
+
From: "Mail Deliver System" <MAILER-DAEMON@9jo.example.jp>
|
10
|
+
To: shironeko@example.jp
|
11
|
+
Subject: Returned Mail: User unknown
|
12
|
+
Date: Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
13
|
+
Content-Type: multipart/mixed; boundary="---fff000000000000000000000"
|
14
|
+
Message-Id: <20100429233445.00000000000@mx4.kyoto.example.co.jp>
|
15
|
+
|
16
|
+
This is a multi-part message in MIME format.
|
17
|
+
|
18
|
+
-----fff000000000000000000000
|
19
|
+
Content-Type: text/plain;
|
20
|
+
charset="iso-2022-jp"
|
21
|
+
|
22
|
+
The original message was received at Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
23
|
+
from shironeko@example.jp
|
24
|
+
|
25
|
+
---The following addresses had delivery errors---
|
26
|
+
|
27
|
+
kijitora@example.co.jp [User unknown]
|
28
|
+
|
29
|
+
|
30
|
+
-----fff000000000000000000000
|
31
|
+
Received: from 192.0.2.250
|
32
|
+
by relay5.1jo.example.co.jp with Mail2000 ESMTP Server V4.49
|
33
|
+
(envelope-from <shironeko@example.jp>); Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
34
|
+
Return-Path: <shironeko@example.jp>
|
35
|
+
Received: from relay1.kyoto.example.co.jp (r1.1jo.example.co.jp [127.0.0.1])
|
36
|
+
by r4.kyoto.example.co.jp (Postfix) with ESMTP id 00000000000
|
37
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
38
|
+
Received: from x3.relay.example.co.jp (unknown [192.0.2.4])
|
39
|
+
by karasuma.kyoto.example.co.jp (Postfix) with ESMTP id 00000000000
|
40
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
41
|
+
listener: smtp3
|
42
|
+
Received: from 9jo.example.jp ([192.0.2.153])
|
43
|
+
by smptd450.example.co.jp with ESMTP; 29 Apr 2010 23:34:45 +0900
|
44
|
+
Received: from ak-powerbook-mdclxx (c0.kyoto.example.ne.jp [192.0.2.90])
|
45
|
+
(authenticated bits=0)
|
46
|
+
by 9jo.example.jp (V8/cf) with ESMTP id 00000000000000
|
47
|
+
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900
|
48
|
+
Message-Id: <000000000000000000000000000000000000@example.jp>
|
49
|
+
From: Shironeko <shironeko@example.jp>
|
50
|
+
To: kijitora@example.co.jp
|
51
|
+
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
52
|
+
Content-Transfer-Encoding: 7bit
|
53
|
+
Mime-Version: 1.0 (Apple Message framework v936)
|
54
|
+
Date: Thu, 29 Apr 2010 23:34:45 +0900
|
55
|
+
X-Mailer: Apple Mail (2.936)
|
56
|
+
Subject: Nyaaaaan
|
57
|
+
|
58
|
+
Nyaan
|
59
|
+
|
60
|
+
|
61
|
+
-----fff000000000000000000000--
|
@@ -0,0 +1,41 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@mx5.example.net>
|
2
|
+
Received: from mx4.mail5.example.com (mx4.mail5.example.com [192.0.2.90])
|
3
|
+
by mx5.example.net (8.12.11/8.12.11) with SMTP id 00000000000000
|
4
|
+
for <neko@example.jp>; Thu, 9 Apr 2008 23:34:45 -0800
|
5
|
+
Date: Thu, 9 Apr 2008 23:34:45 -0800
|
6
|
+
Message-Id: <200804090000.00000000000000@mx5.example.net>
|
7
|
+
From: MAILER-DAEMON@example.co.jp
|
8
|
+
To: neko@example.jp
|
9
|
+
X-Loop: MAILER-DAEMON@example.co.jp
|
10
|
+
Subject: Delivery failure
|
11
|
+
|
12
|
+
Message from example.co.jp.
|
13
|
+
Unable to deliver message to the following address(es).
|
14
|
+
|
15
|
+
<kijitora@example.co.jp>:
|
16
|
+
This user doesn't have a example.co.jp account (kijitora@example.co.jp) [-9]
|
17
|
+
|
18
|
+
--- Original message follows.
|
19
|
+
|
20
|
+
X-Originating-IP: [192.0.2.5]
|
21
|
+
Return-Path: <neko@example.jp>
|
22
|
+
Authentication-Results: mx4.mail5.example.com
|
23
|
+
from=example.jp; domainkeys=neutral (no sig)
|
24
|
+
Received: from 192.0.2.12 (EHLO mail4.example.net) (192.0.2.12)
|
25
|
+
by mx4.mail5.example.com with SMTP; Thu, 09 Apr 2008 23:34:45 -0800
|
26
|
+
X-Originating-IP: [192.0.2.5]
|
27
|
+
Received: from localhost ([127.0.0.1] helo=[192.168.0.2])
|
28
|
+
by localhost with esmtp (Exim 4.52)
|
29
|
+
id 000000-000000-00; Thu, 09 Apr 2008 23:34:45 -0800
|
30
|
+
To: neko@example.jp
|
31
|
+
Date: Thu, 9 Apr 2008 23:34:45 -0800
|
32
|
+
Message-ID: <00000000000000000000000000000000@example.jp>
|
33
|
+
Subject: Nyaan
|
34
|
+
MIME-Version: 1.0
|
35
|
+
Content-Type: text/plain; charset="us-ascii"
|
36
|
+
Content-Transfer-Encoding: 7bit
|
37
|
+
Sender: neko@example.jp
|
38
|
+
Errors-To: neko@example.jp
|
39
|
+
From: Nyanko <neko@example.jp>
|
40
|
+
|
41
|
+
Nyaaaan
|
@@ -0,0 +1,61 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@mx44.example.com>
|
2
|
+
Received: from mx12.example.com (mx12.example.com [192.0.2.9])
|
3
|
+
by mx44.example.com (8.13.1/8.13.1) with ESMTP id k0000000000000
|
4
|
+
for <shironeko@example.org>; Thu, 29 Apr 2006 23:34:45 +0900
|
5
|
+
Received: from r9.example.com (r9.example.com [192.0.2.43])
|
6
|
+
by mx12.example.com (Postfix) with ESMTP id 00000000000
|
7
|
+
for <shironeko@example.org>; Tue, 29 Apr 2006 23:34:45 +0900 (JST)
|
8
|
+
Date: Tue, 29 Apr 2006 23:34:45 +0900
|
9
|
+
From: Mail Delivery System <Mail.Delivery.System@mx44.example.com>
|
10
|
+
To: shironeko@example.org
|
11
|
+
Subject: Delivery status notification
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report;
|
14
|
+
boundary="------------0000000000000_000000000000"
|
15
|
+
Message-Id: <20060429233445.00000000000@mx12.example.com>
|
16
|
+
|
17
|
+
This is a multi-part message in MIME format.
|
18
|
+
|
19
|
+
--------------0000000000000_000000000000
|
20
|
+
Content-Type: text/plain; charset=UTF-8;
|
21
|
+
Content-Transfer-Encoding: 8bit
|
22
|
+
|
23
|
+
============================================================================
|
24
|
+
This is an automatically generated Delivery Status Notification.
|
25
|
+
|
26
|
+
Delivery to the following recipients failed permanently:
|
27
|
+
|
28
|
+
* kijitora@example.com
|
29
|
+
|
30
|
+
|
31
|
+
============================================================================
|
32
|
+
Technical details:
|
33
|
+
|
34
|
+
SMTP:RCPT host 192.0.2.8: 553 5.3.0 <kijitora@example.com>... No such user here
|
35
|
+
|
36
|
+
|
37
|
+
============================================================================
|
38
|
+
|
39
|
+
|
40
|
+
--------------0000000000000_000000000000
|
41
|
+
Content-Type: message/rfc822; charset=UFT-8;
|
42
|
+
Content-Transfer-Encoding: 8bit
|
43
|
+
Content-Disposition: attachment
|
44
|
+
|
45
|
+
|
46
|
+
Received: from mx44.example.com (mx44.example.com [127.0.0.1])
|
47
|
+
by mx44.example.com (8.13.1/8.13.1) with ESMTP id k0000000000000
|
48
|
+
for <kijitora@example.com>; Thu, 29 Apr 2006 23:34:45 +0900
|
49
|
+
Subject: Nyaaaaaaaan
|
50
|
+
From: shironeko@example.org
|
51
|
+
To: kijitora@example.com
|
52
|
+
MIME-Version: 1.0
|
53
|
+
Content-Type: multipart/mixed; boundary="===============0000000000=="
|
54
|
+
Message-ID: <fffffffffffffffffffffffffffffff@xample.org>
|
55
|
+
Date: Thu, 29 Apr 2006 23:34:45 +0900
|
56
|
+
List-Id: <neko.example.org>
|
57
|
+
Sender: shironeko@example.org
|
58
|
+
Errors-To: shironeko@example.org
|
59
|
+
|
60
|
+
--------------0000000000000_000000000000--
|
61
|
+
|
@@ -0,0 +1,90 @@
|
|
1
|
+
Return-path: <simoni@vhost1.example.com>
|
2
|
+
Envelope-to: listowner@example.com
|
3
|
+
Delivery-date: Fri, 09 Dec 2011 00:30:06 -0500
|
4
|
+
Received: from simoni by vhost1.example.com with local (Exim 4.69 (FreeBSD))
|
5
|
+
(envelope-from <simoni@vhost1.example.com>)
|
6
|
+
id 1RYt26-000M4B-Ev
|
7
|
+
for listowner@example.com; Fri, 09 Dec 2011 00:30:06 -0500
|
8
|
+
Date: Fri, 09 Dec 2011 00:30:06 -0500
|
9
|
+
From: MAILER-DAEMON@p3plsmtp04-01.prod.phx3.secureserver.net
|
10
|
+
To: listowner@example.com
|
11
|
+
X-BeenThere: "Bounce Handler" <bouncehandler@example.com>
|
12
|
+
X-Mailer: Pro Dada 4.9.0 Stable 12/06/11
|
13
|
+
Content-type: text/plain; charset=UTF-8
|
14
|
+
Subject: failure notice
|
15
|
+
Message-Id: <E1RYt26-000M4B-Ev@vhost1.example.com>
|
16
|
+
|
17
|
+
Your mail message to the following address(es) could not be delivered. This
|
18
|
+
is a permanent error. Please verify the addresses and try again. If you are
|
19
|
+
still having difficulty sending mail to these addresses, please contact
|
20
|
+
Customer Support at 480-624-2500.
|
21
|
+
|
22
|
+
<subscriber@example.com>:
|
23
|
+
child status 100...The e-mail message could not be delivered because the user's mailfolder is full.
|
24
|
+
|
25
|
+
--- Below this line is a copy of the message.
|
26
|
+
|
27
|
+
Return-Path: <bouncehandler@example.com>
|
28
|
+
Received: (qmail 5962 invoked from network); 8 Dec 2011 16:25:14 -0000
|
29
|
+
Received: from unknown (HELO p3pismtp01-036.prod.phx3.secureserver.net) ([10.6.12.63])
|
30
|
+
(envelope-sender <bouncehandler@example.com>)
|
31
|
+
by p3plsmtp04-01.prod.phx3.secureserver.net (qmail-1.03) with SMTP
|
32
|
+
for <subscriber@example.com>; 8 Dec 2011 16:25:14 -0000
|
33
|
+
X-IronPort-Anti-Spam-Result: Ak0CAHXk4E4MoWmXmWdsb2JhbABDhQaWbI1VgSAiAQEBAQEICwsHFCWBcgEBAQUBASAaCQggEQEBAQwbBQIJDw4CAgQtCyETBQwIBASHbqV/kSyBNIhxgRYEiC6MPJJF
|
34
|
+
Received: from vhost1.example.com ([12.161.105.151])
|
35
|
+
by p3pismtp01-036.prod.phx3.secureserver.net with ESMTP; 08 Dec 2011 09:21:15 -0700
|
36
|
+
Received: from simoni by vhost1.example.com with local (Exim 4.69 (FreeBSD))
|
37
|
+
(envelope-from <bouncehandler@example.com>)
|
38
|
+
id 1RYgig-000BSJ-B5
|
39
|
+
for subscriber@example.com; Thu, 08 Dec 2011 11:21:14 -0500
|
40
|
+
Date: Thu, 08 Dec 2011 11:21:14 -0500
|
41
|
+
From: "Test List" <listowner@example.com>
|
42
|
+
To: "Test List Subscriber" <subscriber@example.com>
|
43
|
+
X-Priority: 3
|
44
|
+
List: dadatest
|
45
|
+
List-Archive: <http://example.com/cgi-bin/dada/mail.cgi/archive/dadatest/>
|
46
|
+
List-ID: <dadatest.vhost1.example.com>
|
47
|
+
List-Owner: <listowner@example.com>
|
48
|
+
List-Post: NO
|
49
|
+
List-Subscribe: <http://dadamailproject.com/cgi-bin/dada/mail.cgi/s/dada_announce/simon/compustaff.com/>
|
50
|
+
List-Unsubscribe: <http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dada_announce/simon/compustaff.com/>
|
51
|
+
List-URL: <http://example.com/cgi-bin/dada/mail.cgi/list/dadatest/>
|
52
|
+
Message-ID: <20111207180210.28549468@example.com>
|
53
|
+
X-Mailer: Pro Dada 4.9.0 Stable 12/06/11
|
54
|
+
Content-type: text/plain; charset="UTF-8"
|
55
|
+
Content-Transfer-Encoding: quoted-printable
|
56
|
+
Content-Disposition: inline
|
57
|
+
MIME-Version: 1.0
|
58
|
+
Subject: Dada Mail v4.9.0 Released
|
59
|
+
X-AntiAbuse: This header was added to track abuse, please include it with any abuse report
|
60
|
+
X-AntiAbuse: Primary Hostname - vhost1.example.com
|
61
|
+
X-AntiAbuse: Original Domain - compustaff.com
|
62
|
+
X-AntiAbuse: Originator/Caller UID/GID - [1015 1004] / [26 6]
|
63
|
+
X-AntiAbuse: Sender Address Domain - example.com
|
64
|
+
X-Source: /usr/local/bin/perl
|
65
|
+
X-Source-Args: /usr/bin/perl mail.cgi
|
66
|
+
X-Source-Dir: justinsimoni.com:/example.com/cgi-bin/dada
|
67
|
+
|
68
|
+
(Mailing list information, including how to remove yourself, is located at =
|
69
|
+
the end of this message.)
|
70
|
+
__=20
|
71
|
+
|
72
|
+
yadda yadda=20
|
73
|
+
|
74
|
+
--=20
|
75
|
+
=20
|
76
|
+
Forward this Message to a Friend:
|
77
|
+
http://example.com/cgi-bin/dada/mail.cgi/archive/dadatest/2011=
|
78
|
+
1207180210/#forward_to_a_friend
|
79
|
+
|
80
|
+
Subscription Reminder: You're Subscribed to, Test List=20
|
81
|
+
Using the address: subscriber@example.com
|
82
|
+
|
83
|
+
From: listowner@example.com
|
84
|
+
PO BOX 18234 =0D
|
85
|
+
Denver, CO=0D
|
86
|
+
80218
|
87
|
+
|
88
|
+
Unsubscribe Automatically:
|
89
|
+
http://example.com/cgi-bin/dada/mail.cgi/u/dadatest/simon/comp=
|
90
|
+
ustaff.com/=3D=
|
@@ -0,0 +1,155 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.co.jp>
|
2
|
+
Delivered-To: main-shironeko@cat.example.co.jp
|
3
|
+
Received: from 192.0.2.172 [192.0.2.172]
|
4
|
+
by host-022.example.com with POP3 (fetchmail-6.3.17)
|
5
|
+
for <nekobatch@localhost> (single-drop); Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
6
|
+
Received: (qmail 2222 invoked from network); 15 Oct 2015 06:22:22 -0000
|
7
|
+
Received: from unknown (HELO re-2335g.example.net) (192.0.2.61)
|
8
|
+
by ksdc2288sv02 with SMTP; 15 Oct 2015 06:22:22 -0000
|
9
|
+
Received: from unknown (HELO vs-002.example.co.jp) (192.0.2.62)
|
10
|
+
by 0 with SMTP; 15 Oct 2015 15:22:22 +0900
|
11
|
+
X-IronPort-Anti-Spam-Filtered: true
|
12
|
+
X-IronPort-Anti-Spam-Result: 44OO44Op44OL44Oj44O844Oz44K6ISEK
|
13
|
+
Received: from post.email.example.net (HELO post-3.email.example.net) ([192.0.2.61])
|
14
|
+
by vs-002.example.co.jp with ESMTP; 15 Oct 2015 15:22:22 +0900
|
15
|
+
Received: from ip-005.email.example.net (vss-024 [192.0.2.10])
|
16
|
+
by post03.email.example.net (Postfix) with ESMTP id FF00FFFFFF
|
17
|
+
for <shironeko@cat.example.co.jp>; Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
18
|
+
X-IronPort-Anti-Spam-Filtered: true
|
19
|
+
X-IronPort-Anti-Spam-Result: 44OO44Op44OL44Oj44O844Oz44K6ISEK
|
20
|
+
Received: from mx05.example.co.jp ([192.0.2.61])
|
21
|
+
by ip-005.email.example.net with ESMTP; 15 Oct 2015 15:22:22 +0900
|
22
|
+
Received: from unknown (HELO mpps-022.int.example.co.jp) ([192.0.2.172])
|
23
|
+
by mx05.example.co.jp with SMTP; 15 Oct 2015 15:22:22 +0900
|
24
|
+
Received: from (unknown [192.0.2.4]) by mpps-022.int.example.co.jp with smtp
|
25
|
+
id ffff_0000_eeeeeeee_2222_0000_0000_000000000000;
|
26
|
+
Thu, 15 Oct 2015 15:22:22 +0900
|
27
|
+
Received: from localhost (localhost [127.0.0.1])
|
28
|
+
by postfix.vss-002 (Postfix) with SMTP id 0000000000
|
29
|
+
for <shironeko@cat.example.co.jp>; Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
30
|
+
From: "Mail Delivery Subsystem" <MAILER-DAEMON@example.co.jp>
|
31
|
+
Content-Type: multipart/mixed;
|
32
|
+
charset="iso-2022-jp";
|
33
|
+
boundary="TMMSG_FFFFFFFF_0000_2222_2222_000000000000"
|
34
|
+
Subject: Returned mail: User unknown
|
35
|
+
Date: Thu, 15 Oct 2015 15:22:22 +0900
|
36
|
+
MIME-Version: 1.0
|
37
|
+
To: "NotificationRecipients" <NotificationRecipients@mpvss-002.int.example.co.jp>
|
38
|
+
X-TM-AS-MML: No
|
39
|
+
Message-Id: <20151015000000.fffffffffffffff@mpvss-002.int.example.co.jp>
|
40
|
+
|
41
|
+
This is a multi-part message in MIME format.
|
42
|
+
|
43
|
+
|
44
|
+
--TMMSG_FFFFFFFF_0000_2222_2222_000000000000
|
45
|
+
Content-Type: text/plain;
|
46
|
+
charset="iso-2022-jp"
|
47
|
+
Content-Transfer-Encoding: 7bit
|
48
|
+
|
49
|
+
The original message was received at Thu Oct 13 15:22:22 2015
|
50
|
+
|
51
|
+
----- The following addresses had permanent delivery errors -----
|
52
|
+
|
53
|
+
|
54
|
+
--TMMSG_FFFFFFFF_0000_2222_2222_000000000000
|
55
|
+
Content-Type: message/rfc822
|
56
|
+
|
57
|
+
Received: from vrrr-22.int.example.co.jp (unknown [192.0.2.16])
|
58
|
+
by mpvss-002.int.example.co.jp (Postfix) with ESMTP id 0000000000
|
59
|
+
for <shironeko@cat.example.co.jp>; Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
60
|
+
Received: from localhost (localhost)
|
61
|
+
by vrrr-22.int.example.co.jp (MOS 4.4.4b-GA)
|
62
|
+
with internal id FFFFFFFF;
|
63
|
+
Thu, 15 Oct 2015 15:22:22 +0900
|
64
|
+
Date: Thu, 15 Oct 2015 15:22:22 +0900
|
65
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@vrrr-22.int.example.co.jp>
|
66
|
+
Message-Id: <201510150656.CAT22222@vrrr-22.int.example.co.jp>
|
67
|
+
To: shironeko@cat.example.co.jp
|
68
|
+
MIME-Version: 1.0
|
69
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
70
|
+
boundary="CAT22222.022222000/vrrr-22.int.example.co.jp"
|
71
|
+
Subject: Returned mail: User unknown
|
72
|
+
Auto-Submitted: auto-generated (failure)
|
73
|
+
X-TM-AS-MML: No
|
74
|
+
|
75
|
+
This is a MIME-encapsulated message
|
76
|
+
|
77
|
+
--CAT22222.022222000/vrrr-22.int.example.co.jp
|
78
|
+
|
79
|
+
The original message was received at Thu, 15 Oct 2015 15:22:22 +0900
|
80
|
+
from 192.0.2.4 [192.0.2.4]
|
81
|
+
|
82
|
+
----- The following addresses had permanent delivery errors -----
|
83
|
+
kijitora@neko.example.org
|
84
|
+
|
85
|
+
|
86
|
+
--CAT22222.022222000/vrrr-22.int.example.co.jp
|
87
|
+
Content-Type: message/delivery-status
|
88
|
+
|
89
|
+
Reporting-MTA: dns; vrrr-22.int.example.co.jp
|
90
|
+
Arrival-Date: Thu, 15 Oct 2015 15:22:22 +0900
|
91
|
+
|
92
|
+
Original-Recipient: rfc822;kijitora@neko.example.org
|
93
|
+
Final-Recipient: RFC822; kijitora@neko.example.org
|
94
|
+
Action: failed
|
95
|
+
Status: 5.1.1
|
96
|
+
Remote-MTA: X-Unix; mirapoint
|
97
|
+
Diagnostic-Code: smtp; 550 5.1.1 User unknown
|
98
|
+
Last-Attempt-Date: Thu, 15 Oct 2015 15:22:22 +0900
|
99
|
+
|
100
|
+
--CAT22222.022222000/vrrr-22.int.example.co.jp
|
101
|
+
Content-Type: message/rfc822
|
102
|
+
|
103
|
+
Received: from 192.0.2.4 (EHLO mpvss-002.int.example.co.jp) ([192.0.2.4])
|
104
|
+
by vrrr-22.int.example.co.jp (MOS 4.4.4b-GA FastPath queued)
|
105
|
+
with ESMTP id CAT22222;
|
106
|
+
Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
107
|
+
Received: from mpvss-002.int.example.co.jp (localhost [127.0.0.1])
|
108
|
+
by postfix.vss-002 (Postfix) with ESMTP id 2222222222
|
109
|
+
for <kijitora@neko.example.org>; Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
110
|
+
Received: from mpps-022.int.example.co.jp (unknown [192.0.2.100])
|
111
|
+
by mpvss-002.int.example.co.jp (Postfix) with SMTP id 2222222222
|
112
|
+
for <kijitora@neko.example.org>; Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
113
|
+
Received: from (unknown [192.0.2.172]) by mpps-022.int.example.co.jp with smtp
|
114
|
+
id 2222_0000_4444cccc_cccc_8888_2222_000000000000;
|
115
|
+
Thu, 15 Oct 2015 15:22:22 +0900
|
116
|
+
Received-SPF: None (mx05.example.co.jp: no sender authenticity
|
117
|
+
information available from domain of shironeko@cat.example.co.jp)
|
118
|
+
identity=mailfrom; client-ip=192.0.2.61;
|
119
|
+
receiver=mx05.example.co.jp;
|
120
|
+
envelope-from="shironeko@cat.example.co.jp";
|
121
|
+
x-sender="shironeko@cat.example.co.jp"; x-conformance=spf_only
|
122
|
+
Received: from post.email.example.net (HELO post02.email.example.net) ([192.0.2.61])
|
123
|
+
by mx05.example.co.jp with ESMTP; 15 Oct 2015 15:22:22 +0900
|
124
|
+
Received: from iron03.email.example.net (vss-002 [192.0.2.10])
|
125
|
+
by post02.email.example.net (Postfix) with ESMTP id CCCCCCCCCCC
|
126
|
+
for <kijitora@neko.example.org>; Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
127
|
+
Received: from 192.0.2.61.email.example.net (HELO guard04.email.example.net) ([192.0.2.61])
|
128
|
+
by iron03v.email.example.net with ESMTP; 15 Oct 2015 15:22:22 +0900
|
129
|
+
Received: from 192.0.2.61.email.example.net (HELO re-2335g.example.net) ([192.0.2.61])
|
130
|
+
by guard04.email.example.net with SMTP; 15 Oct 2015 15:22:22 +0900
|
131
|
+
Received: from unknown (HELO mx02.example.co.jp.) (61.114.186.97)
|
132
|
+
by 0 with SMTP; 15 Oct 2015 15:22:22 +0900
|
133
|
+
Received: (qmail 2022 invoked from network); 15 Oct 2015 06:22:22 -0000
|
134
|
+
Received: from unknown (HELO host-022.example.com) (192.0.2.10.105)
|
135
|
+
by cccccccccccc with SMTP; 15 Oct 2015 06:22:22 -0000
|
136
|
+
Received: from cat2222.in.nyan.example.com (cat2222.in.nyan.example.com [192.0.2.10.107])
|
137
|
+
by host-022.example.com (Postfix) with ESMTP id CCCCCCCC2
|
138
|
+
for <kijitora@neko.example.org>; Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
139
|
+
Received: from cat2222.in.nyan.example.com (localhost.localdomain [127.0.0.1])
|
140
|
+
by cat2222.in.nyan.example.com (Postfix) with ESMTP id CCCCCCCCC22
|
141
|
+
for <kijitora@neko.example.org>; Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
142
|
+
Message-ID: <2222222222.0000000000002.JavaMail.nekogate@cat.example.jp>
|
143
|
+
Date: Thu, 15 Oct 2015 15:22:22 +0900 (JST)
|
144
|
+
From: アドレス確認<FIKT> <shironeko@cat.example.co.jp>
|
145
|
+
To: kijitora@neko.example.org
|
146
|
+
Subject: 【TEST】メールアドレスの確認
|
147
|
+
X-TM-AS-MML: No
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
--CAT22222.022222000/vrrr-22.int.example.co.jp--
|
152
|
+
--TMMSG_FFFFFFFF_0000_2222_2222_000000000000--
|
153
|
+
|
154
|
+
|
155
|
+
|