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,68 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mx20.example.jp (mx20.example.jp [192.0.2.20])
|
3
|
+
by mx.google.com with ESMTP id fffffffff; Thu, 20 Apr 2011 23:34:45 +0900 (JST)
|
4
|
+
Received: by mx20.example.jp (Postfix) id ffffffff; Thu, 20 Apr 2011 23:34:45 +0900 (JST)
|
5
|
+
Date: Thu, 20 Apr 2011 23:34:45 +0900 (JST)
|
6
|
+
From: MAILER-DAEMON@mx20.example.jp (Mail Delivery System)
|
7
|
+
Subject: Undelivered Mail Returned to Sender
|
8
|
+
To: shironeko@m0.example.co.jp
|
9
|
+
MIME-Version: 1.0
|
10
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
11
|
+
boundary="fffffff.0000000/mx20.example.jp"
|
12
|
+
Content-Transfer-Encoding: 8bit
|
13
|
+
Message-Id: <20110420233445.ffff@mx20.example.jp>
|
14
|
+
|
15
|
+
This is a MIME-encapsulated message.
|
16
|
+
|
17
|
+
--fffffff.0000000/mx20.example.jp
|
18
|
+
Content-Description: Notification
|
19
|
+
Content-Type: text/plain; charset=us-ascii
|
20
|
+
|
21
|
+
This is the mail system at host mx20.example.jp.
|
22
|
+
|
23
|
+
I'm sorry to have to inform you that your message could not
|
24
|
+
be delivered to one or more recipients. It's attached below.
|
25
|
+
|
26
|
+
For further assistance, please send mail to <postmaster>
|
27
|
+
|
28
|
+
If you do so, please include this problem report. You can
|
29
|
+
delete your own text from the attached returned message.
|
30
|
+
|
31
|
+
The mail system
|
32
|
+
|
33
|
+
<kijitora@example.org>: Name service error for name=example.org
|
34
|
+
type=MX: Malformed or unexpected name server reply
|
35
|
+
|
36
|
+
--fffffff.0000000/mx20.example.jp
|
37
|
+
Content-Description: Delivery report
|
38
|
+
Content-Type: message/delivery-status
|
39
|
+
|
40
|
+
Reporting-MTA: dns; mx20.example.jp
|
41
|
+
X-Postfix-Queue-ID: FFFFFFFFFFFF
|
42
|
+
X-Postfix-Sender: rfc822; shironeko@m0.example.co.jp
|
43
|
+
Arrival-Date: Thu, 20 Apr 2011 23:34:45 +0900 (JST)
|
44
|
+
|
45
|
+
Final-Recipient: rfc822; kijitora@example.org
|
46
|
+
Action: failed
|
47
|
+
Status: 5.4.4
|
48
|
+
Diagnostic-Code: X-Postfix; Name service error for name=example.org
|
49
|
+
type=MX: Malformed or unexpected name server reply
|
50
|
+
|
51
|
+
--fffffff.0000000/mx20.example.jp
|
52
|
+
Content-Description: Undelivered Message
|
53
|
+
Content-Type: message/rfc822
|
54
|
+
Content-Transfer-Encoding: 8bit
|
55
|
+
|
56
|
+
Received: by mx20.example.jp (Postfix, from userid 525)
|
57
|
+
id FFFFFFFFFFFF; Thu, 20 Apr 2011 23:34:45 +0900 (JST)
|
58
|
+
MIME-Version: 1.0
|
59
|
+
Content-Transfer-Encoding: binary
|
60
|
+
Content-Type: text/plain
|
61
|
+
Date: Thu, 20 Apr 2011 23:34:45 +0900
|
62
|
+
Subject: Nyaaan
|
63
|
+
From: Shironeko <shironeko@example.co.jp>
|
64
|
+
To: kijitora@example.org
|
65
|
+
Message-Id: <20110420233445.EEEEEEEEEEEE@mx20.example.jp>
|
66
|
+
|
67
|
+
Nyaaaan
|
68
|
+
|
@@ -0,0 +1,121 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: donotreply@testsender.com
|
3
|
+
Delivered-To: donotreply@testsender.com
|
4
|
+
Received: by testhost.com (Postfix)
|
5
|
+
id 5AADE70970; Mon, 9 Nov 2009 23:26:46 +0000 (UTC)
|
6
|
+
Date: Mon, 9 Nov 2009 23:26:46 +0000 (UTC)
|
7
|
+
From: MAILER-DAEMON@testhost.com (Mail Delivery System)
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
To: donotreply@testsender.com
|
10
|
+
Auto-Submitted: auto-replied
|
11
|
+
MIME-Version: 1.0
|
12
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
13
|
+
boundary="1808A707A6.1257809206/testhost.com"
|
14
|
+
Message-Id: <20091109232646.5AADE70970@testhost.com>
|
15
|
+
|
16
|
+
This is a MIME-encapsulated message.
|
17
|
+
|
18
|
+
--1808A707A6.1257809206/testhost.com
|
19
|
+
Content-Description: Notification
|
20
|
+
Content-Type: text/plain; charset=us-ascii
|
21
|
+
|
22
|
+
This is the mail system at host testhost.com.
|
23
|
+
|
24
|
+
I'm sorry to have to inform you that your message could not
|
25
|
+
be delivered to one or more recipients. It's attached below.
|
26
|
+
|
27
|
+
For further assistance, please send mail to postmaster.
|
28
|
+
|
29
|
+
If you do so, please include this problem report. You can
|
30
|
+
delete your own text from the attached returned message.
|
31
|
+
|
32
|
+
The mail system
|
33
|
+
|
34
|
+
<relay_failed@testreceiver.com>: host testreceiver.com[200.190.180.170] said: 550 5.7.1
|
35
|
+
Unable to relay for relay_failed@testreceiver.com (in reply to RCPT TO command)
|
36
|
+
|
37
|
+
--1808A707A6.1257809206/testhost.com
|
38
|
+
Content-Description: Delivery report
|
39
|
+
Content-Type: message/delivery-status
|
40
|
+
|
41
|
+
Reporting-MTA: dns; testhost.com
|
42
|
+
X-Postfix-Queue-ID: 1808A707A6
|
43
|
+
X-Postfix-Sender: rfc822; donotreply@testsender.com
|
44
|
+
Arrival-Date: Mon, 9 Nov 2009 12:11:13 +0000 (UTC)
|
45
|
+
|
46
|
+
Final-Recipient: rfc822; relay_failed@testreceiver.com
|
47
|
+
Original-Recipient: rfc822;relay_failed@testreceiver.com
|
48
|
+
Action: failed
|
49
|
+
Status: 5.7.1
|
50
|
+
Remote-MTA: dns; testreceiver.com
|
51
|
+
Diagnostic-Code: smtp; 550 5.7.1 Unable to relay for relay_failed@testreceiver.com
|
52
|
+
|
53
|
+
--1808A707A6.1257809206/testhost.com
|
54
|
+
Content-Description: Undelivered Message
|
55
|
+
Content-Type: message/rfc822
|
56
|
+
|
57
|
+
Received: from testsender.com (localhost [127.0.0.1])
|
58
|
+
by testhost.com (Postfix) with ESMTP id 1808A707A6
|
59
|
+
for <relay_failed@testreceiver.com>; Mon, 9 Nov 2009 12:11:13 +0000 (UTC)
|
60
|
+
Date: Mon, 9 Nov 2009 12:11:13 +0000
|
61
|
+
From: "From Person" <donotreply@testsender.com>
|
62
|
+
To: relay_failed@testreceiver.com
|
63
|
+
Message-Id: <4af806e115ecd_7edb..fdbdbfe9c151c8@testhost.com>
|
64
|
+
Subject: 09 Nov, 2009 from From Person
|
65
|
+
Mime-Version: 1.0
|
66
|
+
Content-Type: multipart/alternative;
|
67
|
+
boundary=mimepart_4af806e116507_7edb..fdbdbfe9c1527f
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
--mimepart_4af806e116507_7edb..fdbdbfe9c1527f
|
72
|
+
Content-Type: text/plain; charset=utf-8
|
73
|
+
Content-Transfer-Encoding: Quoted-printable
|
74
|
+
Content-Disposition: inline
|
75
|
+
|
76
|
+
Thank you
|
77
|
+
|
78
|
+
--mimepart_4af806e116507_7edb..fdbdbfe9c1527f
|
79
|
+
Content-Type: text/html; charset=utf-8
|
80
|
+
Content-Transfer-Encoding: Quoted-printable
|
81
|
+
Content-Disposition: inline
|
82
|
+
|
83
|
+
<HTML>
|
84
|
+
|
85
|
+
<head>
|
86
|
+
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dutf-8">=
|
87
|
+
|
88
|
+
<style>
|
89
|
+
<!-- in case incoming feed has no style -->
|
90
|
+
body { background-color: #ffffff; color: #333333; }
|
91
|
+
|
92
|
+
body, p, ol, ul, td {
|
93
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
94
|
+
font-size: 14px;
|
95
|
+
line-height: 18px;
|
96
|
+
}
|
97
|
+
|
98
|
+
pre {
|
99
|
+
background-color: #eeeeee;
|
100
|
+
padding: 10px;
|
101
|
+
font-size: 12px;
|
102
|
+
}
|
103
|
+
|
104
|
+
a { color: #000; }
|
105
|
+
a:visited { color: #666; }
|
106
|
+
a:hover { color: #fff; background-color:#000; }
|
107
|
+
</style>
|
108
|
+
</head>
|
109
|
+
|
110
|
+
<body>
|
111
|
+
<div style=3D"margin-bottom: 10px; background-color: #BB8888; color: #FFF=
|
112
|
+
FFF; border: 1px solid #EECCCC; padding: 5px;">
|
113
|
+
Thank you
|
114
|
+
</div>
|
115
|
+
</body></HTML>
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
--mimepart_4af806e116507_7edb..fdbdbfe9c1527f--
|
120
|
+
|
121
|
+
--1808A707A6.1257809206/testhost.com--
|
@@ -0,0 +1,105 @@
|
|
1
|
+
Return-Path: <thomas.seifert@mysnip.de>
|
2
|
+
Delivered-To: bouncemail@mysnip.de
|
3
|
+
Received: from localhost (mail1.mysnip.de [127.0.0.1])
|
4
|
+
by mail1.mysnip.de (Postfix) with ESMTP id EEF3514015E56
|
5
|
+
for <bouncemail@mysnip.de>; Wed, 27 Jun 2007 23:31:24 +0200 (CEST)
|
6
|
+
X-Virus-Scanned: amavisd-new at mysnip.de
|
7
|
+
Received: from mail1.mysnip.de ([127.0.0.1])
|
8
|
+
by localhost (mail1.mysnip.de [127.0.0.1]) (amavisd-new, port 10024)
|
9
|
+
with LMTP id EeO14FZ3CSlD for <bouncemail@mysnip.de>;
|
10
|
+
Wed, 27 Jun 2007 23:31:24 +0200 (CEST)
|
11
|
+
Received: from [192.168.1.18] (A6258.a.strato-dslnet.de [89.62.98.88])
|
12
|
+
(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
|
13
|
+
(No client certificate requested)
|
14
|
+
by mail1.mysnip.de (Postfix) with ESMTP id 10CB814015E58
|
15
|
+
for <bouncemail@mysnip.de>; Wed, 27 Jun 2007 23:31:23 +0200 (CEST)
|
16
|
+
Resent-From: Thomas Seifert <thomas.seifert@mysnip.de>
|
17
|
+
Resent-To: bouncemail@mysnip.de
|
18
|
+
Resent-Date: Wed, 27 Jun 2007 23:31:21 +0200
|
19
|
+
Resent-Message-Id: <4682D729.6020006@mysnip.de>
|
20
|
+
Resent-User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.4) Gecko/20070604 Thunderbird/2.0.0.4
|
21
|
+
Received: from localhost (mail1.mysnip.de [127.0.0.1])
|
22
|
+
by mail1.mysnip.de (Postfix) with ESMTP id DD17D14015E57
|
23
|
+
for <wwwmail@mysnip.de>; Wed, 27 Jun 2007 22:10:52 +0200 (CEST)
|
24
|
+
X-Virus-Scanned: amavisd-new at mysnip.de
|
25
|
+
Received: from mail1.mysnip.de ([127.0.0.1])
|
26
|
+
by localhost (mail1.mysnip.de [127.0.0.1]) (amavisd-new, port 10024)
|
27
|
+
with LMTP id Mqc0v55gZp8K for <wwwmail@mysnip.de>;
|
28
|
+
Wed, 27 Jun 2007 22:10:52 +0200 (CEST)
|
29
|
+
Received: from web1.mysnip.de (web1.mysnip.de [87.237.123.24])
|
30
|
+
by mail1.mysnip.de (Postfix) with ESMTP id 43FC014015E56
|
31
|
+
for <wwwmail@mysnip.de>; Wed, 27 Jun 2007 22:10:52 +0200 (CEST)
|
32
|
+
Received: by web1.mysnip.de (Postfix)
|
33
|
+
id 183982C0475D0; Wed, 27 Jun 2007 22:10:52 +0200 (CEST)
|
34
|
+
Date: Wed, 27 Jun 2007 22:10:52 +0200 (CEST)
|
35
|
+
From: MAILER-DAEMON@web1.mysnip.de (Mail Delivery System)
|
36
|
+
Subject: Undelivered Mail Returned to Sender
|
37
|
+
To: wwwmail@mysnip.de
|
38
|
+
Auto-Submitted: auto-replied
|
39
|
+
MIME-Version: 1.0
|
40
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
41
|
+
boundary="91F2C2C03486B.1182975052/web1.mysnip.de"
|
42
|
+
Message-Id: <20070627201052.183982C0475D0@web1.mysnip.de>
|
43
|
+
|
44
|
+
This is a MIME-encapsulated message.
|
45
|
+
|
46
|
+
--91F2C2C03486B.1182975052/web1.mysnip.de
|
47
|
+
Content-Description: Notification
|
48
|
+
Content-Type: text/plain; charset=us-ascii
|
49
|
+
|
50
|
+
This is the mail system at host web1.mysnip.de.
|
51
|
+
|
52
|
+
I'm sorry to have to inform you that your message could not
|
53
|
+
be delivered to one or more recipients. It's attached below.
|
54
|
+
|
55
|
+
For further assistance, please send mail to postmaster.
|
56
|
+
|
57
|
+
If you do so, please include this problem report. You can
|
58
|
+
delete your own text from the attached returned message.
|
59
|
+
|
60
|
+
The mail system
|
61
|
+
|
62
|
+
<leopold_skryd@mail.ru>: host mxs.mail.ru[194.67.23.20] said: 550 Access from
|
63
|
+
ip address 87.237.123.24 blocked. Visit
|
64
|
+
http://win.mail.ru/cgi-bin/support_bl?ip=87.237.123.24 (in reply to RCPT TO
|
65
|
+
command)
|
66
|
+
|
67
|
+
--91F2C2C03486B.1182975052/web1.mysnip.de
|
68
|
+
Content-Description: Delivery report
|
69
|
+
|
70
|
+
Content-Type: message/delivery-status
|
71
|
+
|
72
|
+
Reporting-MTA: dns; web1.mysnip.de
|
73
|
+
X-Postfix-Queue-ID: 91F2C2C03486B
|
74
|
+
X-Postfix-Sender: rfc822; wwwmail@mysnip.de
|
75
|
+
Arrival-Date: Wed, 27 Jun 2007 22:10:49 +0200 (CEST)
|
76
|
+
|
77
|
+
Final-Recipient: rfc822; leopold_skryd@mail.ru
|
78
|
+
Action: failed
|
79
|
+
Status: 5.0.0
|
80
|
+
Remote-MTA: dns; mxs.mail.ru
|
81
|
+
Diagnostic-Code: smtp; 550 Access from ip address 87.237.123.24 blocked. Visit
|
82
|
+
http://win.mail.ru/cgi-bin/support_bl?ip=87.237.123.24
|
83
|
+
|
84
|
+
--91F2C2C03486B.1182975052/web1.mysnip.de
|
85
|
+
Content-Description: Undelivered Message
|
86
|
+
Content-Type: message/rfc822
|
87
|
+
|
88
|
+
Received: by web1.mysnip.de (Postfix, from userid 1000)
|
89
|
+
id 91F2C2C03486B; Wed, 27 Jun 2007 22:10:49 +0200 (CEST)
|
90
|
+
To: rusculture <leopold_skryd@mail.ru>
|
91
|
+
Subject: Registration Confirmation
|
92
|
+
From: webmaster@myphorum.de
|
93
|
+
Message-Id: <20070627201049.91F2C2C03486B@web1.mysnip.de>
|
94
|
+
Date: Wed, 27 Jun 2007 22:10:49 +0200 (CEST)
|
95
|
+
|
96
|
+
Herzlichen Dank, das Sie sich registriert haben. Nachstehend werden Sie ihren
|
97
|
+
Benutzernamen und ihr temporäres Passwort finden. Gehen Sie bitte zu
|
98
|
+
http://dolecek.myphorum.de/XBR/login.php und melden Sie sich an.:
|
99
|
+
|
100
|
+
Benutzername: rusculture
|
101
|
+
Passwort: ecaec5
|
102
|
+
|
103
|
+
Ändern Sie bitte beim Anmelden das Passwort.
|
104
|
+
|
105
|
+
--91F2C2C03486B.1182975052/web1.mysnip.de--
|
@@ -0,0 +1,231 @@
|
|
1
|
+
From VM Wed Mar 7 11:08:33 2001
|
2
|
+
X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil]
|
3
|
+
[nil "Tuesday" "6" "March" "2001" "19:02:13" "+0000" "Mail Delivery System" "MAILER-DAEMON@bucks.net" nil "179" "Undelivered Mail Returned to Sender" "^From:" nil nil "3" nil nil nil nil nil]
|
4
|
+
nil)
|
5
|
+
Return-Path: <mailman-announce-admin@python.org>
|
6
|
+
Delivered-To: bwarsaw@wooz.org
|
7
|
+
Received: from digicool.com (host15.digitalcreations.d.subnet.rcn.com [208.59.6.15])
|
8
|
+
by mail.wooz.org (Postfix) with ESMTP id 590BFD37AC
|
9
|
+
for <barry@wooz.org>; Tue, 6 Mar 2001 14:02:37 -0500 (EST)
|
10
|
+
Received: from <mailman-announce-admin@python.org>
|
11
|
+
by digicool.com (CommuniGate Pro RULES 3.4)
|
12
|
+
with RULES id 1651377; Tue, 06 Mar 2001 14:05:47 -0500
|
13
|
+
Received: from ns2.digicool.com ([216.164.72.2] verified)
|
14
|
+
by digicool.com (CommuniGate Pro SMTP 3.4)
|
15
|
+
with ESMTP id 1651376 for barry@mail.digicool.com; Tue, 06 Mar 2001 14:05:46 -0500
|
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 OAA13908
|
18
|
+
for <barry@digicool.com>; Tue, 6 Mar 2001 14:03:04 -0500
|
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 14aMje-0005oS-00
|
22
|
+
for barry@digicool.com; Tue, 06 Mar 2001 14:03:02 -0500
|
23
|
+
Received: from [195.112.37.162] (helo=babylon.bucks.net ident=postfix)
|
24
|
+
by mail.python.org with esmtp (Exim 3.21 #1)
|
25
|
+
id 14aMix-0005nQ-00
|
26
|
+
for mailman-announce-admin@python.org; Tue, 06 Mar 2001 14:02:19 -0500
|
27
|
+
Received: by babylon.bucks.net (BNS Postfix) via BOUNCE
|
28
|
+
id 59B9747B9E; Tue, 6 Mar 2001 19:02:13 +0000 (GMT)
|
29
|
+
MIME-Version: 1.0
|
30
|
+
Content-Type: multipart/mixed;
|
31
|
+
boundary="41A6B47B9D.983905333/babylon.bucks.net"
|
32
|
+
Message-Id: <20010306190213.59B9747B9E@babylon.bucks.net>
|
33
|
+
Precedence: bulk
|
34
|
+
List-Help: <mailto:mailman-announce-request@python.org?subject=help>
|
35
|
+
List-Post: <mailto:mailman-announce@python.org>
|
36
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/mailman-announce>,
|
37
|
+
<mailto:mailman-announce-request@python.org?subject=subscribe>
|
38
|
+
List-Id: Announce-only list for Mailman releases and news <mailman-announce.python.org>
|
39
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/mailman-announce>,
|
40
|
+
<mailto:mailman-announce-request@python.org?subject=unsubscribe>
|
41
|
+
List-Archive: <http://mail.python.org/pipermail/mailman-announce/>
|
42
|
+
From: MAILER-DAEMON@bucks.net (Mail Delivery System)
|
43
|
+
Sender: mailman-announce-owner@python.org
|
44
|
+
To: mailman-announce-admin@python.org
|
45
|
+
Subject: Undelivered Mail Returned to Sender
|
46
|
+
Date: Tue, 6 Mar 2001 19:02:13 +0000 (GMT)
|
47
|
+
X-Autogenerated: Mirror
|
48
|
+
X-Mirrored-by: <mailman-announce-admin@python.org>
|
49
|
+
X-BeenThere: mailman-announce@python.org
|
50
|
+
X-Mailman-Version: 2.0.2 (101270)
|
51
|
+
|
52
|
+
This is a MIME-encapsulated message.
|
53
|
+
|
54
|
+
--41A6B47B9D.983905333/babylon.bucks.net
|
55
|
+
Content-Description: Notification
|
56
|
+
Content-Type: text/plain
|
57
|
+
|
58
|
+
This is the BNS Postfix program at host babylon.bucks.net.
|
59
|
+
|
60
|
+
I'm sorry to have to inform you that the message returned
|
61
|
+
below could not be delivered to one or more destinations.
|
62
|
+
|
63
|
+
For further assistance, please contact <postmaster@bucks.net>
|
64
|
+
|
65
|
+
If you do so, please include this problem report. You can
|
66
|
+
delete your own text from the message returned below.
|
67
|
+
|
68
|
+
The BNS Postfix program
|
69
|
+
|
70
|
+
<bjelf@detectit.net>: host mail.btconnect.com[193.113.154.2] said: 554 No
|
71
|
+
Resent-From field given
|
72
|
+
|
73
|
+
|
74
|
+
--41A6B47B9D.983905333/babylon.bucks.net
|
75
|
+
Content-Description: Undelivered Message
|
76
|
+
Content-Type: message/rfc822
|
77
|
+
|
78
|
+
Received: from lists.securityfocus.com (lists.securityfocus.com [66.38.151.7])
|
79
|
+
by babylon.bucks.net (BNS Postfix) with ESMTP id 41A6B47B9D
|
80
|
+
for <bjelf@SAFESTONE.COM>; Tue, 6 Mar 2001 19:02:11 +0000 (GMT)
|
81
|
+
Received: from lists.securityfocus.com (lists.securityfocus.com [66.38.151.7])
|
82
|
+
by lists.securityfocus.com (Postfix) with ESMTP
|
83
|
+
id C8A0024C93F; Tue, 6 Mar 2001 10:05:17 -0700 (MST)
|
84
|
+
Received: from LISTS.SECURITYFOCUS.COM by LISTS.SECURITYFOCUS.COM
|
85
|
+
(LISTSERV-TCP/IP release 1.8d) with spool id 27825191 for
|
86
|
+
BUGTRAQ@LISTS.SECURITYFOCUS.COM; Tue, 6 Mar 2001 10:03:25 -0700
|
87
|
+
Approved-By: aleph1@SECURITYFOCUS.COM
|
88
|
+
Delivered-To: bugtraq@lists.securityfocus.com
|
89
|
+
Received: from firewall.osb.hu (unknown [193.224.234.1]) by
|
90
|
+
lists.securityfocus.com (Postfix) with ESMTP id 48CD624C646 for
|
91
|
+
<BUGTRAQ@LISTS.SECURITYFOCUS.COM>; Tue, 6 Mar 2001 00:49:55 -0700
|
92
|
+
(MST)
|
93
|
+
Received: from pimpa.intranet.osb.hu (IDENT:root@pimpa.intranet.osb.hu
|
94
|
+
[192.168.0.8]) by firewall.osb.hu (8.9.3/8.9.3/Debian 8.9.3-21) with
|
95
|
+
ESMTP id IAA11531 for <BUGTRAQ@LISTS.SECURITYFOCUS.COM>; Tue, 6 Mar
|
96
|
+
2001 08:53:08 +0100
|
97
|
+
Received: from localhost (sp@localhost) by pimpa.intranet.osb.hu (8.9.3/8.9.3)
|
98
|
+
with ESMTP id IAA05518 for <BUGTRAQ@LISTS.SECURITYFOCUS.COM>; Tue, 6
|
99
|
+
Mar 2001 08:53:08 +0100
|
100
|
+
X-Authentication-Warning: pimpa.intranet.osb.hu: sp owned process doing -bs
|
101
|
+
X-Received: from firewall.osb.hu (fw.intranet.osb.hu [192.168.0.1]) by
|
102
|
+
pimpa.intranet.osb.hu (8.9.3/8.9.3) with ESMTP id JAA18698 for
|
103
|
+
<sp@pimpa.intranet.osb.hu>; Sat, 3 Mar 2001 09:41:17 +0100
|
104
|
+
X-Received: from pax.intranet.osb.hu (IDENT:root@pax.intranet.osb.hu
|
105
|
+
[192.168.0.2]) by firewall.osb.hu (8.9.3/8.9.3/Debian 8.9.3-21)
|
106
|
+
with ESMTP id JAA24373 for <sp@pimpa.intranet.osb.hu>; Sat, 3 Mar
|
107
|
+
2001 09:41:17 +0100
|
108
|
+
X-Received: from firewall.osb.hu (fw.intranet.osb.hu [192.168.0.1]) by
|
109
|
+
pax.intranet.osb.hu (8.9.3/8.9.3) with ESMTP id JAA09389 for
|
110
|
+
<sp@osb.hu>; Sat, 3 Mar 2001 09:41:16 +0100
|
111
|
+
X-Received: from mail.python.org (mail.python.org [63.102.49.29]) by
|
112
|
+
firewall.osb.hu (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id
|
113
|
+
JAA24367 for <sp@osb.hu>; Sat, 3 Mar 2001 09:41:07 +0100
|
114
|
+
X-Received: from localhost.localdomain ([127.0.0.1] helo=mail.python.org) by
|
115
|
+
mail.python.org with esmtp (Exim 3.21 #1) id 14Z7OV-0000vs-00; Sat,
|
116
|
+
03 Mar 2001 03:28:03 -0500
|
117
|
+
X-Received: from [216.27.134.141] (helo=mail.wooz.org) by mail.python.org with
|
118
|
+
esmtp (Exim 3.21 #1) id 14Z7Nq-0000tq-00; Sat, 03 Mar 2001 03:27:22
|
119
|
+
-0500
|
120
|
+
X-Received: by mail.wooz.org (Postfix, from userid 889) id BE7B0D37AC; Sat, 3
|
121
|
+
Mar 2001 03:26:35 -0500 (EST)
|
122
|
+
MIME-Version: 1.0
|
123
|
+
Content-Type: text/plain; charset=us-ascii
|
124
|
+
Content-Transfer-Encoding: 7bit
|
125
|
+
X-Mailer: VM 6.84 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid
|
126
|
+
X-Attribution: BAW
|
127
|
+
X-Oblique-Strategy: Subvert your original idea
|
128
|
+
X-Url: http://www.wooz.org/barry
|
129
|
+
Errors-To: mailman-announce-admin@python.org
|
130
|
+
X-BeenThere: mailman-announce@python.org
|
131
|
+
X-Mailman-Version: 2.0.2 (101270)
|
132
|
+
Precedence: bulk
|
133
|
+
List-Help: <mailto:mailman-announce-request@python.org?subject=help>
|
134
|
+
List-Post: <mailto:mailman-announce@python.org>
|
135
|
+
List-Subscribe: <http://mail.python.org/mailman/listinfo/mailman-announce>,
|
136
|
+
<mailto:mailman-announce-request@python.org?subject=subscribe>
|
137
|
+
List-Id: Announce-only list for Mailman releases and news
|
138
|
+
<mailman-announce.python.org>
|
139
|
+
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/mailman-announce>,
|
140
|
+
<mailto:mailman-announce-request@python.org?subject=unsubscribe>
|
141
|
+
List-Archive: <http://mail.python.org/pipermail/mailman-announce/>
|
142
|
+
X-AntiVirus: scanned for viruses by AMaViS 0.2.1 (http://amavis.org/)
|
143
|
+
ReSent-Subject: [Mailman-Announce] ANNOUNCE Mailman 2.0.2 (important privacy
|
144
|
+
patch)
|
145
|
+
Message-ID: <Pine.LNX.4.30.0103060853010.5499@pimpa.intranet.osb.hu>
|
146
|
+
Date: Tue, 6 Mar 2001 08:53:01 +0100
|
147
|
+
Reply-To: mailman-developers@python.org
|
148
|
+
Sender: Bugtraq List <BUGTRAQ@SECURITYFOCUS.COM>
|
149
|
+
Comments: RFC822 error: <W> CC field duplicated. Last occurrence was
|
150
|
+
retained.
|
151
|
+
Comments: Resent-From: Soos Peter <sp@osb.hu>
|
152
|
+
Comments: Originally-From: barry@digicool.com (Barry A. Warsaw)
|
153
|
+
From: Soos Peter <sp@OSB.HU>
|
154
|
+
Subject: [Mailman-Announce] ANNOUNCE Mailman 2.0.2 (important privacy
|
155
|
+
patch)
|
156
|
+
X-cc: mailman-developers@python.org
|
157
|
+
To: BUGTRAQ@SECURITYFOCUS.COM
|
158
|
+
|
159
|
+
I've just uploaded the Mailman 2.0.2 release to SourceForge. This is
|
160
|
+
a bug fix release that also fixes a potential privacy hole, which
|
161
|
+
could allow a list administrator to get access to user passwords.
|
162
|
+
Even with those passwords, I believe there's little additional harm
|
163
|
+
that a list admin could do, but still they probably shouldn't have
|
164
|
+
access to those passwords.
|
165
|
+
|
166
|
+
There are a few other important fixes in this release, so I recommend
|
167
|
+
that all sites running Mailman 2.0 or 2.0.1 should upgrade.
|
168
|
+
|
169
|
+
As usual I'm releasing this as both a complete tarball and as a patch
|
170
|
+
against Mailman 2.0.1. If you grab the patchfile, you'll want to cd
|
171
|
+
into your 2.0 source, and apply it like so:
|
172
|
+
|
173
|
+
% patch -p1 < mailman-2.0.1-2.0.2.diff
|
174
|
+
|
175
|
+
Currently only http://mailman.sourceforge.net is updated, but the
|
176
|
+
list.org and gnu.org sites should be updated soon. The release
|
177
|
+
information on SF is at
|
178
|
+
|
179
|
+
http://sourceforge.net/project/shownotes.php?release_id=25955
|
180
|
+
|
181
|
+
My thanks to Thomas Wouters for his help!
|
182
|
+
|
183
|
+
Enjoy,
|
184
|
+
-Barry
|
185
|
+
|
186
|
+
P.S. I'm not sure if I'll have time to release a 2.1 alpha of the I18N
|
187
|
+
stuff before I leave for the Python9 conference. If we get the
|
188
|
+
expected foot of snow between Sunday and Monday, it's a
|
189
|
+
possibility. ;)
|
190
|
+
|
191
|
+
|
192
|
+
[From the NEWS file]
|
193
|
+
|
194
|
+
2.0.2 (03-Mar-2001)
|
195
|
+
|
196
|
+
Security fix:
|
197
|
+
|
198
|
+
- A fix for a potential privacy exploit where a clever list
|
199
|
+
administrator could gain access to user passwords. This doesn't
|
200
|
+
allow them to do much more harm to the user then they normally
|
201
|
+
could, but they still shouldn't have access to the passwords.
|
202
|
+
|
203
|
+
Bug fixes:
|
204
|
+
|
205
|
+
- In the admindb page, don't complain when approving a
|
206
|
+
subscription of someone who's already on the list (SF bug
|
207
|
+
#222409 - Thomas Wouters).
|
208
|
+
|
209
|
+
Also, quote for HTML the Subject: text printed for held
|
210
|
+
messages, otherwise messages with e.g. "Subject: </table>" could
|
211
|
+
royally screw page formatting.
|
212
|
+
|
213
|
+
- In Netscape.py bounce processor, don't bomb out on ill-formed
|
214
|
+
messages (no semi-colon separating parameters), otherwise mail
|
215
|
+
delivery could grind to a halt. Bug reported by Kambiz
|
216
|
+
Aghaiepour.
|
217
|
+
|
218
|
+
- Docstring fix bin/newlist to remove mention of "immediate"
|
219
|
+
argument (Thomas Wouters).
|
220
|
+
|
221
|
+
- Fix for bin/update when PREFIX != VAR_PREFIX (SF bug #229794 --
|
222
|
+
Thomas Wouters).
|
223
|
+
|
224
|
+
_______________________________________________
|
225
|
+
Mailman-announce mailing list
|
226
|
+
Mailman-announce@python.org
|
227
|
+
http://mail.python.org/mailman/listinfo/mailman-announce
|
228
|
+
|
229
|
+
--41A6B47B9D.983905333/babylon.bucks.net--
|
230
|
+
|
231
|
+
|