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,81 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@sb7.songbird.com>
|
2
|
+
Received: from mail47.messagelabs.com (mail47.messagelabs.com [216.82.240.163])
|
3
|
+
by sb7.songbird.com (8.12.11.20060308/8.12.11) with SMTP id
|
4
|
+
k488M87l021192
|
5
|
+
for <gpc-talk-bounces@grizz.org>; Mon, 8 May 2006 01:22:08 -0700
|
6
|
+
Message-Id: <200605080822.k488M87l021192@sb7.songbird.com>
|
7
|
+
X-VirusChecked: Checked
|
8
|
+
X-StarScan-Version: 5.5.9.1; banners=.,-,-
|
9
|
+
Received: (qmail 25062 invoked for bounce); 8 May 2006 08:21:20 -0000
|
10
|
+
Date: 8 May 2006 08:21:19 -0000
|
11
|
+
From: MAILER-DAEMON@messagelabs.com
|
12
|
+
To: gpc-talk-bounces@grizz.org
|
13
|
+
Subject: failure notice
|
14
|
+
X-SongbirdInformation: support@songbird.com for more information
|
15
|
+
X-Songbird: Clean
|
16
|
+
X-Songbird-From:
|
17
|
+
|
18
|
+
This is the mail delivery agent at messagelabs.com.
|
19
|
+
I was not able to deliver your message to the following addresses.
|
20
|
+
|
21
|
+
<merotiia@tennisnsw.com.au>:
|
22
|
+
59.154.33.7 does not like recipient.
|
23
|
+
Remote host said: 550 merotiia@tennisnsw.com.au... No such user
|
24
|
+
|
25
|
+
|
26
|
+
--- Below this line is a copy of the message.
|
27
|
+
|
28
|
+
Return-Path: <gpc-talk-bounces@grizz.org>
|
29
|
+
X-VirusChecked: Checked
|
30
|
+
X-Env-Sender: gpc-talk-bounces@grizz.org
|
31
|
+
X-Msg-Ref: server-11.tower-47.messagelabs.com!1147076463!26398187!1
|
32
|
+
X-StarScan-Version: 5.5.9.1; banners=-,-,-
|
33
|
+
X-Originating-IP: [208.184.79.137]
|
34
|
+
X-SpamReason: No, hits=0.1 required=7.0 tests=NO_REAL_NAME
|
35
|
+
Received: (qmail 24873 invoked from network); 8 May 2006 08:21:04 -0000
|
36
|
+
Received: from sb7.songbird.com (HELO sb7.songbird.com) (208.184.79.137)
|
37
|
+
by server-11.tower-47.messagelabs.com with AES256-SHA encrypted SMTP; 8 May 2006 08:21:04 -0000
|
38
|
+
Received: from sb7.songbird.com (sb7.songbird.com [127.0.0.1])
|
39
|
+
by sb7.songbird.com (8.12.11.20060308/8.12.11) with ESMTP id k488LXaj021129
|
40
|
+
for <merotiia@tennisnsw.com.au>; Mon, 8 May 2006 01:21:33 -0700
|
41
|
+
MIME-Version: 1.0
|
42
|
+
Content-Type: text/plain; charset="us-ascii"
|
43
|
+
Content-Transfer-Encoding: 7bit
|
44
|
+
Subject: Your message to GPC-talk awaits moderator approval
|
45
|
+
From: gpc-talk-bounces@grizz.org
|
46
|
+
To: merotiia@tennisnsw.com.au
|
47
|
+
Message-ID: <mailman.12143.1147076492.1568.gpc-talk@grizz.org>
|
48
|
+
Date: Mon, 08 May 2006 01:21:32 -0700
|
49
|
+
Precedence: bulk
|
50
|
+
X-BeenThere: gpc-talk@grizz.org
|
51
|
+
X-Mailman-Version: 2.1.5
|
52
|
+
List-Id: Grizzly Peak Cyclists general discussion list <gpc-talk.grizz.org>
|
53
|
+
X-List-Administrivia: yes
|
54
|
+
Sender: gpc-talk-bounces@grizz.org
|
55
|
+
Errors-To: gpc-talk-bounces@grizz.org
|
56
|
+
X-SongbirdInformation: support@songbird.com for more information
|
57
|
+
X-Songbird: Clean
|
58
|
+
X-Songbird-From: gpc-talk-bounces@grizz.org
|
59
|
+
|
60
|
+
Your mail to 'GPC-talk' with the subject
|
61
|
+
|
62
|
+
Re: the AzMBtEN
|
63
|
+
|
64
|
+
Is being held until the list moderator can review it for approval.
|
65
|
+
|
66
|
+
The reason it is being held:
|
67
|
+
|
68
|
+
Post by non-member to a members-only list
|
69
|
+
|
70
|
+
Either the message will get posted to the list, or you will receive
|
71
|
+
notification of the moderator's decision. If you would like to cancel
|
72
|
+
this posting, please visit the following URL:
|
73
|
+
|
74
|
+
http://www.grizz.org/mailman/confirm/gpc-talk/83c05aa9c7a3037140e278e470d840926cd861cd
|
75
|
+
|
76
|
+
|
77
|
+
______________________________________________________________________
|
78
|
+
This email has been scanned by the MessageLabs Email Security System.
|
79
|
+
For more information please visit http://www.messagelabs.com/email
|
80
|
+
______________________________________________________________________
|
81
|
+
|
@@ -0,0 +1,121 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@sb7.songbird.com>
|
2
|
+
Received: from outbound20-2.nyc.untd.com (outbound20-2.nyc.untd.com
|
3
|
+
[64.136.20.160])
|
4
|
+
by sb7.songbird.com (8.12.11.20060308/8.12.11) with SMTP id
|
5
|
+
k5BBPhZR024133
|
6
|
+
for <wed_ride-bounces@grizz.org>; Sun, 11 Jun 2006 04:25:43 -0700
|
7
|
+
Message-Id: <200606111125.k5BBPhZR024133@sb7.songbird.com>
|
8
|
+
Received: (qmail 29409 invoked for bounce); 11 Jun 2006 11:25:12 -0000
|
9
|
+
Date: 11 Jun 2006 11:25:12 -0000
|
10
|
+
From: MAILER-DAEMON@mx06.nyc.untd.com
|
11
|
+
To: wed_ride-bounces@grizz.org
|
12
|
+
Subject: Mail Not Delivered
|
13
|
+
X-SongbirdInformation: support@songbird.com for more information
|
14
|
+
X-Songbird: Clean
|
15
|
+
X-Songbird-From:
|
16
|
+
|
17
|
+
Unfortunately, your mail was not delivered to the following address:
|
18
|
+
|
19
|
+
<ivokggrrdvc@caixaforte.freeservers.com>:
|
20
|
+
64.136.25.171 does not like recipient.
|
21
|
+
Remote host said: 550 <ivokggrrdvc@caixaforte.freeservers.com>: Recipient address rejected: User unknown in virtual alias table
|
22
|
+
Giving up on 64.136.25.171.
|
23
|
+
|
24
|
+
--- Below this line is a copy of the message.
|
25
|
+
|
26
|
+
Return-Path: <wed_ride-bounces@grizz.org>
|
27
|
+
Received: from sb7.songbird.com (sb7.songbird.com [208.184.79.137])
|
28
|
+
by mx06.nyc.untd.com with SMTP id AABCJZ9MRANG84X2
|
29
|
+
for <ivokggrrdvc@caixaforte.freeservers.com> (sender <wed_ride-bounces@grizz.org>);
|
30
|
+
Sun, 11 Jun 2006 04:24:31 -0700 (PDT)
|
31
|
+
Received: from sb7.songbird.com (sb7.songbird.com [127.0.0.1])
|
32
|
+
by sb7.songbird.com (8.12.11.20060308/8.12.11) with ESMTP id k5BBOnMa023991
|
33
|
+
for <ivokggrrdvc@caixaforte.freeservers.com>; Sun, 11 Jun 2006 04:24:49 -0700
|
34
|
+
Subject: jack
|
35
|
+
From: wed_ride-owner@grizz.org
|
36
|
+
To: ivokggrrdvc@caixaforte.freeservers.com
|
37
|
+
MIME-Version: 1.0
|
38
|
+
Content-Type: multipart/mixed; boundary="===============1594973120=="
|
39
|
+
Message-ID: <mailman.15106.1150025087.1568.wed_ride@grizz.org>
|
40
|
+
Date: Sun, 11 Jun 2006 04:24:47 -0700
|
41
|
+
Precedence: bulk
|
42
|
+
X-BeenThere: wed_ride@grizz.org
|
43
|
+
X-Mailman-Version: 2.1.5
|
44
|
+
List-Id: GPC Wednesday Ride List <wed_ride.grizz.org>
|
45
|
+
X-List-Administrivia: yes
|
46
|
+
Sender: wed_ride-bounces@grizz.org
|
47
|
+
Errors-To: wed_ride-bounces@grizz.org
|
48
|
+
X-SongbirdInformation: support@songbird.com for more information
|
49
|
+
X-Songbird: Clean
|
50
|
+
X-Songbird-From: wed_ride-bounces@grizz.org
|
51
|
+
|
52
|
+
--===============1594973120==
|
53
|
+
Content-Type: text/plain; charset="us-ascii"
|
54
|
+
MIME-Version: 1.0
|
55
|
+
Content-Transfer-Encoding: 7bit
|
56
|
+
|
57
|
+
You are not allowed to post to this mailing list, and your message has
|
58
|
+
been automatically rejected. If you think that your messages are
|
59
|
+
being rejected in error, contact the mailing list owner at
|
60
|
+
wed_ride-owner@grizz.org.
|
61
|
+
|
62
|
+
|
63
|
+
--===============1594973120==
|
64
|
+
Content-Type: message/rfc822
|
65
|
+
MIME-Version: 1.0
|
66
|
+
|
67
|
+
Return-Path: <ivokggrrdvc@caixaforte.freeservers.com>
|
68
|
+
Received: from user-1087suf.cable.mindspring.com
|
69
|
+
(user-1087suf.cable.mindspring.com [64.131.243.207])
|
70
|
+
by sb7.songbird.com (8.12.11.20060308/8.12.11) with SMTP id
|
71
|
+
k5BBOcL2022522
|
72
|
+
for <wed_ride@grizz.org>; Sun, 11 Jun 2006 04:24:38 -0700
|
73
|
+
Received: (qmail 28668 invoked from network); Sun, 11 Jun 2006 07:24:02 -0400
|
74
|
+
Received: from unknown (HELO nrss.yefr) (64.131.147.172)
|
75
|
+
by user-1087suf.cable.mindspring.com with SMTP;
|
76
|
+
Sun, 11 Jun 2006 07:24:02 -0400
|
77
|
+
Message-ID: <001101c68d49$8a6547f0$ac938340@nrss.yefr>
|
78
|
+
From: "Nolly Mitchell" <ivokggrrdvc@caixaforte.freeservers.com>
|
79
|
+
To: <wed_ride@grizz.org>
|
80
|
+
Subject: jack
|
81
|
+
Date: Sun, 11 Jun 2006 07:22:30 -0400
|
82
|
+
MIME-Version: 1.0
|
83
|
+
Content-Type: multipart/related; type="multipart/alternative";
|
84
|
+
boundary="----=_NextPart_000_000D_01C68D28.0353A7BC"
|
85
|
+
X-Priority: 3
|
86
|
+
X-MSMail-Priority: Normal
|
87
|
+
X-Mailer: Microsoft Outlook Express 6.00.2900.2180
|
88
|
+
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
|
89
|
+
X-SongbirdInformation: support@songbird.com for more information
|
90
|
+
X-Songbird: Clean
|
91
|
+
X-Songbird-From: ivokggrrdvc@caixaforte.freeservers.com
|
92
|
+
|
93
|
+
This is a multi-part message in MIME format.
|
94
|
+
|
95
|
+
------=_NextPart_000_000D_01C68D28.0353A7BC
|
96
|
+
Content-Type: multipart/alternative;
|
97
|
+
boundary="----=_NextPart_001_000E_01C68D28.0353A7C9"
|
98
|
+
|
99
|
+
|
100
|
+
------=_NextPart_001_000E_01C68D28.0353A7C9
|
101
|
+
Content-Type: text/plain;
|
102
|
+
charset="windows-1252"
|
103
|
+
Content-Transfer-Encoding: quoted-printable
|
104
|
+
|
105
|
+
|
106
|
+
Various attachments removed for Mailman example - MAS
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
------=_NextPart_001_000E_01C68D28.0353A7C9--
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
------=_NextPart_000_000D_01C68D28.0353A7BC--
|
118
|
+
|
119
|
+
|
120
|
+
--===============1594973120==--
|
121
|
+
|
@@ -0,0 +1,32 @@
|
|
1
|
+
X-MimeOLE: Produced By Microsoft Exchange V6.5
|
2
|
+
Content-class: urn:content-classes:message
|
3
|
+
MIME-Version: 1.0
|
4
|
+
Content-Type: text/plain;
|
5
|
+
charset="iso-8859-1"
|
6
|
+
Content-Transfer-Encoding: quoted-printable
|
7
|
+
Subject: failure notice
|
8
|
+
Date: Fri, 13 Feb 2009 09:22:22 -0800
|
9
|
+
Message-ID: <200902131732.n1DHWlOA007588@mail.turners.com>
|
10
|
+
X-MS-Has-Attach:
|
11
|
+
X-MS-TNEF-Correlator:
|
12
|
+
From: <MAILER-DAEMON@mta6-1.us4.outblaze.com>
|
13
|
+
To: <fishads-bounces@lists.xxx.com>
|
14
|
+
|
15
|
+
Hi. The MTA program at mta6-1.us4.outblaze.com was unable to deliver =
|
16
|
+
your message to the following addresses.
|
17
|
+
This is a permanent error.
|
18
|
+
|
19
|
+
<ntl@xxx.com>:
|
20
|
+
Error 01373: User's Disk Quota Exceeded.
|
21
|
+
Sorry, your intended recipient has too much mail stored
|
22
|
+
in his mailbox.
|
23
|
+
Your message totalled 23 Kbytes.
|
24
|
+
However a small (< 1Kb) message will be delivered should
|
25
|
+
you wish to inform your recipient you tried to email.
|
26
|
+
|
27
|
+
|
28
|
+
--- Below this line is a copy of the message.
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
[message content removed - MS]
|
@@ -0,0 +1,153 @@
|
|
1
|
+
From VM Tue Feb 20 10:32:44 2001
|
2
|
+
Return-Path: <jpython-interest-admin@python.org>
|
3
|
+
Delivered-To: zzzzz@wwww.org
|
4
|
+
Received: from digicool.com (host15.digitalcreations.d.subnet.rcn.com [208.59.6.15])
|
5
|
+
by mail.wwww.org (Postfix) with ESMTP id 06EA8D37AC
|
6
|
+
for <yyyyy@wwww.org>; Sun, 18 Feb 2001 03:26:37 -0500 (EST)
|
7
|
+
Received: from <jpython-interest-admin@python.org>
|
8
|
+
by digicool.com (CommuniGate Pro RULES 3.3.2)
|
9
|
+
with RULES id 1483250; Sun, 18 Feb 2001 03:27:53 -0500
|
10
|
+
Received: from ns2.digicool.com ([216.164.72.2] verified)
|
11
|
+
by digicool.com (CommuniGate Pro SMTP 3.3.2)
|
12
|
+
with ESMTP id 1483249 for yyyyy@mail.digicool.com; Sun, 18 Feb 2001 03:27:53 -0500
|
13
|
+
Received: from mail.python.org (mail.python.org [63.102.49.29])
|
14
|
+
by ns2.digicool.com (8.9.3/8.9.3) with ESMTP id DAA13272
|
15
|
+
for <yyyyy@digicool.com>; Sun, 18 Feb 2001 03:25:56 -0500
|
16
|
+
Received: from localhost.localdomain ([127.0.0.1] helo=mail.python.org)
|
17
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
18
|
+
id 14UPAP-0001ei-00
|
19
|
+
for yyyyy@digicool.com; Sun, 18 Feb 2001 03:26:01 -0500
|
20
|
+
Received: from [63.118.43.131] (helo=receive.turbosport.com)
|
21
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
22
|
+
id 14UP9j-0001c7-00
|
23
|
+
for jpython-interest-admin@python.org; Sun, 18 Feb 2001 03:25:19 -0500
|
24
|
+
Received: from receive.turbosport.com [63.118.43.131] by receive.turbosport.com [63.118.43.131]
|
25
|
+
with RAW (MDaemon.v3.5.2.R)
|
26
|
+
for <jpython-interest-admin@python.org>; Sun, 18 Feb 2001 02:26:12 -0600
|
27
|
+
Message-ID: <MDAEMON2560256200102180226.AA2612019@receive.turbosport.com>
|
28
|
+
Mime-Version: 1.0
|
29
|
+
Content-Type: multipart/mixed; boundary="0218-0226-12-PART-BREAK"
|
30
|
+
Precedence: bulk
|
31
|
+
List-Help: <mailto:jpython-interest-request@python.org?subject=help>
|
32
|
+
List-Post: <mailto:jpython-interest@python.org>
|
33
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/jpython-interest>,
|
34
|
+
<mailto:jpython-interest-request@python.org?subject=subscribe>
|
35
|
+
List-Id: Python for the Java<SUP><FONT SIZE=-2>TM</FONT></SUP> Platform <jpython-interest.python.org>
|
36
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/jpython-interest>,
|
37
|
+
<mailto:jpython-interest-request@python.org?subject=unsubscribe>
|
38
|
+
List-Archive: <http://mail.python.org/pipermail/jpython-interest/>
|
39
|
+
From: MDaemon@receive.turbosport.com
|
40
|
+
Sender: jpython-interest-owner@python.org
|
41
|
+
To: jpython-interest-admin@python.org
|
42
|
+
Subject: Permanent Delivery Failure
|
43
|
+
Date: Sun, 18 Feb 2001 02:26:12 -0600
|
44
|
+
X-Autogenerated: Mirror
|
45
|
+
X-Mirrored-by: <jpython-interest-admin@python.org>
|
46
|
+
X-MDSend-Notifications-To: [trash]
|
47
|
+
X-MDaemon-Deliver-To: jpython-interest-admin@python.org
|
48
|
+
X-Actual-From: MDaemon@receive.turbosport.com
|
49
|
+
X-BeenThere: jpython-interest@python.org
|
50
|
+
X-Mailman-Version: 2.0.1 (101270)
|
51
|
+
Reply-To: BadMsgQ@receive.turbosport.com
|
52
|
+
|
53
|
+
The following data may contain sections which represent BASE64 encoded
|
54
|
+
file attachments. These sections will be unreadable without MIME aware
|
55
|
+
tools. Seek your system administrator if you need help extracting any
|
56
|
+
files which may be embedded within this message.
|
57
|
+
|
58
|
+
--0218-0226-12-PART-BREAK
|
59
|
+
Content-Type: text/plain; charset=US-ASCII
|
60
|
+
Content-Transfer-Encoding: 7bit
|
61
|
+
|
62
|
+
The attached message had PERMANENT fatal delivery errors!
|
63
|
+
|
64
|
+
After one or more unsuccessful delivery attempts the attached message has
|
65
|
+
been removed from the mail queue on this server. The number and frequency
|
66
|
+
of delivery attempts are determined by local configuration parameters.
|
67
|
+
|
68
|
+
YOUR MESSAGE WAS NOT DELIVERED!
|
69
|
+
|
70
|
+
The following addresses did NOT receive a copy of your message:
|
71
|
+
|
72
|
+
> bbbsss@turbosport.com
|
73
|
+
|
74
|
+
--- Session Transcript ---
|
75
|
+
Attempting SMTP connection to [63.118.43.130 : 25]
|
76
|
+
Waiting for socket connection...
|
77
|
+
Socket connection established
|
78
|
+
Waiting for protocol initiation...
|
79
|
+
220 turbosport.com ESMTP MDaemon 3.5.2 ready
|
80
|
+
EHLO receive.turbosport.com
|
81
|
+
250-turbosport.com Hello receive.turbosport.com, ESMTP hello!
|
82
|
+
250-VRFY
|
83
|
+
250-EXPN
|
84
|
+
250-ETRN
|
85
|
+
250-AUTH LOGIN CRAM-MD5
|
86
|
+
250-8BITMIME
|
87
|
+
250 SIZE 40000000
|
88
|
+
MAIL From:<jpython-interest-admin@python.org> SIZE=1861
|
89
|
+
250 <jpython-interest-admin@python.org>, Sender ok
|
90
|
+
RCPT To:<bbbsss@turbosport.com>
|
91
|
+
552 Message for <bbbsss@turbosport.com> would exceed mailbox quota
|
92
|
+
QUIT
|
93
|
+
--- End Transcript ---
|
94
|
+
|
95
|
+
: Message contains [1] file attachments
|
96
|
+
|
97
|
+
--0218-0226-12-PART-BREAK
|
98
|
+
Content-Type: message/rfc822; charset=US-ASCII; name="md50002271709.md"
|
99
|
+
Content-Transfer-Encoding: 7bit
|
100
|
+
Content-ID: <MDAEMON2560256200102180226.AA2612019@receive.turbosport.com>
|
101
|
+
Content-Description:
|
102
|
+
|
103
|
+
Return-path: <jpython-interest-admin@python.org>
|
104
|
+
Received: from mta540.mail.yahoo.com [216.136.131.22] by receive.turbosport.com [63.118.43.131]
|
105
|
+
with SMTP (MDaemon.v3.5.2.R)
|
106
|
+
for <bbbsss@turbosport.com>; Sun, 18 Feb 2001 02:25:20 -0600
|
107
|
+
Message-ID: <20010218082300.42071.qmail@mta540.mail.yahoo.com>
|
108
|
+
Received: from mta540.mail.yahoo.com for bbbsss@turbosport.com; Feb 18 00:23:00 2001 -0800
|
109
|
+
Received: from smtp015.mail.yahoo.com (216.136.173.59)
|
110
|
+
X-Yahoo-Forwarded: from aaaaa_20@yahoo.com to bbbsss@turbosport.com
|
111
|
+
by mta540.mail.yahoo.com with SMTP; 18 Feb 2001 00:23:00 -0800 (PST)
|
112
|
+
Date: 18 Feb 2001 08:22:57 -0000
|
113
|
+
From: MAILER-DAEMON@yahoo.com
|
114
|
+
To: aaaaa@yahoo.com
|
115
|
+
Subject: failure delivery
|
116
|
+
X-MDRcpt-To: bbbsss@turbosport.com
|
117
|
+
X-MDRemoteIP: 216.136.131.22
|
118
|
+
X-Return-Path: jpython-interest-admin@python.org
|
119
|
+
X-MDaemon-Deliver-To: bbbsss@turbosport.com
|
120
|
+
|
121
|
+
Message from yahoo.com.
|
122
|
+
Unable to deliver message to the following address(es).
|
123
|
+
|
124
|
+
<subscribe.motorcycles@listsociety.com>:
|
125
|
+
Sorry, I wasn't able to establish an SMTP connection. (#4.4.1)
|
126
|
+
I'm not going to try again; this message has been in the queue too long.
|
127
|
+
|
128
|
+
--- Original message follows.
|
129
|
+
|
130
|
+
Return-Path: <aaaaa@yahoo.com>
|
131
|
+
Received: from c58148.upc-c.chello.nl (HELO localhost) (212.187.58.148)
|
132
|
+
by smtp.mail.vip.sc5.yahoo.com with SMTP; 11 Feb 2001 01:15:27 -0000
|
133
|
+
X-Apparently-From: <aaaaa?20@yahoo.com>
|
134
|
+
X-Sender: aaaaa@yahoo.com
|
135
|
+
From: Albert Ttttt <aaaaa@yahoo.com>
|
136
|
+
To: subscribe.motorcycles@listsociety.com
|
137
|
+
Date: Sun, 11 Feb 2001 02:14:40 +0100
|
138
|
+
Subject: Subscribe
|
139
|
+
Reply-To: aaaaa@yahoo.com
|
140
|
+
MIME-Version: 1.0
|
141
|
+
Content-Type: text/plain; charset=iso-8859-1
|
142
|
+
Content-Transfer-Encoding: 7bit
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
_________________________________________________________
|
147
|
+
Do You Yahoo!?
|
148
|
+
Get your free @yahoo.com address at http://mail.yahoo.com
|
149
|
+
|
150
|
+
--0218-0226-12-PART-BREAK--
|
151
|
+
|
152
|
+
|
153
|
+
|
@@ -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: "=?iso-2022-jp?B?TWFpbCBEZWxpdmVyeSBTdWJzeXN0ZW0=?=" <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: =?iso-2022-jp?B?UmV0dXJuZWQgbWFpbDogVXNlciB1bmtub3du?=
|
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: =?ISO-2022-JP?B?GyRCJSIlSSVsJTkzTkcnIWMbKEJGSUtUGyRCIWQbKEI=?= <shironeko@cat.example.co.jp>
|
145
|
+
To: kijitora@neko.example.org
|
146
|
+
Subject: =?ISO-2022-JP?B?GyRCIVobKEJURVNUGyRCIVslYSE8JWslIiVJJWwlOSROM05HJxsoQg==?=
|
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
|
+
|