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,43 @@
|
|
1
|
+
Date: Fri, 8 Jul 1994 09:21:47 -0400
|
2
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@CS.UTK.EDU>
|
3
|
+
Subject: Returned mail: User unknown
|
4
|
+
To: <owner-ups-mib@CS.UTK.EDU>
|
5
|
+
MIME-Version: 1.0
|
6
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
7
|
+
boundary="JAA13167.773673707/CS.UTK.EDU"
|
8
|
+
|
9
|
+
--JAA13167.773673707/CS.UTK.EDU
|
10
|
+
content-type: text/plain; charset=us-ascii
|
11
|
+
|
12
|
+
----- The following addresses had delivery problems -----
|
13
|
+
<arathib@vnet.ibm.com> (unrecoverable error)
|
14
|
+
<wsnell@sdcc13.ucsd.edu> (unrecoverable error)
|
15
|
+
|
16
|
+
--JAA13167.773673707/CS.UTK.EDU
|
17
|
+
content-type: message/delivery-status
|
18
|
+
|
19
|
+
Reporting-MTA: dns; cs.utk.edu
|
20
|
+
|
21
|
+
Original-Recipient: rfc822;arathib@vnet.ibm.com
|
22
|
+
Final-Recipient: rfc822;arathib@vnet.ibm.com
|
23
|
+
Action: failed
|
24
|
+
Status: 5.0.0 (permanent failure)
|
25
|
+
Diagnostic-Code: smtp; 550 'arathib@vnet.IBM.COM' is not a
|
26
|
+
registered gateway user
|
27
|
+
Remote-MTA: dns; vnet.ibm.com
|
28
|
+
|
29
|
+
Original-Recipient: rfc822;johnh@hpnjld.njd.hp.com
|
30
|
+
Final-Recipient: rfc822;johnh@hpnjld.njd.hp.com
|
31
|
+
Action: delayed
|
32
|
+
Status: 4.0.0 (hpnjld.njd.jp.com: host name lookup failure)
|
33
|
+
|
34
|
+
Original-Recipient: rfc822;wsnell@sdcc13.ucsd.edu
|
35
|
+
Final-Recipient: rfc822;wsnell@sdcc13.ucsd.edu
|
36
|
+
Action: failed
|
37
|
+
Status: 5.0.0
|
38
|
+
Diagnostic-Code: smtp; 550 user unknown
|
39
|
+
Remote-MTA: dns; sdcc13.ucsd.edu
|
40
|
+
|
41
|
+
--JAA13167.773673707/CS.UTK.EDU
|
42
|
+
content-type: message/rfc822
|
43
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
Date: Thu, 7 Jul 1994 17:16:05 -0400 From: Mail Delivery Subsystem <MAILER-DAEMON@CS.UTK.EDU>
|
2
|
+
Message-Id: <199407072116.RAA14128@CS.UTK.EDU>
|
3
|
+
Subject: Returned mail: Cannot send message for 5 days
|
4
|
+
To: <owner-info-mime@cs.utk.edu>
|
5
|
+
MIME-Version: 1.0
|
6
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
7
|
+
boundary="RAA14128.773615765/CS.UTK.EDU"
|
8
|
+
|
9
|
+
--RAA14128.773615765/CS.UTK.EDU
|
10
|
+
|
11
|
+
The original message was received at Sat, 2 Jul 1994 17:10:28 -0400
|
12
|
+
from root@localhost
|
13
|
+
|
14
|
+
----- The following addresses had delivery problems -----
|
15
|
+
<louisl@larry.slip.umd.edu> (unrecoverable error)
|
16
|
+
|
17
|
+
----- Transcript of session follows -----
|
18
|
+
<louisl@larry.slip.umd.edu>... Deferred: Connection timed out
|
19
|
+
with larry.slip.umd.edu.
|
20
|
+
Message could not be delivered for 5 days
|
21
|
+
Message will be deleted from queue
|
22
|
+
|
23
|
+
--RAA14128.773615765/CS.UTK.EDU
|
24
|
+
content-type: message/delivery-status
|
25
|
+
|
26
|
+
Reporting-MTA: dns; cs.utk.edu
|
27
|
+
|
28
|
+
Original-Recipient: rfc822;louisl@larry.slip.umd.edu
|
29
|
+
Final-Recipient: rfc822;louisl@larry.slip.umd.edu
|
30
|
+
Action: failed
|
31
|
+
Status: 4.0.0
|
32
|
+
Diagnostic-Code: smtp; 426 connection timed out
|
33
|
+
Last-Attempt-Date: Thu, 7 Jul 1994 17:15:49 -0400
|
34
|
+
|
35
|
+
--RAA14128.773615765/CS.UTK.EDU
|
36
|
+
content-type: message/rfc822
|
37
|
+
|
38
|
+
[original message goes here]
|
39
|
+
|
40
|
+
--RAA14128.773615765/CS.UTK.EDU--
|
@@ -0,0 +1,50 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mailx-53.neko.example.edu ([192.0.2.90])
|
3
|
+
by kyoto1.pop.example.net (Post.Office MTA v3.1.2 release (PO203-101c)
|
4
|
+
ID# 0-00000000000000000) with ESMTP id 0000000 for <shironeko@example.com>;
|
5
|
+
Thu, 29 Apr 1999 23:34:45 -0700
|
6
|
+
Received: from localhost (localhost)
|
7
|
+
by mailx-53.neko.example.edu (8.8.8/8.8.8) with internal id 00000000;
|
8
|
+
Thu, 29 Apr 1999 23:34:45 -0500 (CDT)
|
9
|
+
Date: Thu, 29 Apr 1999 23:34:45 -0500 (CDT)
|
10
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@neko.example.edu>
|
11
|
+
Message-Id: <199904292334.00000000@mailx-53.neko.example.edu>
|
12
|
+
To: <shironeko@example.com>
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
15
|
+
boundary="FFFFF000.0000000000/mailx-53.neko.example.edu"
|
16
|
+
Subject: Returned mail: Service unavailable
|
17
|
+
Auto-Submitted: auto-generated (failure)
|
18
|
+
|
19
|
+
The original message was received at Thu, 29 Apr 1999 23:34:45 -0500 (CDT)
|
20
|
+
from [192.0.2.64]
|
21
|
+
|
22
|
+
----- The following addresses had permanent fatal errors -----
|
23
|
+
"|IFS=' ' && exec /usr/local/bin/procmail -f- || exit 75 #kijitora"
|
24
|
+
(expanded from: <kijitora@neko.example.edu>)
|
25
|
+
|
26
|
+
----- Transcript of session follows -----
|
27
|
+
554 "|IFS=' ' && exec /usr/local/bin/procmail -f- || exit 75 #kijitora"... Service unavailable
|
28
|
+
|
29
|
+
Reporting-MTA: dns; mailx-53.neko.example.edu
|
30
|
+
Received-From-MTA: DNS; [192.0.2.64]
|
31
|
+
Arrival-Date: Thu, 29 Apr 1999 23:34:45 -0500 (CDT)
|
32
|
+
|
33
|
+
Final-Recipient: RFC822; kijitora@mailx-53.neko.example.edu
|
34
|
+
X-Actual-Recipient: RFC822; |IFS=' ' && exec /usr/local/bin/procmail -f- || exit 75 #kijitora@mailx-53.neko.example.edu
|
35
|
+
Action: failed
|
36
|
+
Status: 5.5.0
|
37
|
+
Last-Attempt-Date: Thu, 29 Apr 1999 23:34:45 -0500 (CDT)
|
38
|
+
|
39
|
+
Return-Path: <shironeko@example.com>
|
40
|
+
Received: from mx4.example.co.jp ([192.0.2.68])
|
41
|
+
by mailx-53.neko.example.edu (8.8.8/8.8.8) with SMTP id 00000000
|
42
|
+
for <kijitora@neko.example.edu>; Thu, 29 Apr 1999 23:34:45 -0500 (CDT)
|
43
|
+
From: shironeko@example.com
|
44
|
+
Date: Wed, 29 Apr 1999 23:34:45 +0900
|
45
|
+
Message-Id: <00000000000.000000@mx4.example.co.jp>
|
46
|
+
To: kijitora@neko.example.edu
|
47
|
+
Subject: Nyaaan
|
48
|
+
|
49
|
+
Nyaan
|
50
|
+
|
@@ -0,0 +1,63 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Date: Sat, 17 Sep 2011 07:07:36 -0400
|
3
|
+
From: postmaster@mail81.us2.rsgsv.net
|
4
|
+
Subject: Delivery report
|
5
|
+
To: bounce-5899542-1206365-kijitora=example.jp@mail81.us2.rsgsv.net
|
6
|
+
MIME-Version: 1.0
|
7
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
8
|
+
boundary="report4E747F78@mail81.us2.rsgsv.net"
|
9
|
+
|
10
|
+
|
11
|
+
--report4E747F78@mail81.us2.rsgsv.net
|
12
|
+
|
13
|
+
Hello, this is the mail server on mail81.us2.rsgsv.net.
|
14
|
+
|
15
|
+
I am sending you this message to inform you on the delivery status of a
|
16
|
+
message you previously sent. Immediately below you will find a list of
|
17
|
+
the affected recipients; also attached is a Delivery Status Notification
|
18
|
+
(DSN) report in standard format, as well as the headers of the original
|
19
|
+
message.
|
20
|
+
|
21
|
+
<kijitora@example.jp> delivery failed; will not continue trying
|
22
|
+
|
23
|
+
--report4E747F78@mail81.us2.rsgsv.net
|
24
|
+
Content-Type: message/delivery-status
|
25
|
+
|
26
|
+
Reporting-MTA: dns;mail81.us2.rsgsv.net
|
27
|
+
X-PowerMTA-VirtualMTA: mail81.us2.rsgsv.net
|
28
|
+
Received-From-MTA: dns;(127.0.0.1)
|
29
|
+
Arrival-Date: Sat, 17 Sep 2011 07:07:29 -0400
|
30
|
+
|
31
|
+
Final-Recipient: rfc822;kijitora@example.jp
|
32
|
+
Action: failed
|
33
|
+
Status: 5.2.1 (mailbox disabled, not accepting messages)
|
34
|
+
Remote-MTA: dns;mx.example.jp (192.0.2.135)
|
35
|
+
Diagnostic-Code: smtp;550 5.2.1 <kijitora@example.jp>... User Unknown
|
36
|
+
X-PowerMTA-BounceCategory: bad-mailbox
|
37
|
+
|
38
|
+
--report4E747F78@mail81.us2.rsgsv.net
|
39
|
+
Content-Type: text/rfc822-headers
|
40
|
+
|
41
|
+
Received: from (127.0.0.1) by mail81.us2.rsgsv.net (PowerMTA(TM) v3.5r16)
|
42
|
+
id hehvng0ik18p for <kijitora@example.jp>; Sat, 17 Sep 2011 07:07:29 -0400
|
43
|
+
(envelope-from <bounce-5899542-1206365-kijitora=example.jp@mail81.us2.rsgsv.net>)
|
44
|
+
Subject: Nyaaan
|
45
|
+
From: "shironeko" <shironeko@example.org>
|
46
|
+
Reply-To: "Nekochan" <neko@example.org>
|
47
|
+
To: "Kijitora" <kijitora@example.jp>
|
48
|
+
Date: Sat, 17 Sep 2011 07:07:29 -0400
|
49
|
+
Message-ID: <df97007ab80e066354480c22f9d65e762ff.20110917110726@mail81.us2.rsgsv.net>
|
50
|
+
X-Mailer: MailChimp Mailer - **CID19457665f39d65e762ff**
|
51
|
+
X-Campaign: mailchimpdf97007ab80e066354480c22f.19457665f3
|
52
|
+
X-campaignid: mailchimpdf97007ab80e066354480c22f.19457665f3
|
53
|
+
x-im: 38509-19457665f3
|
54
|
+
X-Report-Abuse: Please report abuse for this campaign here: http://www.mailchimp.com/abuse/abuse.phtml?u=df97007ab80e066354480c22f&id=19457665f3&e=9d65e762ff
|
55
|
+
x-accounttype: ff
|
56
|
+
List-Unsubscribe: <mailto:unsubscribe-df97007ab80e066354480c22f-19457665f3-9d65e762ff@mailin1.us2.mcsv.net?subject=unsubscribe>, <http://example.us2.list-manage.com/unsubscribe?u=df97007ab80e066354480c22f&id=6c5a8e8e09&e=9d65e762ff&c=19457665f3>
|
57
|
+
Sender: "Shironeko, Nyanko" <shironeko=example.org@mail81.us2.rsgsv.net>
|
58
|
+
x-mcda: FALSE
|
59
|
+
Content-Type: text/plain; charset="utf-8"; format="fixed"
|
60
|
+
Content-Transfer-Encoding: quoted-printable
|
61
|
+
|
62
|
+
--report4E747F78@mail81.us2.rsgsv.net--
|
63
|
+
|
@@ -0,0 +1,48 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mxr45.example.net ([192.0.2.56])
|
3
|
+
by relay-4.pop.example.ne.jp (Post.Office MTA v3.1.2 release (PO203-101c)
|
4
|
+
ID# 0-00000000000000000) with ESMTP id 0000000
|
5
|
+
for <shironeko@example.co.jp>; Thu, 29 Apr 2000 23:34:45 +0900
|
6
|
+
Received: from localhost (localhost)
|
7
|
+
by mxr45.example.net (8.8.8/8.8.8) with internal id 00000000;
|
8
|
+
Thu, 29 Apr 2000 23:34:45 +0900 (JST)
|
9
|
+
Date: Thu, 29 Apr 2000 23:34:45 +0900 (JST)
|
10
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@mxr45.example.net>
|
11
|
+
Message-Id: <200004290452.AAA00901@mxr45.example.net>
|
12
|
+
To: <shironeko@example.co.jp>
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
15
|
+
boundary="FFFFFF00.00000/mxr45.example.net"
|
16
|
+
Subject: Returned mail: Service unavailable
|
17
|
+
Auto-Submitted: auto-generated (failure)
|
18
|
+
|
19
|
+
The original message was received at Thu, 29 Apr 2000 23:34:45 +0900 (JST)
|
20
|
+
from [192.0.2.230]
|
21
|
+
|
22
|
+
----- The following addresses had permanent fatal errors -----
|
23
|
+
<kijitora@example.net>
|
24
|
+
|
25
|
+
----- Transcript of session follows -----
|
26
|
+
mail.local: unknown user: kijitora
|
27
|
+
554 <kijitora@example.net>... Service unavailable
|
28
|
+
|
29
|
+
Reporting-MTA: dns; mxr45.example.net
|
30
|
+
Received-From-MTA: DNS; [192.0.2.231]
|
31
|
+
Arrival-Date: Thu, 29 Apr 2000 23:34:45 +0900 (JST)
|
32
|
+
|
33
|
+
Final-Recipient: RFC822; <kijitora@example.net>
|
34
|
+
Action: failed
|
35
|
+
Status: 5.5.0
|
36
|
+
Last-Attempt-Date: Thu, 29 Apr 2000 23:34:45 +0900 (JST)
|
37
|
+
|
38
|
+
Return-Path: <shironeko@example.co.jp>
|
39
|
+
Received: from mail52.example.com ([192.0.2.90])
|
40
|
+
by mxr45.example.net (8.8.8/8.8.8) with SMTP id 00000000;
|
41
|
+
Thu, 29 Apr 2000 23:34:45 +0900 (JST)
|
42
|
+
From: shironeko@example.co.jp
|
43
|
+
Subject: Nyaaan
|
44
|
+
Date: Wed, 29 Apr 2000 23:34:45 +0900
|
45
|
+
Message-Id: <0000000000.0000000@mail.example.com>
|
46
|
+
To: shironeko@example.co.jp
|
47
|
+
|
48
|
+
Nyaan
|
@@ -0,0 +1,88 @@
|
|
1
|
+
From Postmaster Thu Apr 29 23:34:45 2004
|
2
|
+
Return-Path: <postmaster@example.org>
|
3
|
+
Delivered-To: shironeko@example.org
|
4
|
+
Received: from example.com (unknown [192.0.2.52])
|
5
|
+
by mail.example.org (Postfix) with ESMTP id 0000000000
|
6
|
+
for <shironeko@example.org>; Thu, 29 Apr 2004 23:34:45 -0000 (GMT)
|
7
|
+
Received: from [192.0.2.220] (helo=mx54.exmaple.com)
|
8
|
+
by mail.example.org with esmtp (Exim 3.21 #1)
|
9
|
+
id ffffff-000000-00
|
10
|
+
for postmaster@example.org; Thu, 29 Apr 2004 23:34:45 -0000
|
11
|
+
Message-ID: <0000000000000000@mx54.exmaple.com>
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: Multipart/Report;
|
14
|
+
report-type=delivery-status; boundary="=========FF000000000000FF/mx54.exmaple.com"
|
15
|
+
List-Id: General discussion list for Cats <neko-list.example.org>
|
16
|
+
List-Unsubscribe: <http://mail.example.org/mailman/listinfo/neko-list>,
|
17
|
+
<mailto:neko-list-request@example.org?subject=unsubscribe>
|
18
|
+
List-Archive: <http://mail.example.org/pipermail/neko-list/>
|
19
|
+
From: Mail Delivery Service <bosscat@example.com>
|
20
|
+
Sender: neko-list-owner@example.org
|
21
|
+
To: postmaster@example.org
|
22
|
+
Subject: Delivery Status Notification (Mail Delivery Delayed)
|
23
|
+
Date: Thu, 29 Apr 2004 23:34:45 +0000
|
24
|
+
X-Autogenerated: Mirror
|
25
|
+
X-Mirrored-by: <postmaster@example.org>
|
26
|
+
X-BeenThere: neko-list@example.org
|
27
|
+
X-Mailman-Version: 2.0.5 (101270)
|
28
|
+
|
29
|
+
This multi-part MIME message contains a Delivery Status Notification.
|
30
|
+
If you can see this text, your mail client may not be able to understand MIME
|
31
|
+
formatted messages or DSNs (see RFC 2045 through 2049 for general MIME
|
32
|
+
information and RFC 1891 through 1894 for DSN specific information).
|
33
|
+
|
34
|
+
--=========FF000000000000FF/mx54.exmaple.com
|
35
|
+
Content-Type: text/plain; charset=us-ascii
|
36
|
+
|
37
|
+
- This is only a notification about a delay in the delivery of your message.
|
38
|
+
- There is no need to resend your message at this time.
|
39
|
+
- The following recipients have not yet received your message:
|
40
|
+
|
41
|
+
kijitora@example.net; Action: Delayed
|
42
|
+
|
43
|
+
- The server will continue trying for up to 21 hours.
|
44
|
+
|
45
|
+
|
46
|
+
--=========FF000000000000FF/mx54.exmaple.com
|
47
|
+
Content-Type: Message/Delivery-Status
|
48
|
+
|
49
|
+
Reporting-MTA: dns; mx54.exmaple.com
|
50
|
+
Received-from-MTA: dns; mail.example.org (192.0.2.222)
|
51
|
+
Arrival-Date: Thu, 29 Apr 2004 23:34:45 +0000
|
52
|
+
|
53
|
+
Final-Recipient: rfc822; kijitora@example.net
|
54
|
+
Action: Delayed
|
55
|
+
Status: 4.4.0 (other or undefined network or routing status)
|
56
|
+
Will-Retry-Until: Thu, 2 Jul 2004 23:34:45 +0000
|
57
|
+
|
58
|
+
--=========FF000000000000FF/mx54.exmaple.com
|
59
|
+
Content-Type: Text/RFC822-headers
|
60
|
+
|
61
|
+
Return-Path: <postmaster@example.org>
|
62
|
+
Received: from localhost.localdomain ([127.0.0.1] helo=mail.example.org)
|
63
|
+
by mail.example.org with esmtp (Exim 3.21 #1)
|
64
|
+
id ffffff-000000-00; Thu, 29 Apr 2004 23:34:45 -0000
|
65
|
+
From: Shironeko <shironeko@list.example.jp>
|
66
|
+
Subject: Nyaaan
|
67
|
+
Message-ID: <000000000000000@list.example.jp>
|
68
|
+
To: neko-list@example.org
|
69
|
+
Sender: postmaster@example.org
|
70
|
+
Errors-To: postmaster@example.org
|
71
|
+
X-BeenThere: neko-list@example.org
|
72
|
+
X-Mailman-Version: 2.0.5 (101270)
|
73
|
+
Precedence: bulk
|
74
|
+
List-Help: <mailto:neko-list-request@example.org?subject=help>
|
75
|
+
List-Post: <mailto:neko-list@example.org>
|
76
|
+
List-Subscribe: <http://mail.example.org/mailman/listinfo/neko-list>,
|
77
|
+
<mailto:neko-list-request@example.org?subject=subscribe>
|
78
|
+
List-Id: General discussion list for Cats <neko-list.example.org>
|
79
|
+
List-Unsubscribe: <http://mail.example.org/mailman/listinfo/neko-list>,
|
80
|
+
<mailto:neko-list-request@example.org?subject=unsubscribe>
|
81
|
+
List-Archive: <http://mail.example.org/pipermail/neko-list/>
|
82
|
+
Date: 29 Apr 2004 23:34:45 +0000
|
83
|
+
|
84
|
+
|
85
|
+
--=========FF000000000000FF/mx54.exmaple.com--
|
86
|
+
|
87
|
+
|
88
|
+
|
@@ -0,0 +1,70 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: by mx.example.org ([192.0.2.22]) with SMTP id 000000000000;
|
3
|
+
Thu, 9 Apr 2008 23:34:45 +0900 (JST)
|
4
|
+
Received: by g4.example.org ([192.0.2.14]) with SMTP id 000000000000;
|
5
|
+
Thu, 09 Apr 2008 23:34:45 +0900 (JST)
|
6
|
+
Received: from relay90.example.com (relay90.example.com [192.0.2.80])
|
7
|
+
by mx.google.com with SMTP id 000000000000fff.2008.04.09.23.34.45;
|
8
|
+
Thu, 09 Apr 2008 23:34:45 +0900 (JST)
|
9
|
+
Received-SPF: pass (google.com: best guess record for domain of relay90.example.com designates 192.0.2.80 as permitted sender) client-ip=192.0.2.9;
|
10
|
+
MIME-Version: 1.0
|
11
|
+
From: Barracuda Spam Firewall <postmaster@example.com>
|
12
|
+
Message-Id: <000000000000000000000000000000@mx.example.com>
|
13
|
+
Subject: **Message you sent blocked by our bulk email filter**
|
14
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
15
|
+
charset=utf-8;
|
16
|
+
boundary="----------=_000000000-00000-000"
|
17
|
+
To: shironeko@example.co.jp
|
18
|
+
Date: Thu, 9 Apr 2008 23:34:45 +0900 (JST)
|
19
|
+
|
20
|
+
This is a multi-part message in MIME format...
|
21
|
+
|
22
|
+
------------=_000000000-00000-000
|
23
|
+
Content-Type: text/plain; charset="utf-8"
|
24
|
+
Content-Disposition: inline
|
25
|
+
Content-Transfer-Encoding: base64
|
26
|
+
|
27
|
+
000000000000000000000000000000000000000000000000000000000000
|
28
|
+
000000000000000000000000000000000000000000000000000000000000
|
29
|
+
000000000000000000000000000000000000000000000000000000000000
|
30
|
+
000000000000000000000000000000000000000000000000000000000000
|
31
|
+
0000
|
32
|
+
|
33
|
+
------------=_000000000-00000-000
|
34
|
+
Content-Type: message/delivery-status
|
35
|
+
Content-Disposition: inline
|
36
|
+
Content-Transfer-Encoding: 7bit
|
37
|
+
Content-Description: Delivery error report
|
38
|
+
|
39
|
+
Reporting-MTA: dns; barracuda1.example.com
|
40
|
+
Received-From-MTA: smtp; barracuda1.example.com ([127.0.0.1])
|
41
|
+
Arrival-Date: Thu, 9 Apr 2008 23:34:45 +0900 (JST)
|
42
|
+
|
43
|
+
Final-Recipient: rfc822; kijitora@example.net
|
44
|
+
Action: failed
|
45
|
+
Status: 5.7.1
|
46
|
+
Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, UBE, id=00000-00-000
|
47
|
+
Last-Attempt-Date: Thu, 9 Apr 2008 23:34:45 +0900 (JST)
|
48
|
+
|
49
|
+
------------=_000000000-00000-000
|
50
|
+
Content-Type: text/rfc822-headers
|
51
|
+
Content-Disposition: inline
|
52
|
+
Content-Transfer-Encoding: 7bit
|
53
|
+
Content-Description: Undelivered-message headers
|
54
|
+
|
55
|
+
Received: from lx.dyn.example.or.jp (unknown [192.0.2.55])
|
56
|
+
by barracuda1.example.com (Spam Firewall) with ESMTP id 000000000000
|
57
|
+
for <kijitora@example.net>; Thu, 9 Apr 2008 23:34:45 +0900 (JST)
|
58
|
+
Received: from [192.0.2.230] by relay4.example.com;
|
59
|
+
Thu, 09 Apr 2008 23:34:45 +0000
|
60
|
+
Message-ID: <000000000000000000000000000000@mx.example.or.jp>
|
61
|
+
From: "Shironeko" <shironeko@example.co.jp>
|
62
|
+
To: <kijitora@example.net>
|
63
|
+
Subject: Nyaaaaaaaan
|
64
|
+
Date: Thu, 09 Apr 2005 23:34:45 +0000
|
65
|
+
MIME-Version: 1.0
|
66
|
+
Content-Type: multipart/alternative;
|
67
|
+
boundary="----=_NextPart_000_0004_00000FFF.FFFFFF00"
|
68
|
+
X-Priority: 3
|
69
|
+
|
70
|
+
------------=_000000000-00000-000--
|
@@ -0,0 +1,93 @@
|
|
1
|
+
From: "Mail Delivery System" <MAILER-DAEMON@mx4.gr3.example.jp>
|
2
|
+
To: <shironeko@example.org>
|
3
|
+
Subject: Delayed Mail (still being retried)
|
4
|
+
Date: Thu, 9 May 2009 23:34:45 +0900
|
5
|
+
Message-ID: <20090509233455.00000000000@mx4.gr3.example.jp>
|
6
|
+
MIME-Version: 1.0
|
7
|
+
Content-Type: multipart/mixed;
|
8
|
+
boundary="----=_bb_0000_fffff_00"
|
9
|
+
|
10
|
+
This is a multipart message in MIME format.
|
11
|
+
|
12
|
+
------=_bb_0000_fffff_00
|
13
|
+
Content-Type: text/plain;
|
14
|
+
report-type=delivery-status;
|
15
|
+
boundary="X000000000.DFF0000/mx4.gr3.example.jp";
|
16
|
+
charset="US-ASCII"
|
17
|
+
Content-Transfer-Encoding: 7bit
|
18
|
+
|
19
|
+
This is the mail system at host mx4.gr3.example.jp.
|
20
|
+
|
21
|
+
####################################################################
|
22
|
+
# THIS IS A WARNING ONLY. YOU DO NOT NEED TO RESEND YOUR MESSAGE. #
|
23
|
+
####################################################################
|
24
|
+
|
25
|
+
Your message could not be delivered for more than 15 minutes.
|
26
|
+
It will be retried until it is 24 hours old.
|
27
|
+
|
28
|
+
For further assistance, please contact your postmaster.
|
29
|
+
|
30
|
+
If you do so, please include this problem report. You can
|
31
|
+
delete your own text from the attached returned message.
|
32
|
+
|
33
|
+
The mail system
|
34
|
+
|
35
|
+
<kijitora-cat@mx4.gr3.example.jp> (expanded from
|
36
|
+
<kijitora@mx4.gr3.example.jp>): temporary failure. Command output:
|
37
|
+
Quota
|
38
|
+
exceeded message delivery failed to /var/mail/box/00/f/kijitora/INBOX
|
39
|
+
|
40
|
+
------=_bb_0000_fffff_00
|
41
|
+
Content-Type: message/delivery-status;
|
42
|
+
name="details.txt"
|
43
|
+
Content-Transfer-Encoding: 7bit
|
44
|
+
Content-Disposition: attachment;
|
45
|
+
filename="details.txt"
|
46
|
+
|
47
|
+
Reporting-MTA: dns; mx4.gr3.example.jp
|
48
|
+
X-Postfix-Queue-ID: F0000000000
|
49
|
+
X-Postfix-Sender: rfc822; shironeko@example.org
|
50
|
+
Arrival-Date: Thu, 9 May 2009 23:34:45 +0900 (JST)
|
51
|
+
|
52
|
+
Final-Recipient: rfc822; kijitora-cat@mx4.gr3.example.jp
|
53
|
+
Original-Recipient: rfc822;kijitora-nyaaaaaan@example.co.jp
|
54
|
+
Action: delayed
|
55
|
+
Status: 4.3.0
|
56
|
+
Diagnostic-Code: x-unix; Quota exceeded message delivery failed to
|
57
|
+
/var/mail/box/u/00/f/kijitora/INBOX
|
58
|
+
Will-Retry-Until: Mon, 5 May 2009 23:34:45 +0900 (JST)
|
59
|
+
|
60
|
+
------=_bb_0000_fffff_00
|
61
|
+
Content-Type: text/rfc822-headers;
|
62
|
+
name="Undelivered Message Headers.txt"
|
63
|
+
Content-Transfer-Encoding: quoted-printable
|
64
|
+
Content-Disposition: attachment;
|
65
|
+
filename="Undelivered Message Headers.txt"
|
66
|
+
|
67
|
+
Received: from mx34.mail.example.jp (mx34.mail.example.jp [192.0.2.21])
|
68
|
+
by mx4.gr3.example.jp (Postfix) with ESMTP id F0000000000
|
69
|
+
for <kijitora@mx4.gr3.example.jp>; Thu, 9 May 2009 23:34:45 +0900 (JST)
|
70
|
+
Received: from example.org (example.org [192.0.2.64])
|
71
|
+
by mx34.mail.example.jp (Postfix) with ESMTP id E1111111111
|
72
|
+
for <kijitora-nyaaaaaan@example.co.jp>; Thu, 9 May 2009 23:34:45 +0900 (JST)
|
73
|
+
Received: from localhost.localdomain (localhost.localdomain [127.0.0.1])
|
74
|
+
by example.org (Postfix) with ESMTP id 00000000000
|
75
|
+
for <kijitora-nyaaaaaan@example.co.jp>; Sat, 3 May 2009 23:34:45 +0900 (JST)
|
76
|
+
MIME-Version: 1.0
|
77
|
+
Content-Type: text/plain; charset="us-ascii"
|
78
|
+
Content-Transfer-Encoding: 7bit
|
79
|
+
From: shironeko@example.org
|
80
|
+
To: kijitora-nyaaaaaan@example.co.jp
|
81
|
+
Subject: Nyaaaan
|
82
|
+
Reply-To: shironeko@example.org
|
83
|
+
Message-ID: <00000000000000000000000000000000000000000@example.org>
|
84
|
+
Date: Sat, 03 May 2009 23:34:45 -0600
|
85
|
+
Precedence: bulk
|
86
|
+
X-BeenThere: nyaaaanz@example.org
|
87
|
+
X-Mailman-Version: 2.1.5
|
88
|
+
List-Id: neko.example.org
|
89
|
+
Sender: shironeko@example.org
|
90
|
+
Errors-To: shironeko@example.org
|
91
|
+
|
92
|
+
Nyaaaaan
|
93
|
+
------=_bb_0000_fffff_00--
|