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,146 @@
|
|
1
|
+
From VM Sat Oct 14 00:29:43 2000
|
2
|
+
Return-Path: <mailman-users-admin@python.org>
|
3
|
+
Delivered-To: bxxxxx@mail.wooz.org
|
4
|
+
Received: from ns1.beopen.com (unknown [208.185.174.104])
|
5
|
+
by mail.wooz.org (Postfix) with ESMTP id DF2B1D38CD
|
6
|
+
for <yyyyy@wooz.org>; Sat, 14 Oct 2000 00:16:04 -0400 (EDT)
|
7
|
+
Received: from dinsdale.python.org (dinsdale.cnri.reston.va.us [132.151.1.21])
|
8
|
+
by ns1.beopen.com (8.9.3/8.9.3) with ESMTP id VAA04124
|
9
|
+
for <bxxxxx@beopen.com>; Fri, 13 Oct 2000 21:17:08 -0700 (PDT)
|
10
|
+
(envelope-from mailman-users-admin@python.org)
|
11
|
+
Received: from dinsdale.python.org (localhost [127.0.0.1])
|
12
|
+
by dinsdale.python.org (Postfix) with ESMTP id 46F711D08C
|
13
|
+
for <bxxxxx@beopen.com>; Sat, 14 Oct 2000 00:15:15 -0400 (EDT)
|
14
|
+
Delivered-To: mailman-users-admin@python.org
|
15
|
+
Received: from banzai.nfg.nl (banzai.nfg.nl [194.109.206.156])
|
16
|
+
by dinsdale.python.org (Postfix) with ESMTP id 201661D08C
|
17
|
+
for <mailman-users-admin@python.org>; Sat, 14 Oct 2000 00:14:45 -0400 (EDT)
|
18
|
+
Received: from localhost (localhost)
|
19
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with internal id GAB17388;
|
20
|
+
Sat, 14 Oct 2000 06:14:45 +0200
|
21
|
+
Message-Id: <200010140414.GAB17388@banzai.nfg.nl>
|
22
|
+
Auto-Submitted: auto-generated (failure)
|
23
|
+
Errors-To: mailman-users-owner@python.org
|
24
|
+
Precedence: bulk
|
25
|
+
List-Help: <mailto:mailman-users-request@python.org?subject=help>
|
26
|
+
List-Post: <mailto:mailman-users@python.org>
|
27
|
+
List-Subscribe: <http://www.python.org/mailman/listinfo/mailman-users>,
|
28
|
+
<mailto:mailman-users-request@python.org?subject=subscribe>
|
29
|
+
List-Id: Mailman mailing list management users <mailman-users.python.org>
|
30
|
+
List-Unsubscribe: <http://www.python.org/mailman/listinfo/mailman-users>,
|
31
|
+
<mailto:mailman-users-request@python.org?subject=unsubscribe>
|
32
|
+
List-Archive: <http://www.python.org/pipermail/mailman-users/>
|
33
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@banzai.nfg.nl>
|
34
|
+
Sender: mailman-users-owner@python.org
|
35
|
+
To: mailman-users-admin@python.org
|
36
|
+
To: postmaster@banzai.nfg.nl
|
37
|
+
Subject: Returned mail: Too many hops 26 (25 max): from mailman-users-admin@python.org via localhost, to zzzzz@nfg.nl
|
38
|
+
Date: Sat, 14 Oct 2000 06:14:45 +0200
|
39
|
+
X-BeenThere: mailman-users@python.org
|
40
|
+
X-Mailman-Version: 2.0beta6
|
41
|
+
|
42
|
+
The original message was received at Sat, 14 Oct 2000 06:14:45 +0200
|
43
|
+
from uucp@localhost
|
44
|
+
|
45
|
+
----- The following addresses had permanent fatal errors -----
|
46
|
+
zzzzz@shaft.coal.nl
|
47
|
+
(expanded from: zzzzz@nfg.nl)
|
48
|
+
|
49
|
+
----- Transcript of session follows -----
|
50
|
+
554 Too many hops 26 (25 max): from mailman-users-admin@python.org via localhost, to zzzzz@nfg.nl
|
51
|
+
|
52
|
+
----- Message header follows -----
|
53
|
+
|
54
|
+
Return-Path: <mailman-users-admin@python.org>
|
55
|
+
Received: (from uucp@localhost)
|
56
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id GAA17388
|
57
|
+
for zzzzz@nfg.nl; Sat, 14 Oct 2000 06:14:45 +0200
|
58
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
59
|
+
id A9BAE1B30B; Sat, 14 Oct 2000 06:06:08 +0200 (CEST)
|
60
|
+
Received: (from uucp@localhost)
|
61
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id XAA25085
|
62
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 23:55:54 +0200
|
63
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
64
|
+
id 62E251B307; Fri, 13 Oct 2000 23:46:43 +0200 (CEST)
|
65
|
+
Received: (from uucp@localhost)
|
66
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id XAA20156
|
67
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 23:35:01 +0200
|
68
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
69
|
+
id 247881B308; Fri, 13 Oct 2000 23:26:09 +0200 (CEST)
|
70
|
+
Received: (from uucp@localhost)
|
71
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id XAA15152
|
72
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 23:15:47 +0200
|
73
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
74
|
+
id E91F81B308; Fri, 13 Oct 2000 23:06:29 +0200 (CEST)
|
75
|
+
Received: (from uucp@localhost)
|
76
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id WAA09896
|
77
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 22:54:42 +0200
|
78
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
79
|
+
id 51CA11B308; Fri, 13 Oct 2000 22:45:24 +0200 (CEST)
|
80
|
+
Received: (from uucp@localhost)
|
81
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id WAA04651
|
82
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 22:34:41 +0200
|
83
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
84
|
+
id 6C48F1B308; Fri, 13 Oct 2000 22:25:19 +0200 (CEST)
|
85
|
+
Received: (from uucp@localhost)
|
86
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id WAA31892
|
87
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 22:14:14 +0200
|
88
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
89
|
+
id 8ABF91B308; Fri, 13 Oct 2000 22:04:33 +0200 (CEST)
|
90
|
+
Received: (from uucp@localhost)
|
91
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id VAA26727
|
92
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 21:54:10 +0200
|
93
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
94
|
+
id A44BC1B308; Fri, 13 Oct 2000 21:44:57 +0200 (CEST)
|
95
|
+
Received: (from uucp@localhost)
|
96
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id VAA21600
|
97
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 21:33:40 +0200
|
98
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
99
|
+
id 56B311B308; Fri, 13 Oct 2000 21:24:00 +0200 (CEST)
|
100
|
+
Received: (from uucp@localhost)
|
101
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id VAA16279
|
102
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 21:13:21 +0200
|
103
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
104
|
+
id 409701B308; Fri, 13 Oct 2000 21:04:32 +0200 (CEST)
|
105
|
+
Received: (from uucp@localhost)
|
106
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with UUCP id UAA11084
|
107
|
+
for zzzzz@nfg.nl; Fri, 13 Oct 2000 20:53:53 +0200
|
108
|
+
Received: by shaft.coal.nl (Postfix, from userid 10)
|
109
|
+
id 05A9E1B307; Fri, 13 Oct 2000 20:44:14 +0200 (CEST)
|
110
|
+
Received: from dinsdale.python.org (dinsdale.cnri.reston.va.us [132.151.1.21])
|
111
|
+
by banzai.nfg.nl (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id UAA08474
|
112
|
+
for <zzzzz@nfg.nl>; Fri, 13 Oct 2000 20:41:13 +0200
|
113
|
+
X-Authentication-Warning: banzai.nfg.nl: Host dinsdale.cnri.reston.va.us [132.151.1.21] claimed to be dinsdale.python.org
|
114
|
+
Received: from dinsdale.python.org (localhost [127.0.0.1])
|
115
|
+
by dinsdale.python.org (Postfix) with ESMTP
|
116
|
+
id A1F631CFCC; Fri, 13 Oct 2000 14:38:00 -0400 (EDT)
|
117
|
+
Delivered-To: mailman-users@python.org
|
118
|
+
Received: from raptor.ebuilt.net (unknown [216.237.34.38])
|
119
|
+
by dinsdale.python.org (Postfix) with ESMTP id 7D3B21CDB9
|
120
|
+
for <mailman-users@python.org>; Fri, 13 Oct 2000 14:35:02 -0400 (EDT)
|
121
|
+
Received: by raptor.ebuilt.net with Internet Mail Service (5.5.2650.21)
|
122
|
+
id <4V699WRN>; Fri, 13 Oct 2000 11:35:00 -0700
|
123
|
+
Message-ID: <AA1E32BC8A58D411A2CB0050DACEDA43750916@raptor.ebuilt.net>
|
124
|
+
From: "Young, Roger" <RYoung@eBuilt.com>
|
125
|
+
To: mailman-users@python.org
|
126
|
+
X-Mailer: Internet Mail Service (5.5.2650.21)
|
127
|
+
Subject: [Mailman-Users] auto responder
|
128
|
+
Sender: mailman-users-admin@python.org
|
129
|
+
Errors-To: mailman-users-admin@python.org
|
130
|
+
X-BeenThere: mailman-users@python.org
|
131
|
+
X-Mailman-Version: 2.0beta6
|
132
|
+
Precedence: bulk
|
133
|
+
List-Help: <mailto:mailman-users-request@python.org?subject=help>
|
134
|
+
List-Post: <mailto:mailman-users@python.org>
|
135
|
+
List-Subscribe: <http://www.python.org/mailman/listinfo/mailman-users>,
|
136
|
+
<mailto:mailman-users-request@python.org?subject=subscribe>
|
137
|
+
List-Id: Mailman mailing list management users <mailman-users.python.org>
|
138
|
+
List-Unsubscribe: <http://www.python.org/mailman/listinfo/mailman-users>,
|
139
|
+
<mailto:mailman-users-request@python.org?subject=unsubscribe>
|
140
|
+
List-Archive: <http://www.python.org/pipermail/mailman-users/>
|
141
|
+
Date: Fri, 13 Oct 2000 11:34:51 -0700
|
142
|
+
|
143
|
+
----- Message body suppressed -----
|
144
|
+
|
145
|
+
|
146
|
+
|
@@ -0,0 +1,105 @@
|
|
1
|
+
From VM Sat Aug 4 01:17:43 2001
|
2
|
+
X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil]
|
3
|
+
[nil "Friday" "3" "August" "2001" "23:59:56" "-0500" "MAILER-DAEMON@airmail.net" "MAILER-DAEMON@airmail.net" nil "51" "mail failed, returning to sender" "^From:" nil nil "8" nil nil nil nil nil]
|
4
|
+
nil)
|
5
|
+
Return-Path: <mailman-users-admin@python.org>
|
6
|
+
Delivered-To: barry@wooz.org
|
7
|
+
Received: from digicool.com (unknown [63.100.190.15])
|
8
|
+
by mail.wooz.org (Postfix) with ESMTP id D0258D3738
|
9
|
+
for <barry@wooz.org>; Sat, 4 Aug 2001 01:00:57 -0400 (EDT)
|
10
|
+
Received: from <mailman-users-admin@python.org>
|
11
|
+
by digicool.com (CommuniGate Pro RULES 3.4)
|
12
|
+
with RULES id 2491440; Sat, 04 Aug 2001 01:01:04 -0400
|
13
|
+
Received: from smtp.zope.com ([63.100.190.10] verified)
|
14
|
+
by digicool.com (CommuniGate Pro SMTP 3.4)
|
15
|
+
with ESMTP id 2491439 for barry@mail.zope.com; Sat, 04 Aug 2001 01:01:04 -0400
|
16
|
+
Received: from mail.python.org (mail.python.org [63.102.49.29])
|
17
|
+
by smtp.zope.com (8.11.2/8.11.2) with ESMTP id f74511X29279
|
18
|
+
for <barry@zope.com>; Sat, 4 Aug 2001 01:01:01 -0400
|
19
|
+
Received: from localhost.localdomain ([127.0.0.1] helo=mail.python.org)
|
20
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
21
|
+
id 15StYa-0005er-00; Sat, 04 Aug 2001 01:01:00 -0400
|
22
|
+
Received: from [209.196.77.104] (helo=mx7.airmail.net)
|
23
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
24
|
+
id 15StYG-0005ec-00
|
25
|
+
for mailman-users-admin@python.org; Sat, 04 Aug 2001 01:00:40 -0400
|
26
|
+
Received: from mail3.iadfw.net ([209.196.123.3])
|
27
|
+
by mx7.airmail.net with smtp (Exim 3.16 #10)
|
28
|
+
id 15StY6-000E5t-00
|
29
|
+
for mailman-users-admin@python.org; Sat, 04 Aug 2001 00:00:30 -0500
|
30
|
+
Received: from mail3.iadfw.net by mail3.iadfw.net
|
31
|
+
(/\##/\ Smail3.1.30.16 #30.25) with bsmtp for <mailman-users-admin@python.org> sender: <MAILER-DAEMON>
|
32
|
+
id <my/15StXY-00385Ey@mail3.iadfw.net>; Fri, 3 Aug 2001 23:59:56 -0500 (CDT)
|
33
|
+
Message-Id: <my/15StXY-00385Ey@mail3.iadfw.net>
|
34
|
+
Reference: <mm/15StXR-003859m@mail3.iadfw.net>
|
35
|
+
Precedence: bulk
|
36
|
+
List-Help: <mailto:mailman-users-request@python.org?subject=help>
|
37
|
+
List-Post: <mailto:mailman-users@python.org>
|
38
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
39
|
+
<mailto:mailman-users-request@python.org?subject=subscribe>
|
40
|
+
List-Id: Mailman mailing list management users <mailman-users.python.org>
|
41
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
42
|
+
<mailto:mailman-users-request@python.org?subject=unsubscribe>
|
43
|
+
List-Archive: <http://mail.python.org/pipermail/mailman-users/>
|
44
|
+
From: <MAILER-DAEMON@airmail.net>
|
45
|
+
Sender: mailman-users-owner@python.org
|
46
|
+
To: mailman-users-admin@python.org
|
47
|
+
Subject: mail failed, returning to sender
|
48
|
+
Date: Fri, 3 Aug 2001 23:59:56 -0500 (CDT)
|
49
|
+
X-Autogenerated: Mirror
|
50
|
+
X-Mirrored-by: <mailman-users-admin@python.org>
|
51
|
+
X-BeenThere: mailman-users@python.org
|
52
|
+
X-Mailman-Version: 2.0.6 (101270)
|
53
|
+
|
54
|
+
|------------------------- Message log follows: -------------------------|
|
55
|
+
no valid recipients were found for this message
|
56
|
+
|------------------------- Failed addresses follow: ---------------------|
|
57
|
+
claird@starbase.neosoft.com ... unknown host
|
58
|
+
|------------------------- Message text follows: ------------------------|
|
59
|
+
Received: from mx1.airmail.net from [209.196.77.98] by mail3.iadfw.net
|
60
|
+
(/\##/\ Smail3.1.30.16 #30.25) with esmtp sender: <mailman-users-admin@python.org>
|
61
|
+
id <mm/15StXR-003859m@mail3.iadfw.net>; Fri, 3 Aug 2001 23:59:49 -0500 (CDT)
|
62
|
+
Received: from mail.python.org ([63.102.49.29])
|
63
|
+
by mx1.airmail.net with esmtp (Exim 3.16 #10)
|
64
|
+
id 15StVY-000P3g-00
|
65
|
+
for claird@neosoft.com; Fri, 03 Aug 2001 23:57:52 -0500
|
66
|
+
Received: from localhost.localdomain ([127.0.0.1] helo=mail.python.org)
|
67
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
68
|
+
id 15StSp-0005bx-00; Sat, 04 Aug 2001 00:55:03 -0400
|
69
|
+
Received: from [206.81.192.3] (helo=sttlpop3.sttl.uswest.net)
|
70
|
+
by mail.python.org with smtp (Exim 3.21 #1)
|
71
|
+
id 15StRq-0005bS-00
|
72
|
+
for mailman-users@python.org; Sat, 04 Aug 2001 00:54:02 -0400
|
73
|
+
Received: (qmail 14391 invoked by alias); 4 Aug 2001 04:53:49 -0000
|
74
|
+
Delivered-To: fixup-mailman-users@python.org@fixme
|
75
|
+
Received: (qmail 14361 invoked by uid 0); 4 Aug 2001 04:53:48 -0000
|
76
|
+
Received: from sttldslgw14poola186.sttl.uswest.net (HELO first-last.ocentrix.com) (63.229.16.186)
|
77
|
+
by sttlpop3.sttl.uswest.net with SMTP; 4 Aug 2001 04:53:48 -0000
|
78
|
+
Message-Id: <5.0.2.1.0.20010803211707.04770ce0@mail.ocentrix.com>
|
79
|
+
X-Sender: benwa@mail.ocentrix.com
|
80
|
+
X-Mailer: QUALCOMM Windows Eudora Version 5.0.2
|
81
|
+
To: runaway@rahul.net (Colin Andrews)
|
82
|
+
From: Ben Burnett <benwa@ocentrix.com>
|
83
|
+
Subject: Re: [Mailman-Users] Excessive headers and Eudora
|
84
|
+
Cc: mailman-users@python.org
|
85
|
+
In-Reply-To: <20010803190718.3389699D03@waltz.rahul.net>
|
86
|
+
Mime-Version: 1.0
|
87
|
+
Content-Type: text/plain; charset="us-ascii"; format=flowed
|
88
|
+
Sender: mailman-users-admin@python.org
|
89
|
+
Errors-To: mailman-users-admin@python.org
|
90
|
+
X-BeenThere: mailman-users@python.org
|
91
|
+
X-Mailman-Version: 2.0.6 (101270)
|
92
|
+
Precedence: bulk
|
93
|
+
List-Help: <mailto:mailman-users-request@python.org?subject=help>
|
94
|
+
List-Post: <mailto:mailman-users@python.org>
|
95
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
96
|
+
<mailto:mailman-users-request@python.org?subject=subscribe>
|
97
|
+
List-Id: Mailman mailing list management users <mailman-users.python.org>
|
98
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
99
|
+
<mailto:mailman-users-request@python.org?subject=unsubscribe>
|
100
|
+
List-Archive: <http://mail.python.org/pipermail/mailman-users/>
|
101
|
+
Date: Fri, 03 Aug 2001 21:54:02 -0700
|
102
|
+
|
103
|
+
[low-priority message, body not included]
|
104
|
+
|
105
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@prodigy.net>
|
2
|
+
Received: from vml-ext.prodigy.net (vml-ext.prodigy.net [207.115.63.49])
|
3
|
+
by sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k0P4Wndn007908
|
4
|
+
for <gpc-talk-bounces@grizz.org>; Tue, 24 Jan 2006 20:32:49 -0800
|
5
|
+
Received: (from root@localhost)
|
6
|
+
by vml-ext.prodigy.net (8.12.10 083104/8.12.10) id k0P4W6lc144726
|
7
|
+
for gpc-talk-bounces@grizz.org; Tue, 24 Jan 2006 23:32:06 -0500
|
8
|
+
From: MAILER-DAEMON@prodigy.net
|
9
|
+
Message-Id: <200601250432.k0P4W6lc144726@vml-ext.prodigy.net>
|
10
|
+
Date: Tue, 24 Jan 2006 23:32:03 -0500
|
11
|
+
Subject: Returned mail: RE: [GPC] pre-brevet jitters: Sam Brown or reflective
|
12
|
+
sash?
|
13
|
+
To: <gpc-talk-bounces@grizz.org>
|
14
|
+
X-SongbirdInformation: support@songbird.com for more information
|
15
|
+
X-Songbird: Found to be clean
|
16
|
+
X-Songbird-From: mailer-daemon@prodigy.net
|
17
|
+
|
18
|
+
User's mailbox is full: <william.xxxx@sbcglobal.net>
|
19
|
+
Unable to deliver mail.
|
20
|
+
|
21
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
Return-Path: <Dsicspiibs.spi-internet@socgen.com>
|
2
|
+
Received: from realmail20.socgen.com (realmail20.socgen.com [194.119.125.55])
|
3
|
+
by sb7.songbird.com (8.12.11.20060308/8.12.11) with ESMTP id
|
4
|
+
k42GiYox017297
|
5
|
+
for <gpc-talk-bounces@grizz.org>; Tue, 2 May 2006 09:44:35 -0700
|
6
|
+
Message-Id: <4u3ji0$p54bh@realmail20.socgen.com>
|
7
|
+
X-IronPort-AV: i="4.05,80,1146434400"; d="scan'208"; a="26382705:sNHT28778673"
|
8
|
+
From: Dsicspiibs.spi-internet@socgen.com
|
9
|
+
To: gpc-talk-bounces@grizz.org
|
10
|
+
Date: Tue, 2 May 2006 18:42:52 +0200 (MEST)
|
11
|
+
Subject: RE: Your message to GPC-talk awaits moderator approval : non remis
|
12
|
+
(delivery failed)
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: text/plain; charset=US-ASCII
|
15
|
+
X-SongbirdInformation: support@songbird.com for more information
|
16
|
+
X-Songbird: Clean
|
17
|
+
X-Songbird-From: dsicspiibs.spi-internet@socgen.com
|
18
|
+
|
19
|
+
***********************************************
|
20
|
+
Votre message n'a pas pu etre delivre a
|
21
|
+
duke@ald.socgen.com
|
22
|
+
|
23
|
+
***********************************************
|
24
|
+
Your message could not be delivered to
|
25
|
+
duke@ald.socgen.com
|
26
|
+
|
27
|
+
***********************************************
|
@@ -0,0 +1,33 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@sb7.songbird.com>
|
2
|
+
Received: from sl.gomaps.com (www.gomaps.com [207.178.107.65])
|
3
|
+
by sb7.songbird.com (8.12.11.20060308/8.12.11) with ESMTP id
|
4
|
+
k4359uMK016999
|
5
|
+
for <gpc-talk-bounces@grizz.org>; Tue, 2 May 2006 22:09:56 -0700
|
6
|
+
Received: from mail pickup service by sl.gomaps.com with Microsoft SMTPSVC;
|
7
|
+
Wed, 3 May 2006 00:09:22 -0500
|
8
|
+
Message-ID: <SLND200605030009223890@gomaps.com>
|
9
|
+
From: Postmaster <>
|
10
|
+
To: gpc-talk-bounces@grizz.org
|
11
|
+
Subject: Undeliverable: liberty@gomaps.com
|
12
|
+
Date: Wed, 3 May 2006 00:09:22
|
13
|
+
MIME-Version: 1.0
|
14
|
+
X-Mailer: SpamLion (E 1.60.205)
|
15
|
+
Content-Type: text/plain;
|
16
|
+
charset="us-ascii"
|
17
|
+
X-OriginalArrivalTime: 03 May 2006 05:09:22.0389 (UTC)
|
18
|
+
FILETIME=[BD5A8850:01C66E6F]
|
19
|
+
X-SongbirdInformation: support@songbird.com for more information
|
20
|
+
X-Songbird: Clean
|
21
|
+
X-Songbird-From:
|
22
|
+
|
23
|
+
--------------------------------------------------------------------------------
|
24
|
+
Your Message
|
25
|
+
|
26
|
+
To: <liberty@gomaps.com>
|
27
|
+
|
28
|
+
Subject: The results of your email commands
|
29
|
+
|
30
|
+
Date: Tue, 02 May 2006 22:09:32 -0700
|
31
|
+
|
32
|
+
Did not reach the following recipient: liberty@gomaps.com
|
33
|
+
|
@@ -0,0 +1,98 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mx.example.co.jp (www.example.ne.jp [192.0.2.10])
|
3
|
+
by aneyakoji.example.jp (V8/cf) with ESMTP id s0000000000000
|
4
|
+
for <postmaster@example.jp>; Mon, 1 Sep 2014 23:45:56 +0900
|
5
|
+
From: postmaster@mx451r0.example.com
|
6
|
+
To: Postmaster@example.or.jp
|
7
|
+
Date: Sun, 31 Aug 2014 23:45:56 +0900
|
8
|
+
MIME-Version: 1.0
|
9
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
10
|
+
boundary="0000000000-FFFFFFFFFexample.net"
|
11
|
+
Message-ID: <f00000000000000000@example.net>
|
12
|
+
Subject: Delivery Status Notification (Failure)
|
13
|
+
|
14
|
+
This is a MIME-formatted message.
|
15
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
16
|
+
|
17
|
+
--0000000000-FFFFFFFFFexample.net
|
18
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
19
|
+
|
20
|
+
This is an automatically generated Delivery Status Notification.
|
21
|
+
|
22
|
+
Delivery to the following recipients failed.
|
23
|
+
|
24
|
+
kijitora@example.or.jp
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
--0000000000-FFFFFFFFFexample.net
|
30
|
+
Content-Type: message/delivery-status
|
31
|
+
|
32
|
+
Reporting-MTA: dns;example.net
|
33
|
+
Received-From-MTA: dns;mx451r0.example.com
|
34
|
+
Arrival-Date: Sun, 31 Aug 2014 23:45:56 +0900
|
35
|
+
|
36
|
+
Final-Recipient: rfc822;kijitora@example.or.jp
|
37
|
+
Action: failed
|
38
|
+
Status: 5.1.1
|
39
|
+
Diagnostic-Code: smtp;550 5.1.1 <kijitora@example.or.jp>... User unknown
|
40
|
+
|
41
|
+
--0000000000-FFFFFFFFFexample.net
|
42
|
+
Content-Type: message/rfc822
|
43
|
+
|
44
|
+
Received: from mail pickup service by example.net with Microsoft SMTPSVC;
|
45
|
+
Sun, 31 Aug 2014 23:45:56 +0900
|
46
|
+
Return-path: <Postmaster@example.or.jp>
|
47
|
+
From: <Postmaster@example.or.jp>
|
48
|
+
To: <kijitora@example.or.jp>
|
49
|
+
Subject: Delivery Failure
|
50
|
+
Date: Sun, 31 Aug 2014 23:45:56 +0900
|
51
|
+
Content-Type: multipart/mixed;
|
52
|
+
boundary="ffffff-00000-eefff"
|
53
|
+
Content-Transfer-Encoding: 7bit
|
54
|
+
Importance: high
|
55
|
+
Priority: high
|
56
|
+
Message-ID: <ALSMTP02OCIIZS2TRqf0001e76b@example.net>
|
57
|
+
X-OriginalArrivalTime: 31 Aug 2014 23:45:56.0258 (UTC) FILETIME=[8E980420:01CFC54B]
|
58
|
+
|
59
|
+
This is a multi-part message in MIME format.
|
60
|
+
|
61
|
+
--ffffff-00000-eefff
|
62
|
+
Content-Type: text/html
|
63
|
+
Content-Transfer-Encoding: 7bit
|
64
|
+
|
65
|
+
Message delivery failed to the following address
|
66
|
+
abermudez@example.com
|
67
|
+
Reason: Mailbox <abermudez@example.com> does not exist
|
68
|
+
|
69
|
+
--ffffff-00000-eefff
|
70
|
+
Content-Type: message/rfc822
|
71
|
+
|
72
|
+
ResentFrom: neko@example.com
|
73
|
+
Return-Path: <kijitora@example.or.jp>
|
74
|
+
Received: from 192.0.2.90 ([192.0.2.90]) by mx451r0.example.com with ESMTP;
|
75
|
+
Sun, 31 Aug 2014 23:45:56 +0900
|
76
|
+
Received: from [192.0.2.166] ([192.0.2.166:0318] helo=PC)
|
77
|
+
by 00000000 (envelope-from <kijitora@example.or.jp>) with ESMTP
|
78
|
+
id 00/00-00000-00000000; Mon, 01 Sep 2014 23:45:56 +0900
|
79
|
+
Date: Mon, 01 Sep 2014 23:45:56 +0900
|
80
|
+
From: Neko <kijitora@example.or.jp>
|
81
|
+
Reply-To: <kijitora@example.or.jp>
|
82
|
+
To: neko@example.com
|
83
|
+
Message-ID: <00000000000000000000000000000000@email.example.or.jp>
|
84
|
+
Subject: Nyaaan
|
85
|
+
MIME-Version: 1.0
|
86
|
+
Content-Type: multipart/alternative;
|
87
|
+
boundary="----=b2100000000-0000"
|
88
|
+
|
89
|
+
------=b2100000000-0000
|
90
|
+
Content-Type: text/plain; charset=utf-8
|
91
|
+
Content-Transfer-Encoding: quoted-printable
|
92
|
+
Content-Disposition: inline
|
93
|
+
|
94
|
+
--ffffff-00000-eefff--
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
--0000000000-FFFFFFFFFexample.net--
|
@@ -0,0 +1,180 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: donotreply@testsender.com
|
3
|
+
Delivered-To: donotreply@testsender.com
|
4
|
+
Received: from mail28.testreceiver.com (mail28.testreceiver.com [200.190.180.70])
|
5
|
+
by testsender.com (Postfix) with ESMTP id BACAF707FE
|
6
|
+
for <donotreply@testsender.com>; Sun, 2 Aug 2009 05:15:49 +0000 (UTC)
|
7
|
+
X-IronPort-AV: E=Sophos;i="4.43,308,1246852800";
|
8
|
+
d="scan'208,217";a="65437680"
|
9
|
+
From: postmaster@ctv.local
|
10
|
+
To: donotreply@testsender.com
|
11
|
+
Date: Sun, 2 Aug 2009 01:25:02 -0400
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="9B095B5ADSN=_01C95DDEA7FEA09800163DBAABC002.corp.c"
|
15
|
+
X-DSNContext: 335a7efd - 2430 - 00000002 - C00402CD
|
16
|
+
Message-ID: <lmZNZKFcP000627a1@ABC002.corp.testreceiver.com>
|
17
|
+
Subject: Delivery Status Notification (Failure)
|
18
|
+
|
19
|
+
This is a MIME-formatted message.
|
20
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
21
|
+
|
22
|
+
--9B095B5ADSN=_01C95DDEA7FEA09800163DBAABC002.corp.c
|
23
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
24
|
+
|
25
|
+
This is an automatically generated Delivery Status Notification.
|
26
|
+
|
27
|
+
Unable to deliver message to the following recipients, because the message was forwarded more than the maximum allowed times. This could indicate a mail loop.
|
28
|
+
|
29
|
+
forwarding_loop@mail.testreceiver.com
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
--9B095B5ADSN=_01C95DDEA7FEA09800163DBAABC002.corp.c
|
35
|
+
Content-Type: message/delivery-status
|
36
|
+
|
37
|
+
Reporting-MTA: dns;ABC002.corp.testreceiver.com
|
38
|
+
Received-From-MTA: dns;DEF001.chum.chumltd.net
|
39
|
+
Arrival-Date: Sun, 2 Aug 2009 01:25:02 -0400
|
40
|
+
|
41
|
+
Final-Recipient: rfc822;forwarding_loop@mail.testreceiver.com
|
42
|
+
Action: failed
|
43
|
+
Status: 4.4.6
|
44
|
+
|
45
|
+
--9B095B5ADSN=_01C95DDEA7FEA09800163DBAABC002.corp.c
|
46
|
+
Content-Type: message/rfc822
|
47
|
+
|
48
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC002.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
49
|
+
Sun, 2 Aug 2009 01:25:02 -0400
|
50
|
+
Received: from ABC001.corp.testreceiver.com ([10.1.10.100.]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
51
|
+
Sun, 2 Aug 2009 01:14:24 -0400
|
52
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
53
|
+
Sun, 2 Aug 2009 01:03:57 -0400
|
54
|
+
Received: from ABC001.corp.testreceiver.com ([10.1.10.100.]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
55
|
+
Sun, 2 Aug 2009 00:53:29 -0400
|
56
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
57
|
+
Sun, 2 Aug 2009 00:42:51 -0400
|
58
|
+
Received: from ABC001.corp.testreceiver.com ([10.1.10.100.]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
59
|
+
Sun, 2 Aug 2009 00:32:19 -0400
|
60
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
61
|
+
Sun, 2 Aug 2009 00:21:46 -0400
|
62
|
+
Received: from ABC002.corp.testreceiver.com ([10.1.37.17]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
63
|
+
Sun, 2 Aug 2009 00:10:49 -0400
|
64
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC002.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
65
|
+
Sun, 2 Aug 2009 00:00:43 -0400
|
66
|
+
Received: from ABC001.corp.testreceiver.com ([10.1.10.100.]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
67
|
+
Sat, 1 Aug 2009 23:50:05 -0400
|
68
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
69
|
+
Sat, 1 Aug 2009 23:39:39 -0400
|
70
|
+
Received: from ABC002.corp.testreceiver.com ([10.1.37.17]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
71
|
+
Sat, 1 Aug 2009 23:29:26 -0400
|
72
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC002.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
73
|
+
Sat, 1 Aug 2009 23:18:35 -0400
|
74
|
+
Received: from ABC002.corp.testreceiver.com ([10.1.37.17]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
75
|
+
Sat, 1 Aug 2009 23:08:14 -0400
|
76
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC002.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
77
|
+
Sat, 1 Aug 2009 22:57:31 -0400
|
78
|
+
Received: from ABC001.corp.testreceiver.com ([10.1.10.100.]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
79
|
+
Sat, 1 Aug 2009 22:46:45 -0400
|
80
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
81
|
+
Sat, 1 Aug 2009 22:35:26 -0400
|
82
|
+
Received: from ABC002.corp.testreceiver.com ([10.1.37.17]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
83
|
+
Sat, 1 Aug 2009 22:25:24 -0400
|
84
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC002.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
85
|
+
Sat, 1 Aug 2009 22:25:24 -0400
|
86
|
+
Received: from ABC001.corp.testreceiver.com ([10.1.10.100.]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
87
|
+
Sat, 1 Aug 2009 22:15:15 -0400
|
88
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
89
|
+
Sat, 1 Aug 2009 22:04:19 -0400
|
90
|
+
Received: from ABC001.corp.testreceiver.com ([10.1.10.100.]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
91
|
+
Sat, 1 Aug 2009 21:53:31 -0400
|
92
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
93
|
+
Sat, 1 Aug 2009 21:53:10 -0400
|
94
|
+
Received: from ABC001.corp.testreceiver.com ([10.1.10.100.]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
95
|
+
Sat, 1 Aug 2009 21:53:10 -0400
|
96
|
+
Received: from DEF001.chum.chumltd.net ([10.100.20.20]) by ABC001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
97
|
+
Sat, 1 Aug 2009 21:53:09 -0400
|
98
|
+
Received: from ABC002.corp.testreceiver.com ([10.1.37.17]) by DEF001.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
99
|
+
Sat, 1 Aug 2009 21:53:10 -0400
|
100
|
+
Received: from DEF002.chum.chumltd.net ([10.14.38.20]) by ABC002.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
101
|
+
Sat, 1 Aug 2009 21:52:48 -0400
|
102
|
+
Received: from qsexbh001.corp.testreceiver.com ([10.14.37.20]) by DEF002.chum.chumltd.net with Microsoft SMTPSVC(6.0.3790.3959);
|
103
|
+
Sat, 1 Aug 2009 21:52:48 -0400
|
104
|
+
Received: from qs.testreceiver.com ([10.14.3.166]) by qsexbh001.corp.testreceiver.com with Microsoft SMTPSVC(6.0.3790.3959);
|
105
|
+
Sat, 1 Aug 2009 21:52:48 -0400
|
106
|
+
X-IronPort-Anti-Spam-Filtered: true
|
107
|
+
X-IronPort-Anti-Spam-Result: Aq4DAJaOdEpKMjBKl2dsb2JhbACCIQctjH0BikwBAQEBAQgVB7ZfhBgF
|
108
|
+
X-IronPort-AV: E=Sophos;i="4.43,308,1246852800";
|
109
|
+
d="scan'208,217";a="59795824"
|
110
|
+
X-XBRS: 5.1
|
111
|
+
Received: from testsender.com ([74.50.48.74])
|
112
|
+
by qs.testreceiver.com with ESMTP; 01 Aug 2009 21:52:47 -0400
|
113
|
+
Received: from testsender.com (localhost [127.0.0.1])
|
114
|
+
by testsender.com (Postfix) with ESMTP id 1E361707FE
|
115
|
+
for <forwarding_loop@mail.testreceiver.com>; Sun, 2 Aug 2009 01:43:06 +0000 (UTC)
|
116
|
+
Date: Sun, 2 Aug 2009 01:43:06 +0000
|
117
|
+
From: Emergency and AMBER Alert Feeds <donotreply@testsender.com>
|
118
|
+
To: forwarding_loop@mail.testreceiver.com
|
119
|
+
Message-Id: <4a74ef2a18b45_eae..fdbd40c822272@testhost.com>
|
120
|
+
Subject: Test of Emergency Alert Feed
|
121
|
+
Mime-Version: 1.0
|
122
|
+
Content-Type: multipart/alternative;
|
123
|
+
boundary=mimepart_4a74ef2a1be53_eae..fdbd40c82236d
|
124
|
+
Return-Path: donotreply@testsender.com
|
125
|
+
X-OriginalArrivalTime: 02 Aug 2009 01:52:48.0726 (UTC) FILETIME=[F01D9F60:01CA1313]
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
--mimepart_4a74ef2a1be53_eae..fdbd40c82236d
|
130
|
+
Content-Type: text/plain; charset=utf-8
|
131
|
+
Content-Transfer-Encoding: Quoted-printable
|
132
|
+
Content-Disposition: inline
|
133
|
+
|
134
|
+
Thank you
|
135
|
+
|
136
|
+
--mimepart_4a74ef2a1be53_eae..fdbd40c82236d
|
137
|
+
Content-Type: text/html; charset=utf-8
|
138
|
+
Content-Transfer-Encoding: Quoted-printable
|
139
|
+
Content-Disposition: inline
|
140
|
+
|
141
|
+
<HTML>
|
142
|
+
|
143
|
+
<head>
|
144
|
+
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dutf-8">=
|
145
|
+
|
146
|
+
<style>
|
147
|
+
<!-- in case incoming feed has no style -->
|
148
|
+
body { background-color: #ffffff; color: #333333; }
|
149
|
+
|
150
|
+
body, p, ol, ul, td {
|
151
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
152
|
+
font-size: 14px;
|
153
|
+
line-height: 18px;
|
154
|
+
}
|
155
|
+
|
156
|
+
pre {
|
157
|
+
background-color: #eeeeee;
|
158
|
+
padding: 10px;
|
159
|
+
font-size: 12px;
|
160
|
+
}
|
161
|
+
|
162
|
+
a { color: #000; }
|
163
|
+
a:visited { color: #666; }
|
164
|
+
a:hover { color: #fff; background-color:#000; }
|
165
|
+
</style>
|
166
|
+
</head>
|
167
|
+
|
168
|
+
<body>
|
169
|
+
<div style=3D"margin-bottom: 10px; background-color: #BB8888; color: #FFF=
|
170
|
+
FFF; border: 1px solid #EECCCC; padding: 5px;">
|
171
|
+
Thank you
|
172
|
+
</div>
|
173
|
+
</body></HTML>
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
--mimepart_4a74ef2a1be53_eae..fdbd40c82236d--
|
178
|
+
|
179
|
+
|
180
|
+
--9B095B5ADSN=_01C95DDEA7FEA09800163DBAABC002.corp.c--
|