sisimai 4.16.0-java
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sisimai might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.rubocop.yml +182 -0
- data/.travis.yml +18 -0
- data/ANALYTICAL-PRECISION +56 -0
- data/Changes +36 -0
- data/Developers.mk +129 -0
- data/Gemfile +15 -0
- data/LICENSE +25 -0
- data/Makefile +70 -0
- data/README.md +361 -0
- data/Rakefile +12 -0
- data/Repository.mk +69 -0
- data/appveyor.yml +23 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sisimai.rb +95 -0
- data/lib/sisimai/address.rb +224 -0
- data/lib/sisimai/arf.rb +338 -0
- data/lib/sisimai/data.rb +409 -0
- data/lib/sisimai/data/json.rb +40 -0
- data/lib/sisimai/data/yaml.rb +32 -0
- data/lib/sisimai/datetime.rb +511 -0
- data/lib/sisimai/mail.rb +82 -0
- data/lib/sisimai/mail/maildir.rb +82 -0
- data/lib/sisimai/mail/mbox.rb +69 -0
- data/lib/sisimai/mail/stdin.rb +53 -0
- data/lib/sisimai/mda.rb +152 -0
- data/lib/sisimai/message.rb +525 -0
- data/lib/sisimai/mime.rb +127 -0
- data/lib/sisimai/msp.rb +54 -0
- data/lib/sisimai/msp/de/einsundeins.rb +174 -0
- data/lib/sisimai/msp/de/gmx.rb +197 -0
- data/lib/sisimai/msp/jp/biglobe.rb +179 -0
- data/lib/sisimai/msp/jp/ezweb.rb +292 -0
- data/lib/sisimai/msp/jp/kddi.rb +195 -0
- data/lib/sisimai/msp/ru/mailru.rb +306 -0
- data/lib/sisimai/msp/ru/yandex.rb +241 -0
- data/lib/sisimai/msp/uk/messagelabs.rb +250 -0
- data/lib/sisimai/msp/us/amazonses.rb +248 -0
- data/lib/sisimai/msp/us/amazonworkmail.rb +224 -0
- data/lib/sisimai/msp/us/aol.rb +234 -0
- data/lib/sisimai/msp/us/bigfoot.rb +243 -0
- data/lib/sisimai/msp/us/facebook.rb +306 -0
- data/lib/sisimai/msp/us/google.rb +357 -0
- data/lib/sisimai/msp/us/office365.rb +273 -0
- data/lib/sisimai/msp/us/outlook.rb +242 -0
- data/lib/sisimai/msp/us/receivingses.rb +247 -0
- data/lib/sisimai/msp/us/sendgrid.rb +257 -0
- data/lib/sisimai/msp/us/verizon.rb +311 -0
- data/lib/sisimai/msp/us/yahoo.rb +178 -0
- data/lib/sisimai/msp/us/zoho.rb +198 -0
- data/lib/sisimai/mta.rb +54 -0
- data/lib/sisimai/mta/activehunter.rb +155 -0
- data/lib/sisimai/mta/apachejames.rb +194 -0
- data/lib/sisimai/mta/courier.rb +307 -0
- data/lib/sisimai/mta/domino.rb +209 -0
- data/lib/sisimai/mta/exchange.rb +314 -0
- data/lib/sisimai/mta/exim.rb +549 -0
- data/lib/sisimai/mta/imailserver.rb +227 -0
- data/lib/sisimai/mta/interscanmss.rb +167 -0
- data/lib/sisimai/mta/mailfoundry.rb +173 -0
- data/lib/sisimai/mta/mailmarshalsmtp.rb +206 -0
- data/lib/sisimai/mta/mcafee.rb +201 -0
- data/lib/sisimai/mta/messagingserver.rb +241 -0
- data/lib/sisimai/mta/mfilter.rb +190 -0
- data/lib/sisimai/mta/mxlogic.rb +283 -0
- data/lib/sisimai/mta/notes.rb +206 -0
- data/lib/sisimai/mta/opensmtpd.rb +225 -0
- data/lib/sisimai/mta/postfix.rb +306 -0
- data/lib/sisimai/mta/qmail.rb +335 -0
- data/lib/sisimai/mta/sendmail.rb +317 -0
- data/lib/sisimai/mta/surfcontrol.rb +193 -0
- data/lib/sisimai/mta/userdefined.rb +148 -0
- data/lib/sisimai/mta/v5sendmail.rb +232 -0
- data/lib/sisimai/mta/x1.rb +156 -0
- data/lib/sisimai/mta/x2.rb +157 -0
- data/lib/sisimai/mta/x3.rb +171 -0
- data/lib/sisimai/mta/x4.rb +365 -0
- data/lib/sisimai/mta/x5.rb +208 -0
- data/lib/sisimai/order.rb +220 -0
- data/lib/sisimai/reason.rb +234 -0
- data/lib/sisimai/reason/blocked.rb +105 -0
- data/lib/sisimai/reason/contenterror.rb +53 -0
- data/lib/sisimai/reason/exceedlimit.rb +60 -0
- data/lib/sisimai/reason/expired.rb +53 -0
- data/lib/sisimai/reason/filtered.rb +98 -0
- data/lib/sisimai/reason/hasmoved.rb +45 -0
- data/lib/sisimai/reason/hostunknown.rb +79 -0
- data/lib/sisimai/reason/mailboxfull.rb +118 -0
- data/lib/sisimai/reason/mailererror.rb +55 -0
- data/lib/sisimai/reason/mesgtoobig.rb +82 -0
- data/lib/sisimai/reason/networkerror.rb +58 -0
- data/lib/sisimai/reason/norelaying.rb +71 -0
- data/lib/sisimai/reason/notaccept.rb +63 -0
- data/lib/sisimai/reason/onhold.rb +45 -0
- data/lib/sisimai/reason/rejected.rb +101 -0
- data/lib/sisimai/reason/securityerror.rb +72 -0
- data/lib/sisimai/reason/spamdetected.rb +172 -0
- data/lib/sisimai/reason/suspend.rb +58 -0
- data/lib/sisimai/reason/systemerror.rb +69 -0
- data/lib/sisimai/reason/systemfull.rb +45 -0
- data/lib/sisimai/reason/toomanyconn.rb +73 -0
- data/lib/sisimai/reason/userunknown.rb +194 -0
- data/lib/sisimai/rfc2606.rb +24 -0
- data/lib/sisimai/rfc3464.rb +497 -0
- data/lib/sisimai/rfc3834.rb +150 -0
- data/lib/sisimai/rfc5322.rb +204 -0
- data/lib/sisimai/rhost.rb +47 -0
- data/lib/sisimai/rhost/googleapps.rb +237 -0
- data/lib/sisimai/smtp.rb +58 -0
- data/lib/sisimai/smtp/reply.rb +84 -0
- data/lib/sisimai/smtp/status.rb +758 -0
- data/lib/sisimai/string.rb +65 -0
- data/lib/sisimai/time.rb +11 -0
- data/lib/sisimai/version.rb +4 -0
- data/set-of-emails/README.md +35 -0
- data/set-of-emails/mailbox/mbox-0 +2467 -0
- data/set-of-emails/mailbox/mbox-1 +71 -0
- data/set-of-emails/maildir/bsd/README.md +261 -0
- data/set-of-emails/maildir/bsd/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/bsd/activehunter-02.eml +53 -0
- data/set-of-emails/maildir/bsd/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/bsd/arf-01.eml +66 -0
- data/set-of-emails/maildir/bsd/arf-02.eml +68 -0
- data/set-of-emails/maildir/bsd/arf-03.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-04.eml +89 -0
- data/set-of-emails/maildir/bsd/arf-05.eml +82 -0
- data/set-of-emails/maildir/bsd/arf-06.eml +166 -0
- data/set-of-emails/maildir/bsd/arf-07.eml +59 -0
- data/set-of-emails/maildir/bsd/arf-08.eml +103 -0
- data/set-of-emails/maildir/bsd/arf-09.eml +104 -0
- data/set-of-emails/maildir/bsd/arf-10.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-11.eml +37 -0
- data/set-of-emails/maildir/bsd/arf-12.eml +40 -0
- data/set-of-emails/maildir/bsd/arf-13.eml +76 -0
- data/set-of-emails/maildir/bsd/arf-14.eml +333 -0
- data/set-of-emails/maildir/bsd/arf-15.eml +66 -0
- data/set-of-emails/maildir/bsd/courier-01.eml +79 -0
- data/set-of-emails/maildir/bsd/courier-02.eml +83 -0
- data/set-of-emails/maildir/bsd/courier-03.eml +85 -0
- data/set-of-emails/maildir/bsd/courier-04.eml +87 -0
- data/set-of-emails/maildir/bsd/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/bsd/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/bsd/de-gmx-02.eml +51 -0
- data/set-of-emails/maildir/bsd/de-gmx-03.eml +56 -0
- data/set-of-emails/maildir/bsd/de-gmx-04.eml +51 -0
- data/set-of-emails/maildir/bsd/domino-01.eml +33 -0
- data/set-of-emails/maildir/bsd/domino-02.eml +83 -0
- data/set-of-emails/maildir/bsd/exchange-01.eml +31 -0
- data/set-of-emails/maildir/bsd/exchange-02.eml +67 -0
- data/set-of-emails/maildir/bsd/exchange-03.eml +52 -0
- data/set-of-emails/maildir/bsd/exchange-04.eml +28 -0
- data/set-of-emails/maildir/bsd/exchange-05.eml +56 -0
- data/set-of-emails/maildir/bsd/exchange-06.eml +151 -0
- data/set-of-emails/maildir/bsd/exim-01.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-02.eml +41 -0
- data/set-of-emails/maildir/bsd/exim-03.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-04.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-05.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-06.eml +44 -0
- data/set-of-emails/maildir/bsd/exim-07.eml +28 -0
- data/set-of-emails/maildir/bsd/exim-08.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-09.eml +169 -0
- data/set-of-emails/maildir/bsd/exim-10.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-11.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-12.eml +75 -0
- data/set-of-emails/maildir/bsd/exim-13.eml +145 -0
- data/set-of-emails/maildir/bsd/exim-14.eml +32 -0
- data/set-of-emails/maildir/bsd/exim-15.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-16.eml +98 -0
- data/set-of-emails/maildir/bsd/exim-17.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-18.eml +96 -0
- data/set-of-emails/maildir/bsd/exim-19.eml +52 -0
- data/set-of-emails/maildir/bsd/exim-20.eml +159 -0
- data/set-of-emails/maildir/bsd/exim-21.eml +150 -0
- data/set-of-emails/maildir/bsd/exim-22.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-23.eml +57 -0
- data/set-of-emails/maildir/bsd/exim-24.eml +107 -0
- data/set-of-emails/maildir/bsd/exim-25.eml +18 -0
- data/set-of-emails/maildir/bsd/exim-26.eml +111 -0
- data/set-of-emails/maildir/bsd/exim-27.eml +120 -0
- data/set-of-emails/maildir/bsd/exim-28.eml +148 -0
- data/set-of-emails/maildir/bsd/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/bsd/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/bsd/imailserver-02.eml +36 -0
- data/set-of-emails/maildir/bsd/imailserver-03.eml +28 -0
- data/set-of-emails/maildir/bsd/imailserver-04.eml +15 -0
- data/set-of-emails/maildir/bsd/imailserver-05.eml +92 -0
- data/set-of-emails/maildir/bsd/imailserver-06.eml +29 -0
- data/set-of-emails/maildir/bsd/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/bsd/interscanmss-02.eml +259 -0
- data/set-of-emails/maildir/bsd/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-02.eml +65 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-03.eml +35 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-04.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-05.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-06.eml +33 -0
- data/set-of-emails/maildir/bsd/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/bsd/jp-kddi-02.eml +54 -0
- data/set-of-emails/maildir/bsd/jp-kddi-03.eml +54 -0
- data/set-of-emails/maildir/bsd/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/bsd/mailfoundry-02.eml +49 -0
- data/set-of-emails/maildir/bsd/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/bsd/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/bsd/mcafee-02.eml +65 -0
- data/set-of-emails/maildir/bsd/mcafee-03.eml +59 -0
- data/set-of-emails/maildir/bsd/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-02.eml +72 -0
- data/set-of-emails/maildir/bsd/messagingserver-03.eml +70 -0
- data/set-of-emails/maildir/bsd/messagingserver-04.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-05.eml +98 -0
- data/set-of-emails/maildir/bsd/messagingserver-06.eml +101 -0
- data/set-of-emails/maildir/bsd/messagingserver-07.eml +129 -0
- data/set-of-emails/maildir/bsd/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/bsd/mfilter-02.eml +48 -0
- data/set-of-emails/maildir/bsd/mfilter-03.eml +43 -0
- data/set-of-emails/maildir/bsd/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/bsd/mxlogic-02.eml +44 -0
- data/set-of-emails/maildir/bsd/mxlogic-03.eml +46 -0
- data/set-of-emails/maildir/bsd/notes-01.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-02.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-03.eml +38 -0
- data/set-of-emails/maildir/bsd/notes-04.eml +181 -0
- data/set-of-emails/maildir/bsd/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-02.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-03.eml +36 -0
- data/set-of-emails/maildir/bsd/opensmtpd-04.eml +40 -0
- data/set-of-emails/maildir/bsd/opensmtpd-05.eml +36 -0
- data/set-of-emails/maildir/bsd/postfix-01.eml +60 -0
- data/set-of-emails/maildir/bsd/postfix-02.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-03.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-04.eml +89 -0
- data/set-of-emails/maildir/bsd/postfix-05.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-06.eml +72 -0
- data/set-of-emails/maildir/bsd/postfix-07.eml +74 -0
- data/set-of-emails/maildir/bsd/postfix-08.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-09.eml +76 -0
- data/set-of-emails/maildir/bsd/postfix-10.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-11.eml +86 -0
- data/set-of-emails/maildir/bsd/postfix-12.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-13.eml +81 -0
- data/set-of-emails/maildir/bsd/postfix-14.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-15.eml +69 -0
- data/set-of-emails/maildir/bsd/postfix-16.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-17.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-18.eml +121 -0
- data/set-of-emails/maildir/bsd/postfix-19.eml +105 -0
- data/set-of-emails/maildir/bsd/postfix-20.eml +231 -0
- data/set-of-emails/maildir/bsd/postfix-21.eml +60 -0
- data/set-of-emails/maildir/bsd/qmail-01.eml +40 -0
- data/set-of-emails/maildir/bsd/qmail-02.eml +35 -0
- data/set-of-emails/maildir/bsd/qmail-03.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-04.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-05.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-06.eml +39 -0
- data/set-of-emails/maildir/bsd/qmail-07.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-08.eml +23 -0
- data/set-of-emails/maildir/bsd/qmail-09.eml +103 -0
- data/set-of-emails/maildir/bsd/rfc3464-01.eml +60 -0
- data/set-of-emails/maildir/bsd/rfc3464-02.eml +43 -0
- data/set-of-emails/maildir/bsd/rfc3464-03.eml +40 -0
- data/set-of-emails/maildir/bsd/rfc3464-04.eml +50 -0
- data/set-of-emails/maildir/bsd/rfc3464-05.eml +63 -0
- data/set-of-emails/maildir/bsd/rfc3464-06.eml +48 -0
- data/set-of-emails/maildir/bsd/rfc3464-07.eml +88 -0
- data/set-of-emails/maildir/bsd/rfc3464-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rfc3464-09.eml +93 -0
- data/set-of-emails/maildir/bsd/rfc3464-10.eml +467 -0
- data/set-of-emails/maildir/bsd/rfc3464-11.eml +1171 -0
- data/set-of-emails/maildir/bsd/rfc3464-12.eml +101 -0
- data/set-of-emails/maildir/bsd/rfc3464-13.eml +131 -0
- data/set-of-emails/maildir/bsd/rfc3464-14.eml +121 -0
- data/set-of-emails/maildir/bsd/rfc3464-15.eml +144 -0
- data/set-of-emails/maildir/bsd/rfc3464-16.eml +36 -0
- data/set-of-emails/maildir/bsd/rfc3464-17.eml +109 -0
- data/set-of-emails/maildir/bsd/rfc3464-18.eml +149 -0
- data/set-of-emails/maildir/bsd/rfc3464-19.eml +65 -0
- data/set-of-emails/maildir/bsd/rfc3464-20.eml +145 -0
- data/set-of-emails/maildir/bsd/rfc3464-21.eml +146 -0
- data/set-of-emails/maildir/bsd/rfc3464-22.eml +105 -0
- data/set-of-emails/maildir/bsd/rfc3464-23.eml +21 -0
- data/set-of-emails/maildir/bsd/rfc3464-24.eml +27 -0
- data/set-of-emails/maildir/bsd/rfc3464-25.eml +33 -0
- data/set-of-emails/maildir/bsd/rfc3464-26.eml +98 -0
- data/set-of-emails/maildir/bsd/rfc3464-27.eml +180 -0
- data/set-of-emails/maildir/bsd/rfc3464-28.eml +122 -0
- data/set-of-emails/maildir/bsd/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/bsd/rfc3834-02.eml +51 -0
- data/set-of-emails/maildir/bsd/rfc3834-03.eml +33 -0
- data/set-of-emails/maildir/bsd/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-02.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-03.eml +62 -0
- data/set-of-emails/maildir/bsd/ru-mailru-04.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/bsd/ru-yandex-02.eml +113 -0
- data/set-of-emails/maildir/bsd/ru-yandex-03.eml +101 -0
- data/set-of-emails/maildir/bsd/sendmail-01.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-02.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-03.eml +76 -0
- data/set-of-emails/maildir/bsd/sendmail-04.eml +63 -0
- data/set-of-emails/maildir/bsd/sendmail-05.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-06.eml +67 -0
- data/set-of-emails/maildir/bsd/sendmail-07.eml +65 -0
- data/set-of-emails/maildir/bsd/sendmail-08.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-09.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-10.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-11.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-12.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-13.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-14.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-15.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-16.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-17.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-18.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-19.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-20.eml +120 -0
- data/set-of-emails/maildir/bsd/sendmail-21.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-22.eml +73 -0
- data/set-of-emails/maildir/bsd/sendmail-23.eml +137 -0
- data/set-of-emails/maildir/bsd/sendmail-24.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-25.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-26.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-27.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-28.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-29.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-30.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-31.eml +80 -0
- data/set-of-emails/maildir/bsd/sendmail-32.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-33.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-34.eml +75 -0
- data/set-of-emails/maildir/bsd/sendmail-35.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-36.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-37.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-38.eml +167 -0
- data/set-of-emails/maildir/bsd/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/bsd/surfcontrol-02.eml +70 -0
- data/set-of-emails/maildir/bsd/surfcontrol-03.eml +70 -0
- data/set-of-emails/maildir/bsd/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/bsd/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/bsd/us-amazonses-02.eml +177 -0
- data/set-of-emails/maildir/bsd/us-amazonses-03.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonses-04.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-01.eml +156 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-02.eml +160 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-03.eml +161 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-04.eml +156 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-05.eml +157 -0
- data/set-of-emails/maildir/bsd/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/bsd/us-aol-02.eml +1257 -0
- data/set-of-emails/maildir/bsd/us-aol-03.eml +1264 -0
- data/set-of-emails/maildir/bsd/us-aol-04.eml +1260 -0
- data/set-of-emails/maildir/bsd/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/bsd/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-facebook-02.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-01.eml +70 -0
- data/set-of-emails/maildir/bsd/us-google-02.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-03.eml +51 -0
- data/set-of-emails/maildir/bsd/us-google-04.eml +82 -0
- data/set-of-emails/maildir/bsd/us-google-05.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-06.eml +56 -0
- data/set-of-emails/maildir/bsd/us-google-07.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-08.eml +59 -0
- data/set-of-emails/maildir/bsd/us-google-09.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-10.eml +69 -0
- data/set-of-emails/maildir/bsd/us-google-11.eml +68 -0
- data/set-of-emails/maildir/bsd/us-google-12.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-13.eml +79 -0
- data/set-of-emails/maildir/bsd/us-google-14.eml +304 -0
- data/set-of-emails/maildir/bsd/us-office365-01.eml +102 -0
- data/set-of-emails/maildir/bsd/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/us-outlook-05.eml +85 -0
- data/set-of-emails/maildir/bsd/us-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/us-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-02.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-03.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-04.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-05.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-06.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-07.eml +74 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-02.eml +98 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-03.eml +100 -0
- data/set-of-emails/maildir/bsd/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/bsd/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/bsd/us-yahoo-02.eml +79 -0
- data/set-of-emails/maildir/bsd/us-yahoo-03.eml +93 -0
- data/set-of-emails/maildir/bsd/us-yahoo-04.eml +94 -0
- data/set-of-emails/maildir/bsd/us-yahoo-05.eml +94 -0
- data/set-of-emails/maildir/bsd/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-zoho-02.eml +38 -0
- data/set-of-emails/maildir/bsd/us-zoho-03.eml +37 -0
- data/set-of-emails/maildir/bsd/us-zoho-04.eml +47 -0
- data/set-of-emails/maildir/bsd/us-zoho-05.eml +37 -0
- data/set-of-emails/maildir/bsd/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/bsd/v5sendmail-02.eml +26 -0
- data/set-of-emails/maildir/bsd/v5sendmail-03.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-04.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-05.eml +42 -0
- data/set-of-emails/maildir/bsd/v5sendmail-06.eml +28 -0
- data/set-of-emails/maildir/bsd/v5sendmail-07.eml +35 -0
- data/set-of-emails/maildir/bsd/x1-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x1-02.eml +62 -0
- data/set-of-emails/maildir/bsd/x2-01.eml +41 -0
- data/set-of-emails/maildir/bsd/x2-02.eml +46 -0
- data/set-of-emails/maildir/bsd/x2-03.eml +34 -0
- data/set-of-emails/maildir/bsd/x2-04.eml +0 -0
- data/set-of-emails/maildir/bsd/x2-05.eml +98 -0
- data/set-of-emails/maildir/bsd/x3-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x3-02.eml +64 -0
- data/set-of-emails/maildir/bsd/x3-03.eml +59 -0
- data/set-of-emails/maildir/bsd/x3-04.eml +106 -0
- data/set-of-emails/maildir/bsd/x4-01.eml +92 -0
- data/set-of-emails/maildir/bsd/x4-02.eml +112 -0
- data/set-of-emails/maildir/bsd/x4-03.eml +245 -0
- data/set-of-emails/maildir/bsd/x4-04.eml +81 -0
- data/set-of-emails/maildir/bsd/x4-05.eml +121 -0
- data/set-of-emails/maildir/bsd/x4-06.eml +32 -0
- data/set-of-emails/maildir/bsd/x4-07.eml +153 -0
- data/set-of-emails/maildir/bsd/x5-01.eml +155 -0
- data/set-of-emails/maildir/dos/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/dos/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/dos/arf-01.eml +66 -0
- data/set-of-emails/maildir/dos/courier-01.eml +79 -0
- data/set-of-emails/maildir/dos/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/dos/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/dos/domino-01.eml +33 -0
- data/set-of-emails/maildir/dos/exchange-01.eml +31 -0
- data/set-of-emails/maildir/dos/exim-01.eml +46 -0
- data/set-of-emails/maildir/dos/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/dos/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/dos/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/dos/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/dos/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/dos/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/dos/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/dos/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/dos/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/dos/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/dos/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/dos/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/dos/notes-01.eml +42 -0
- data/set-of-emails/maildir/dos/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/dos/postfix-01.eml +60 -0
- data/set-of-emails/maildir/dos/qmail-01.eml +40 -0
- data/set-of-emails/maildir/dos/rfc3464-01.eml +59 -0
- data/set-of-emails/maildir/dos/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/dos/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/dos/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/dos/sendmail-01.eml +69 -0
- data/set-of-emails/maildir/dos/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/dos/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/dos/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/dos/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/dos/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/dos/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/dos/us-google-01.eml +70 -0
- data/set-of-emails/maildir/dos/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/dos/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/dos/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/dos/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/dos/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/dos/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/dos/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/dos/x1-01.eml +61 -0
- data/set-of-emails/maildir/dos/x2-01.eml +41 -0
- data/set-of-emails/maildir/dos/x3-01.eml +61 -0
- data/set-of-emails/maildir/dos/x4-01.eml +90 -0
- data/set-of-emails/maildir/dos/x5-01.eml +155 -0
- data/set-of-emails/maildir/err/make-test-01.eml +70 -0
- data/set-of-emails/maildir/err/make-test-02.eml +70 -0
- data/set-of-emails/maildir/err/make-test-03.eml +64 -0
- data/set-of-emails/maildir/err/make-test-04.eml +64 -0
- data/set-of-emails/maildir/err/make-test-05.eml +66 -0
- data/set-of-emails/maildir/err/make-test-06.eml +118 -0
- data/set-of-emails/maildir/err/make-test-07.eml +26 -0
- data/set-of-emails/maildir/err/make-test-08.eml +67 -0
- data/set-of-emails/maildir/err/make-test-09.eml +55 -0
- data/set-of-emails/maildir/err/make-test-10.eml +69 -0
- data/set-of-emails/maildir/err/make-test-11.eml +64 -0
- data/set-of-emails/maildir/err/make-test-12.eml +66 -0
- data/set-of-emails/maildir/err/make-test-13.eml +67 -0
- data/set-of-emails/maildir/err/make-test-14.eml +66 -0
- data/set-of-emails/maildir/err/make-test-15.eml +70 -0
- data/set-of-emails/maildir/err/make-test-16.eml +68 -0
- data/set-of-emails/maildir/err/make-test-17.eml +68 -0
- data/set-of-emails/maildir/err/make-test-18.eml +68 -0
- data/set-of-emails/maildir/err/make-test-19.eml +69 -0
- data/set-of-emails/maildir/err/make-test-20.eml +67 -0
- data/set-of-emails/maildir/err/make-test-21.eml +69 -0
- data/set-of-emails/maildir/err/make-test-22.eml +66 -0
- data/set-of-emails/maildir/err/make-test-23.eml +70 -0
- data/set-of-emails/maildir/err/make-test-24.eml +69 -0
- data/set-of-emails/maildir/err/make-test-25.eml +67 -0
- data/set-of-emails/maildir/err/make-test-26.eml +69 -0
- data/set-of-emails/maildir/err/make-test-27.eml +69 -0
- data/set-of-emails/maildir/err/make-test-28.eml +66 -0
- data/set-of-emails/maildir/err/make-test-29.eml +68 -0
- data/set-of-emails/maildir/err/make-test-30.eml +68 -0
- data/set-of-emails/maildir/err/make-test-31.eml +80 -0
- data/set-of-emails/maildir/err/make-test-32.eml +66 -0
- data/set-of-emails/maildir/err/make-test-33.eml +68 -0
- data/set-of-emails/maildir/err/make-test-34.eml +56 -0
- data/set-of-emails/maildir/err/make-test-35.eml +59 -0
- data/set-of-emails/maildir/err/make-test-36.eml +53 -0
- data/set-of-emails/maildir/err/make-test-37.eml +62 -0
- data/set-of-emails/maildir/mac/activehunter-01.eml +1 -2
- data/set-of-emails/maildir/mac/apachejames-01.eml +1 -4
- data/set-of-emails/maildir/mac/arf-01.eml +1 -3
- data/set-of-emails/maildir/mac/courier-01.eml +1 -6
- data/set-of-emails/maildir/mac/de-einsundeins-01.eml +1 -1
- data/set-of-emails/maildir/mac/de-gmx-01.eml +1 -1
- data/set-of-emails/maildir/mac/domino-01.eml +1 -0
- data/set-of-emails/maildir/mac/exchange-01.eml +1 -0
- data/set-of-emails/maildir/mac/exim-01.eml +1 -1
- data/set-of-emails/maildir/mac/google-apps-01.eml +1 -4
- data/set-of-emails/maildir/mac/imailserver-01.eml +1 -0
- data/set-of-emails/maildir/mac/interscanmss-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-biglobe-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-ezweb-01.eml +1 -1
- data/set-of-emails/maildir/mac/jp-kddi-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailfoundry-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailmarshalsmtp-01.eml +1 -2
- data/set-of-emails/maildir/mac/mcafee-01.eml +1 -4
- data/set-of-emails/maildir/mac/messagingserver-01.eml +1 -4
- data/set-of-emails/maildir/mac/mfilter-01.eml +1 -3
- data/set-of-emails/maildir/mac/mxlogic-01.eml +1 -1
- data/set-of-emails/maildir/mac/notes-01.eml +1 -2
- data/set-of-emails/maildir/mac/opensmtpd-01.eml +1 -0
- data/set-of-emails/maildir/mac/postfix-01.eml +1 -3
- data/set-of-emails/maildir/mac/qmail-01.eml +1 -1
- data/set-of-emails/maildir/mac/rfc3464-01.eml +1 -4
- data/set-of-emails/maildir/mac/rfc3834-01.eml +1 -0
- data/set-of-emails/maildir/mac/ru-mailru-01.eml +1 -1
- data/set-of-emails/maildir/mac/ru-yandex-01.eml +1 -4
- data/set-of-emails/maildir/mac/sendmail-01.eml +1 -4
- data/set-of-emails/maildir/mac/surfcontrol-01.eml +1 -5
- data/set-of-emails/maildir/mac/uk-messagelabs-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-amazonses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-aol-01.eml +1 -15
- data/set-of-emails/maildir/mac/us-bigfoot-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-facebook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-google-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-outlook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-receivingses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-sendgrid-01.eml +1 -3
- data/set-of-emails/maildir/mac/us-verizon-01.eml +1 -2
- data/set-of-emails/maildir/mac/us-yahoo-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-zoho-01.eml +1 -2
- data/set-of-emails/maildir/mac/v5sendmail-01.eml +1 -0
- data/set-of-emails/maildir/mac/x1-01.eml +1 -4
- data/set-of-emails/maildir/mac/x2-01.eml +1 -1
- data/set-of-emails/maildir/mac/x3-01.eml +1 -3
- data/set-of-emails/maildir/mac/x4-01.eml +1 -2
- data/set-of-emails/maildir/mac/x5-01.eml +1 -8
- data/set-of-emails/maildir/not/is-not-bounce-01.eml +25 -0
- data/set-of-emails/to-be-debugged-because/reason-is-onhold/onhold-0001.eml +85 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0002.eml +27 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0003.eml +78 -0
- data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml +25 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml +79 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml +72 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml +68 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/no-message-id-from-pr-150.eml +75 -0
- data/set-of-emails/to-be-parsed-for-test/README.md +20 -0
- data/sisimai-java.gemspec +29 -0
- data/sisimai.gemspec +28 -0
- metadata +680 -0
@@ -0,0 +1,51 @@
|
|
1
|
+
Return-Path:
|
2
|
+
Received: from mout-bounce.gmx.com ([74.208.4.221]) by mx-ha.gmx.net (mxgmxus003) with ESMTPS (Nemesis) id 0MFLpC-1XhfTV3T3U-00EPTp for <shironeko@mail.example.com>; Wed, 03 Dec 2014 02:33:09 +0100
|
3
|
+
Received: from mda by mogmxus001.server.lan id 0MMkLB-1Xo1OM22D1-008ahB Wed, 03 Dec 2014 02:33:09 +0100
|
4
|
+
Date: Wed, 03 Dec 2014 02:33:09 +0100
|
5
|
+
From: MAILER-DAEMON@mail.gmx.com
|
6
|
+
To: shironeko@mail.example.com
|
7
|
+
Subject: Mail delivery failed: returning message to sender
|
8
|
+
MIME-Version: 1.0
|
9
|
+
Content-Type: text/plain; charset=utf-8
|
10
|
+
Content-Transfer-Encoding: 8bit
|
11
|
+
X-UI-Out-Filterresults: unknown:0;
|
12
|
+
Envelope-To: <shironeko@mail.example.com>
|
13
|
+
X-GMX-Antispam: 0 (Mail was not recognized as spam); Detail=V3;
|
14
|
+
X-GMX-Antivirus: 0 (no virus found)
|
15
|
+
X-UI-Filterresults: notjunk:1;V01:K0:SEq/6FZ314M=:PCcjbEeCVosEJfTJdTz7ed8OvC 0wysYmqfpwDJaTl6pb+2dYZHmClSKnKloOd0w2ZQ32UObEVJ63UGIp5XVoj6m1HCAFJ/2rfzS GlyyqxIQTEqf6IMaNTJtMRampW3N4Wuic58pURol+2GLiRePGTySD/4D0OBzBGqrcWIf8Os6V jxlPqaAAkWRMkZFPiCNpTrryLHJR42L5Bj4gdbQOdWej4r/k7dfd7gDAlqV14EM8Vqe0FIXXb P4Q1A5LeJjlYndxlTx44wQW+rzH85/iv42nYMISZeu4T5P0etE99615e0o49JswWYC0BGLFWT fsBo3MWjiMkkLpLASATFvw0gAr3Zs3GrbGIogeXYOcA5o/U0j3jQvQrjietUQg7AyZlR9pPOY tbwECh048QDaEyFX2JIJPXfyJqLcO0kRbAVnaKpeVrcj9Kr4Das4KNA37AO4ceTwDjfRKBayb 9oPwa36HtiPnLXQHT+TRhMWwmtd5D/QACCq6Z79Y9Z6w7T8Zum/GGqx+PWFx75zG3aih9jCnc fv3tXCZj+mo23lqTlZzYRc1bABtL7hMHWeo4f+s5oU4lyRh9VMmA6hUJHQh0r20vMkpJaiV+x U9FBki0x8YjhfxuUyfgsIpW0sqjv7YYjaz8v6an+7yo3meWmyFJHwl1fp1K2fgSf4XqvuRcOB P6s4k8Q820giHXBZZdk2j3IMy1OUwgzsQS4Pz66ckpvddT6ic7PHQFiC+bFRCX5g50d7dqjcN brdykPwa0XYbytPPVNX2r/Guiql1vcXYV3IIf1he23Ymj+Lb1H5BAr3RBF4OD1yV0H+c68Ow4 58VngMzIfhwq00gC5B5dqbXoA2AygjoEpLLJIPTWiaEjwoeiZ1UP7TcQR4JGy4oNXgeKbUsI7 r1P/Fv9L+1MDs1NQEqR/GfDjVZwQqbepajrNc/uNUnA8i47TSjuWbRNj9T7nP5TYZ7+txNvuu KvLcDDK7LHPAJb2Oqd2h5EEwvi6gQPl86B08IudeHMjIB06FTzvwNDwL8Yj9l695UcPugTtxN hdcGJUVmnA+sJ8eMazk+/fo51FsZYCZkdyHoxPaKW6J5unew7okyHp7kzIMOB8XDHFh9gwcRf 3QiSaNaIIuY13PgaL/71PykmDj4Y9DFoncuOkl3t8U8/SJqaxmUaw==
|
16
|
+
|
17
|
+
This message was created automatically by mail delivery software.
|
18
|
+
|
19
|
+
A message that you sent could not be delivered to one or more of
|
20
|
+
its recipients. This is a permanent error. The following address
|
21
|
+
failed:
|
22
|
+
|
23
|
+
<kijitora@6jo.example.co.jp>
|
24
|
+
|
25
|
+
Reason:
|
26
|
+
delivery retry timeout exceeded
|
27
|
+
|
28
|
+
|
29
|
+
--- The header of the original message is following. ---
|
30
|
+
|
31
|
+
Received: from [192.0.2.135] by 3capp-mailcom-lxa02.server.lan (via
|
32
|
+
HTTP); Sat, 29 Nov 2014 00:33:08 +0100
|
33
|
+
MIME-Version: 1.0
|
34
|
+
Message-ID: <trinity-8bc3e11d-b17c-4641-8692-498e8a19f323-1417217587540@3capp-mailcom-lxa02>
|
35
|
+
From: Shironeko <shironeko@mail.example.com>
|
36
|
+
To: kijitora@6jo.example.co.jp
|
37
|
+
Subject: Nyaaaaaan
|
38
|
+
Content-Type: text/plain; charset=UTF-8
|
39
|
+
Date: Sat, 29 Nov 2014 00:33:08 +0100
|
40
|
+
Importance: normal
|
41
|
+
Sensitivity: Normal
|
42
|
+
X-Priority: 3
|
43
|
+
X-Provags-ID: V03:K0:lTW0uYfQ01/oV7U9YeY3uZ8Mdl+M6upWa9+5N7BJ/Tk
|
44
|
+
mwx4XTUY+3Hm+d61krDH39RUg0aH22cFalupDFIhobwsHkDgiY
|
45
|
+
5haFp3HwhDoQFriHIzS+mErRUsz+frxmQQbarnlKm+qYVMLKaF
|
46
|
+
BDTko8TNWTpYcmjgr4TRo+oU4CEOuBjKoWb0EdsGNM5s4f6waK
|
47
|
+
s1SheBPjncXCymJImjwriOfL7BKJiwZvgOTaokSKBPfSJJLwxH
|
48
|
+
jXJmVIMv8gtW4MGjWEMtrqVN2SXwlfbMHhUOdgOgMjhYycrKNU
|
49
|
+
wwg4c/w6KsTfkG0Ztl/O2Aqzz0f
|
50
|
+
|
51
|
+
Nyaaan
|
@@ -0,0 +1,33 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@mx.example.com>
|
2
|
+
Received: from mta52.example.jp (mta52.example.jp [192.0.2.89])
|
3
|
+
by mx.example.com (8.14.1/8.12.11) with ESMTP id o000000000
|
4
|
+
for <shironeko@mx.example.com>; Tue, 29 Apr 2010 10:45:04 -0700
|
5
|
+
Received: from mta52.example.jp (MTAXYZ [127.0.0.1])
|
6
|
+
by mx0.example.jp (localhost) with ESMTP id 0000000000
|
7
|
+
for <shironeko@mx.example.com>; Tue, 29 Apr 2010 12:34:45 +0900 (JST)
|
8
|
+
Received: from x.mail.example.jp (x.mail.example.jp [192.0.2.25])
|
9
|
+
by mta52.example.jp (localhost) with ESMTP id 8888888888
|
10
|
+
for <shironeko@mx.example.com>; Tue, 29 Apr 2010 12:34:45 +0900 (JST)
|
11
|
+
Date: Tue, 29 Apr 2010 10:54:01 -0700
|
12
|
+
MIME-Version: 1.0
|
13
|
+
From: Postmaster@example.jp
|
14
|
+
To: Sender Address <shironeko@example.com>
|
15
|
+
Subject: DELIVERY FAILURE: User Kijitoranyan (kijitora@example.jp) not listed in
|
16
|
+
Domino Directory
|
17
|
+
X-OriginalArrivalTime: 29 Apr 2010 19:02:59.0038 (UTC) FILETIME=[00000000:00000000]
|
18
|
+
Message-ID: <0000000000.000000000-000000000.00000000-00000000.00000000@example.com>
|
19
|
+
Content-Type: Text/Plain
|
20
|
+
Content-Transfer-Encoding: 8bit
|
21
|
+
|
22
|
+
Your message
|
23
|
+
|
24
|
+
Subject: Test Bounce
|
25
|
+
|
26
|
+
was not delivered to:
|
27
|
+
|
28
|
+
kijitora@example.jp
|
29
|
+
|
30
|
+
because:
|
31
|
+
|
32
|
+
User some.name (kijitora@example.jp) not listed in Domino Directory
|
33
|
+
|
@@ -0,0 +1,83 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@mail9.example.ne.jp>
|
2
|
+
Received: from relay.example.net (gw.example.net [192.0.2.1]) by
|
3
|
+
mail9.example.ne.jp with ESMTP id 00000000000000 for <kijitora@example.jp>; Thu, 8 Jul 2012 00:00:00 +0900 (JST)
|
4
|
+
Received: from mx0.smtp.example.net (mx0.in.example.net [192.0.2.4])
|
5
|
+
by relay03.in.example.net (Postfix) with ESMTP id 00000000000
|
6
|
+
for <kijitora@example.jp>; Thu, 8 Jul 2012 00:00:00 +0900 (JST)
|
7
|
+
Received: from mail2.example.co.jp (mail2.example.co.jp [192.0.2.127])
|
8
|
+
by mx0.smtp.example.net (Postfix) with ESMTP id 00000000000
|
9
|
+
for <kijitora@example.org>; Thu, 8 Jul 2012 00:00:00 +0900 (JST)
|
10
|
+
Received: from mail2.example.co.jp (localhost [127.0.0.1])
|
11
|
+
by localhost.example.co.jp (Postfix) with ESMTP id 000000000
|
12
|
+
for <kijitora@example.org>; Thu, 8 Jul 2012 00:00:00 +0900 (JST)
|
13
|
+
Received: from mailgw.example.co.jp (mx [192.0.2.98])
|
14
|
+
by mail2.example.co.jp (Postfix) with ESMTP id 000000000
|
15
|
+
for <kijitora@example.org>; Thu, 8 Jul 2012 00:00:00 +0900 (JST)
|
16
|
+
From: Postmaster@example.co.jp
|
17
|
+
To: "Neko" <kijitora@example.org>
|
18
|
+
Subject: DELIVERY FAILURE:
|
19
|
+
ユーザー Neko (kijitora@example.co.jp) は Domino ディレクトリには見つかりません。
|
20
|
+
Date: Thu, 08 Jul 2012 00:03:54 +0800
|
21
|
+
MIME-Version: 1.0
|
22
|
+
X-Priority: 3 (Normal)
|
23
|
+
X-MSMail-Priority: Normal
|
24
|
+
X-Mailer: Microsoft Outlook Express 6.00.2900.3028
|
25
|
+
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3028
|
26
|
+
Message-ID: <0000000000.00000000-0000000000.00000000-00000000.00000000@example.co.jp>
|
27
|
+
Content-Type: multipart/report; report-type=delivery-status; boundary="==0000000000000000000000"
|
28
|
+
|
29
|
+
--==0000000000000000000000
|
30
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
31
|
+
Content-Transfer-Encoding: 7bit
|
32
|
+
|
33
|
+
Your message
|
34
|
+
|
35
|
+
Subject: Nyaaaaaaaaan
|
36
|
+
|
37
|
+
was not delivered to:
|
38
|
+
|
39
|
+
kijitora@example.co.jp
|
40
|
+
|
41
|
+
because:
|
42
|
+
|
43
|
+
ユーザー Neko (kijitora@example.co.jp) は Domino ディレクトリには見つかりません。
|
44
|
+
|
45
|
+
|
46
|
+
--==0000000000000000000000
|
47
|
+
Content-Type: message/delivery-status
|
48
|
+
|
49
|
+
Reporting-MTA: dns;mx.example.co.jp
|
50
|
+
|
51
|
+
Final-Recipient: rfc822;kijitora@example.co.jp
|
52
|
+
Action: failed
|
53
|
+
Status: 5.0.0
|
54
|
+
Diagnostic-Code: X-Notes; ユーザー ka (kijitora@example.co.jp) は Domino ディレクトリ
|
55
|
+
には見つかりません。
|
56
|
+
|
57
|
+
--==0000000000000000000000
|
58
|
+
Content-Type: message/rfc822
|
59
|
+
|
60
|
+
Received: from mail2.example.co.jp ([192.0.2.8])
|
61
|
+
by mx.example.co.jp (Lotus Domino Release 7.0.1)
|
62
|
+
with ESMTP id 2012070800000000-000000 ;
|
63
|
+
Thu, 8 Jul 2012 00:00:00 +0900
|
64
|
+
Received: from mail2.example.co.jp (localhost [127.0.0.1])
|
65
|
+
by localhost.example.co.jp (Postfix) with ESMTP id 000000000
|
66
|
+
for <kijitora@example.co.jp>; Thu, 8 Jul 2012 00:00:00 +0900 (JST)
|
67
|
+
Received: from mx.g1.example.com (unknown [192.0.2.2])
|
68
|
+
by mail2.example.co.jp (Postfix) with ESMTP id 000000000
|
69
|
+
for <kijitora@example.co.jp>; Thu, 8 Jul 2012 00:00:00 +0900 (JST)
|
70
|
+
Received: from nyanko ([192.0.2.13])
|
71
|
+
by mx.g1.example.com (8.13.4/8.13.4) with SMTP id 0000000000000000000000000
|
72
|
+
for <kijitora@example.co.jp>; Sat, 07 Jul 2012 00:00:00 -0300 (CDT)
|
73
|
+
(envelope-from kijitora@example.org)
|
74
|
+
To: <kijitora@example.co.jp>
|
75
|
+
Subject: Nyaaaaaaaaaaan
|
76
|
+
Date: Thu, 08 Jul 2012 00:00:00 +0800
|
77
|
+
MIME-Version: 1.0
|
78
|
+
Message-ID: <0000000000.00000000-0000000000.00000000-00000000.00000000@example.co.jp>
|
79
|
+
Content-Type: text/plain;
|
80
|
+
From: "Neko" <kijitora@example.org>
|
81
|
+
|
82
|
+
Nyaa
|
83
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from gw.example.com ([192.0.2.23])
|
3
|
+
by gw2.ext.example.net (Post.Office MTA v0.0.0
|
4
|
+
release (P0000-000x) ID# 0-00000000000000000) with ESMTP
|
5
|
+
id 0000001 for <kijitora@example.jp>;
|
6
|
+
Thu, 29 Apr 2010 00:00:00 -0000
|
7
|
+
Received: by gw with Internet Mail Service (5.5.1960.3)
|
8
|
+
id <00000000>; Thu, 29 Apr 2010 00:00:00 -0000
|
9
|
+
Message-ID: <00000000000000000000000000000000000000@gw.example.com>
|
10
|
+
From: System Administrator <postmaster@example.jp>
|
11
|
+
To: shironeko@example.com
|
12
|
+
Subject: Undeliverable: Kijitora Cat
|
13
|
+
Date: Thu, 29 Apr 2010 00:00:00 -0000
|
14
|
+
X-MS-TNEF-Correlator: <00000000000000000000000000000000000000@example.com>
|
15
|
+
X-Mailer: Internet Mail Service (5.5.1960.3)
|
16
|
+
X-MS-Embedded-Report:
|
17
|
+
|
18
|
+
Your message
|
19
|
+
|
20
|
+
To: shironeko@example.com
|
21
|
+
Subject: Kijitora Cat
|
22
|
+
Sent: Thu, 29 Apr 2010 00:00:00 -0000
|
23
|
+
|
24
|
+
did not reach the following recipient(s):
|
25
|
+
|
26
|
+
kijitora@example.jp on Thu, 29 Apr 2010 00:00:00 -0000
|
27
|
+
The recipient name is not recognized
|
28
|
+
MSEXCH:IMS:NNN:KIJITORACAT:NEKO 0 (000C05A6)
|
29
|
+
Unknown Recipient
|
30
|
+
|
31
|
+
|
@@ -0,0 +1,67 @@
|
|
1
|
+
From MAILER-DAEMON@example.jp Thu Apr 29 16:51:04 2007
|
2
|
+
Return-Path: <MAILER-DAEMON@example.jp>
|
3
|
+
Received: from mx.example.jp (mx0.example.jp [192.0.2.13])
|
4
|
+
by example.jp (8.13.1/8.13.1) with SMTP id k228JLDr007156
|
5
|
+
for <shironeko@example.jp>; Thu, 29 Apr 2007 16:51:59 -0500
|
6
|
+
Delivered-To: neko@example.jp
|
7
|
+
Received: from host (HELO exchange.example.co.jp) (192.0.2.57)
|
8
|
+
by 0 with SMTP; 29 Apr 2007 23:19:00 -0000
|
9
|
+
Received: by xs.example.co.jp with Internet Mail Service (5.5.2657.72)
|
10
|
+
id <1WAHSMCA>; Thu, 29 Apr 2007 16:51:57 -0500
|
11
|
+
Message-ID: <0000000000000000000000000000000000000000@xs.example.co.jp>
|
12
|
+
From: postmaster@example.co.jp
|
13
|
+
To: shironeko@example.jp
|
14
|
+
Subject: Undeliverable: email bounce
|
15
|
+
Date: Thu, 29 Apr 2007 16:51:56 -0500
|
16
|
+
MIME-Version: 1.0
|
17
|
+
X-Mailer: Internet Mail Service (5.5.2657.72)
|
18
|
+
X-MS-Embedded-Report:
|
19
|
+
Content-Type: multipart/mixed;
|
20
|
+
boundary="----_=_NextPart_000_11111111.11111111"
|
21
|
+
Content-Length: 1
|
22
|
+
Status: RO
|
23
|
+
X-UID: 1
|
24
|
+
|
25
|
+
------_=_NextPart_000_11111111.11111111
|
26
|
+
Content-Type: text/plain;
|
27
|
+
charset="iso-8859-1"
|
28
|
+
|
29
|
+
Your message
|
30
|
+
|
31
|
+
To: shironeko@example.jp
|
32
|
+
Subject: email bounce
|
33
|
+
Sent: Thu, 29 Apr 2007 16:51:29 -0500
|
34
|
+
|
35
|
+
did not reach the following recipient(s):
|
36
|
+
|
37
|
+
kijitora@example.co.jp on Thu, 29 Apr 2007 16:51:51 -0500
|
38
|
+
The recipient name is not recognized
|
39
|
+
The MTS-ID of the original message is: c=jp;a= ;p=neko
|
40
|
+
;l=EXCHANGE000000000000000000
|
41
|
+
MSEXCH:IMS:KIJITORA CAT:EXAMPLE:EXCHANGE 0 (000C05A6) Unknown Recipient
|
42
|
+
mikeneko@example.co.jp on Thu, 29 Apr 2007 16:51:51 -0500
|
43
|
+
The recipient name is not recognized
|
44
|
+
The MTS-ID of the original message is: c=jp;a= ;p=neko
|
45
|
+
;l=EXCHANGE000000000000000000
|
46
|
+
MSEXCH:IMS:KIJITORA CAT:EXAMPLE:EXCHANGE 0 (000C05A6) Unknown Recipient
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
------_=_NextPart_000_11111111.11111111
|
51
|
+
Content-Type: message/rfc822
|
52
|
+
|
53
|
+
Message-ID: <000000000000000.0000000@example.jp>
|
54
|
+
From: shironeko@example.jp
|
55
|
+
To: kijitora@example.co.jp
|
56
|
+
Subject: email bounce
|
57
|
+
Date: Thu, 29 Apr 2007 16:51:29 -0500
|
58
|
+
MIME-Version: 1.0
|
59
|
+
X-Mailer: Internet Mail Service (5.5.2657.72)
|
60
|
+
X-MS-Embedded-Report:
|
61
|
+
Content-Type: text/plain;
|
62
|
+
|
63
|
+
Nyaaaaaaaaaaaaan
|
64
|
+
|
65
|
+
------_=_NextPart_000_11111111.11111111--
|
66
|
+
|
67
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: shironeko@mx.example.jp
|
3
|
+
Delivered-To: shironeko@mx.example.jp
|
4
|
+
Received: from mailgw0.example.net (unknown [192.0.2.98])
|
5
|
+
by mx.mx.example.jp (Postfix) with ESMTP id 0000000000
|
6
|
+
for <shironeko@mx.example.jp>; Thu, 29 Apr 2009 23:45:42 +0900 (JST)
|
7
|
+
Received: by mailgw0.example.net with Internet Mail Service (5.5.2657.72)
|
8
|
+
id <XXXXXXXX>; Thu, 29 Apr 2009 23:00:00 -0400
|
9
|
+
Message-ID: <0000000000000000000000000000000000000000@mailgw0.example.net>
|
10
|
+
From: System Administrator <postmaster@example.net>
|
11
|
+
To: shironeko@mx.example.jp
|
12
|
+
Subject: E
|
13
|
+
Date: Thu, 29 Apr 2009 23:00:00 -0400
|
14
|
+
MIME-Version: 1.0
|
15
|
+
Content-Type: multipart/mixed;
|
16
|
+
boundary="----_=_NextPart_000_0000ffff"
|
17
|
+
|
18
|
+
This message is in MIME format. Since your mail reader does not understand
|
19
|
+
this format, some or all of this message may not be legible.
|
20
|
+
|
21
|
+
------_=_NextPart_000_0000ffff
|
22
|
+
Content-Type: text/plain;
|
23
|
+
charset="ISO-2022-JP"
|
24
|
+
|
25
|
+
Your message
|
26
|
+
|
27
|
+
To: kijitora@example.net
|
28
|
+
Subject: Message
|
29
|
+
Sent: Thu, 29 Apr 2009 23:00:00 -0400
|
30
|
+
|
31
|
+
did not reach the following recipient(s):
|
32
|
+
|
33
|
+
kijitora@example.jp on Thu, 29 Apr 2010 00:00:00 -0000
|
34
|
+
The recipient name is not recognized
|
35
|
+
MSEXCH:IMS:NNN:KIJITORACAT:NEKO 0 (000C05A6)
|
36
|
+
Unknown Recipient
|
37
|
+
|
38
|
+
|
39
|
+
------_=_NextPart_000_0000ffff
|
40
|
+
Content-Type: message/rfc822
|
41
|
+
|
42
|
+
Message-ID: <00000000000.ffffffffffff.ff@example.net>
|
43
|
+
From: Neko <shironeko@mx.example.jp>
|
44
|
+
Reply-To: postmaster@example.jp
|
45
|
+
To: kijitora@example.net
|
46
|
+
Subject: =?UTF-8?B?IHwg5rGa44KM44Gm54Gw54yr44Gr44Gq44Gj44Gm44KL44GT44Go44GM44GC?=
|
47
|
+
=?UTF-8?B?44KL55m954yr?=
|
48
|
+
Date: Thu, 29 Apr 2009 00:00:00 -0400
|
49
|
+
MIME-Version: 1.0
|
50
|
+
Content-Type: text/plain; charset="ISO-2022-JP"
|
51
|
+
|
52
|
+
message
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mx8.example.com ([192.0.2.87])
|
3
|
+
by relay9.example.ne.jp (Post.Office MTA v3.1.2 release (PO203-101c)
|
4
|
+
ID# 0-00000000000000000) with SMTP id 00000000for <shironeko@example.jp>;
|
5
|
+
Thu, 29 Apr 2001 23:34:45 +0900
|
6
|
+
Received: by mx8.example.com with SMTP
|
7
|
+
(Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63)
|
8
|
+
id <00000000.00000000@mx8.example.com>; Thu, 29 Apr 2001 23:34:45 +0900
|
9
|
+
Message-ID: <00000000.00000000@mx8.example.com>
|
10
|
+
From: System Administrator <postmaster@example.com>
|
11
|
+
To: <shironeko@example.jp>
|
12
|
+
Subject: Undeliverable: Nyaan
|
13
|
+
Date: Thu, 29 Apr 2001 23:34:45 +0900
|
14
|
+
X-Mailer: Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63
|
15
|
+
|
16
|
+
|
17
|
+
Your message did not reach some or all of the intended recipients.
|
18
|
+
|
19
|
+
To: shironeko@example.jp
|
20
|
+
Subject: Nyaan
|
21
|
+
Sent: 4/29/01 11:34:45 PM
|
22
|
+
|
23
|
+
The following recipient(s) could not be reached:
|
24
|
+
|
25
|
+
kijitora@example.com on 4/29/01 11:34:45 PM
|
26
|
+
Recipient Not Found
|
27
|
+
MSEXCH:IMC:NEKO:KIJITORA:CAT
|
28
|
+
|
@@ -0,0 +1,56 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mx34.example.com ([192.0.2.134]) by mx4.example.com
|
3
|
+
with Microsoft SMTPSVC(5.5.1877.687.68); Thu, 9 May 2005 23:34:45 +0900
|
4
|
+
Received: by relay1.mxr.example.net with Internet Mail Service (5.5.2652.78)
|
5
|
+
id 00000000; Thu, 9 May 2005 23:34:45 +0900
|
6
|
+
Message-ID: <00000000000000000000000000000000@neko.cat.example.net>
|
7
|
+
From: System Administrator <postmaster@example.com>
|
8
|
+
To: shironeko@example.org
|
9
|
+
Subject: Undeliverable: Nyaan
|
10
|
+
Date: Thu, 9 May 2005 23:34:45 +0900
|
11
|
+
MIME-Version: 1.0
|
12
|
+
X-Mailer: Internet Mail Service (5.5.2652.78)
|
13
|
+
X-MS-Embedded-Report:
|
14
|
+
Content-Type: multipart/mixed;
|
15
|
+
boundary="----_=_NextPart_000_00000FFFF.00000000"
|
16
|
+
|
17
|
+
This message is in MIME format. Since your mail reader does not understand
|
18
|
+
this format, some or all of this message may not be legible.
|
19
|
+
|
20
|
+
------_=_NextPart_000_00000FFFF.00000000
|
21
|
+
Content-Type: text/plain;
|
22
|
+
charset="iso-8859-1"
|
23
|
+
|
24
|
+
Your message
|
25
|
+
|
26
|
+
To: kijitora@example.com
|
27
|
+
Subject: Nyaan
|
28
|
+
Sent: Thu, 9 May 2005 23:34:45 +0900
|
29
|
+
|
30
|
+
did not reach the following recipient(s):
|
31
|
+
|
32
|
+
kijitora@example.com on Thu, 9 May 2005 23:34:45 +0900
|
33
|
+
The recipient name is not recognized
|
34
|
+
The MTS-ID of the original message is: c=jp;a=
|
35
|
+
;p=example;l=STRAYCAT-NNNNNNNNNNNN
|
36
|
+
MSEXCH:IMS:NEKO:CAT:STRAYCAT 0 (000C05A6) Unknown Recipient
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
------_=_NextPart_000_00000FFFF.00000000
|
41
|
+
Content-Type: message/rfc822
|
42
|
+
|
43
|
+
To: kijitora@example.com
|
44
|
+
Subject: Nyaan
|
45
|
+
Date: Thu, 9 May 2005 23:34:45 +0900
|
46
|
+
Message-ID: <0000000000000000000000000000000@example.com>
|
47
|
+
MIME-Version: 1.0
|
48
|
+
X-Mailer: Internet Mail Service (5.5.2652.78)
|
49
|
+
X-MS-Embedded-Report:
|
50
|
+
Content-Type: text/plain;
|
51
|
+
charset="iso-8859-1"
|
52
|
+
From: Shironeko <shironeko@example.org>
|
53
|
+
|
54
|
+
Nyaan
|
55
|
+
|
56
|
+
------_=_NextPart_000_00000FFFF.00000000--
|
@@ -0,0 +1,151 @@
|
|
1
|
+
From VM Fri Jul 20 14:14:47 2001
|
2
|
+
X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil]
|
3
|
+
[nil "Friday" "20" "July" "2001" "11:09:00" "-0700" "System Administrator" "postmaster@mainex1.asu.edu" nil "93" "Undeliverable: [Mailman-Users] [ alexandria-Bugs-442987 ] mailman bug" "^From:" "mailman-users-admin@python.org" "mailman-users-admin@python.org" "7" 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 2193BD35F0
|
9
|
+
for <barry@wooz.org>; Fri, 20 Jul 2001 14:11:42 -0400 (EDT)
|
10
|
+
Received: from <mailman-users-admin@python.org>
|
11
|
+
by digicool.com (CommuniGate Pro RULES 3.4)
|
12
|
+
with RULES id 2267275; Fri, 20 Jul 2001 14:11:10 -0400
|
13
|
+
Received: from ns2.digicool.com ([63.100.190.2] verified)
|
14
|
+
by digicool.com (CommuniGate Pro SMTP 3.4)
|
15
|
+
with ESMTP id 2267274 for barry@mail.digicool.com; Fri, 20 Jul 2001 14:11:10 -0400
|
16
|
+
Received: from mail.python.org (mail.python.org [63.102.49.29])
|
17
|
+
by ns2.digicool.com (8.9.3/8.9.3) with ESMTP id OAA18755
|
18
|
+
for <barry@digicool.com>; Fri, 20 Jul 2001 14:11:40 -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 15NekX-00065F-00; Fri, 20 Jul 2001 14:11:41 -0400
|
22
|
+
Received: from [129.219.110.73] (helo=post2.inre.asu.edu)
|
23
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
24
|
+
id 15Nejg-0005zp-00
|
25
|
+
for mailman-users-admin@python.org; Fri, 20 Jul 2001 14:10:48 -0400
|
26
|
+
Received: from conversion.post2.inre.asu.edu by asu.edu (PMDF V6.0-24 #47347)
|
27
|
+
id <0GGS00E01AF3DP@asu.edu> for mailman-users-admin@python.org; Fri,
|
28
|
+
20 Jul 2001 11:09:03 -0700 (MST)
|
29
|
+
Received: from mainex1.asu.edu (mainex1.asu.edu [129.219.10.200])
|
30
|
+
by asu.edu (PMDF V6.0-24 #47347) with ESMTP id <0GGS00E5WAF396@asu.edu> for
|
31
|
+
mailman-users-admin@python.org; Fri, 20 Jul 2001 11:09:03 -0700 (MST)
|
32
|
+
Received: by mainex1.asu.edu with Internet Mail Service (5.5.2653.19)
|
33
|
+
id <3MQDQNK7>; Fri, 20 Jul 2001 11:09:02 -0700
|
34
|
+
Message-id: <803148826976D411ADA600B0D03D6E2806F867BF@mainex1.asu.edu>
|
35
|
+
MIME-version: 1.0
|
36
|
+
Content-type: multipart/mixed; boundary="Boundary_(ID_T1d1xFzw5I4c8zjm3AkzoA)"
|
37
|
+
Precedence: bulk
|
38
|
+
List-Help: <mailto:mailman-users-request@python.org?subject=help>
|
39
|
+
List-Post: <mailto:mailman-users@python.org>
|
40
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
41
|
+
<mailto:mailman-users-request@python.org?subject=subscribe>
|
42
|
+
List-Id: Mailman mailing list management users <mailman-users.python.org>
|
43
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
44
|
+
<mailto:mailman-users-request@python.org?subject=unsubscribe>
|
45
|
+
List-Archive: <http://mail.python.org/pipermail/mailman-users/>
|
46
|
+
From: System Administrator <postmaster@mainex1.asu.edu>
|
47
|
+
Sender: mailman-users-owner@python.org
|
48
|
+
To: mailman-users-admin@python.org
|
49
|
+
Subject: Undeliverable: [Mailman-Users] [ alexandria-Bugs-442987 ] mailman bug
|
50
|
+
Date: Fri, 20 Jul 2001 11:09:00 -0700
|
51
|
+
X-Autogenerated: Mirror
|
52
|
+
X-Mirrored-by: <mailman-users-admin@python.org>
|
53
|
+
X-Mailer: Internet Mail Service (5.5.2653.19)
|
54
|
+
X-MS-Embedded-Report:
|
55
|
+
X-BeenThere: mailman-users@python.org
|
56
|
+
X-Mailman-Version: 2.0.5 (101270)
|
57
|
+
|
58
|
+
This message is in MIME format. Since your mail reader does not understand
|
59
|
+
this format, some or all of this message may not be legible.
|
60
|
+
|
61
|
+
--Boundary_(ID_T1d1xFzw5I4c8zjm3AkzoA)
|
62
|
+
Content-type: text/plain
|
63
|
+
|
64
|
+
Your message
|
65
|
+
|
66
|
+
To: mailman-users@python.org
|
67
|
+
Subject: [Mailman-Users] [ alexandria-Bugs-442987 ] mailman bug
|
68
|
+
Sent: Fri, 20 Jul 2001 08:53:08 -0700
|
69
|
+
|
70
|
+
did not reach the following recipient(s):
|
71
|
+
|
72
|
+
thoff@MAINEX1.ASU.EDU on Fri, 20 Jul 2001 11:08:59 -0700
|
73
|
+
The recipient name is not recognized
|
74
|
+
The MTS-ID of the original message is: c=us;a= ;p=arizona state
|
75
|
+
un;l=MAINEX101072018083MQDQNKX
|
76
|
+
MSEXCH:IMS:Arizona State University:MAIN:MAINEX1 0 (000C05A6) Unknown
|
77
|
+
Recipient
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
--Boundary_(ID_T1d1xFzw5I4c8zjm3AkzoA)
|
82
|
+
Content-type: message/rfc822
|
83
|
+
|
84
|
+
Date: Fri, 20 Jul 2001 08:53:08 -0700
|
85
|
+
From: Marc MERLIN <marc@merlins.org>
|
86
|
+
Subject: [Mailman-Users] [ alexandria-Bugs-442987 ] mailman bug
|
87
|
+
To: mailman-users@python.org
|
88
|
+
Message-id: <20010720085308.H17468@magic.merlins.org>
|
89
|
+
MIME-version: 1.0
|
90
|
+
X-Mailer: Internet Mail Service (5.5.2653.19)
|
91
|
+
Content-type: text/plain
|
92
|
+
X-MS-Embedded-Report:
|
93
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
94
|
+
<mailto:mailman-users-request@python.org?subject=subscribe>
|
95
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/mailman-users>,
|
96
|
+
<mailto:mailman-users-request@python.org?subject=unsubscribe>
|
97
|
+
List-Help: <mailto:mailman-users-request@python.org?subject=help>
|
98
|
+
|
99
|
+
Anyone has a clue about this error?
|
100
|
+
|
101
|
+
----- Forwarded message from noreply@sourceforge.net -----
|
102
|
+
|
103
|
+
To: noreply@sourceforge.net
|
104
|
+
From: noreply@sourceforge.net
|
105
|
+
Subject: [ alexandria-Bugs-442987 ] mailman bug
|
106
|
+
Date: Fri, 20 Jul 2001 07:47:39 -0700
|
107
|
+
|
108
|
+
Initial Comment:
|
109
|
+
-----Forwarded Message-----
|
110
|
+
From: rtfs-project-admin@lists.sourceforge.net
|
111
|
+
To: rtfs-project-admin@lists.sourceforge.net
|
112
|
+
Subject: Unexpected Mailman error
|
113
|
+
|
114
|
+
|
115
|
+
An unexpected Mailman error has occurred in
|
116
|
+
MailCommandHandler.ParseMailCommands(). Here is the
|
117
|
+
traceback:
|
118
|
+
|
119
|
+
Traceback (innermost last):
|
120
|
+
File
|
121
|
+
"/var/local/mailman/Mailman/MailCommandHandler.py",
|
122
|
+
line 221, in ParseMailCommands
|
123
|
+
self.__dispatch[cmd](args, line, msg)
|
124
|
+
File
|
125
|
+
"/var/local/mailman/Mailman/MailCommandHandler.py",
|
126
|
+
line 362, in ProcessSetCmd
|
127
|
+
self.ConfirmUserPassword(sender, args[2])
|
128
|
+
File "/var/local/mailman/Mailman/SecurityManager.py",
|
129
|
+
line 140, in ConfirmUserPassword
|
130
|
+
raise Errors.MMBadUserError
|
131
|
+
MMBadUserError
|
132
|
+
|
133
|
+
----------------------------------------------------------------------
|
134
|
+
|
135
|
+
----- End forwarded message -----
|
136
|
+
|
137
|
+
--
|
138
|
+
Microsoft is to operating systems & security ....
|
139
|
+
.... what McDonalds is to gourmet
|
140
|
+
cooking
|
141
|
+
|
142
|
+
Home page: http://marc.merlins.org/ | Finger marc_f@merlins.org for PGP
|
143
|
+
key
|
144
|
+
|
145
|
+
------------------------------------------------------
|
146
|
+
Mailman-Users maillist - Mailman-Users@python.org
|
147
|
+
http://mail.python.org/mailman/listinfo/mailman-users
|
148
|
+
|
149
|
+
--Boundary_(ID_T1d1xFzw5I4c8zjm3AkzoA)--
|
150
|
+
|
151
|
+
|