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,92 @@
|
|
1
|
+
Return-path: <simoni@vhost1.example.com>
|
2
|
+
Envelope-to: listowner@example.com
|
3
|
+
Delivery-date: Fri, 09 Dec 2011 00:30:06 -0500
|
4
|
+
Received: from simoni by vhost1.example.com with local (Exim 4.69 (FreeBSD))
|
5
|
+
(envelope-from <simoni@vhost1.example.com>)
|
6
|
+
id 1RYt26-000M4B-Ev
|
7
|
+
for listowner@example.com; Fri, 09 Dec 2011 00:30:06 -0500
|
8
|
+
Date: Fri, 09 Dec 2011 00:30:06 -0500
|
9
|
+
From: MAILER-DAEMON@p3plsmtp04-01.prod.phx3.secureserver.net
|
10
|
+
To: listowner@example.com
|
11
|
+
X-BeenThere: "Bounce Handler" <bouncehandler@example.com>
|
12
|
+
X-Mailer: Pro Dada 4.9.0 Stable 12/06/11
|
13
|
+
Content-type: text/plain; charset=UTF-8
|
14
|
+
Subject: failure notice
|
15
|
+
Message-Id: <E1RYt26-000M4B-Ev@vhost1.example.com>
|
16
|
+
|
17
|
+
Your mail message to the following address(es) could not be delivered. This
|
18
|
+
is a permanent error. Please verify the addresses and try again. If you are
|
19
|
+
still having difficulty sending mail to these addresses, please contact
|
20
|
+
Customer Support at 480-624-2500.
|
21
|
+
|
22
|
+
<subscriber@example.com>:
|
23
|
+
child status 100...The e-mail message could not be delivered because the user's mailfolder is full.
|
24
|
+
|
25
|
+
--- Below this line is a copy of the message.
|
26
|
+
|
27
|
+
Return-Path: <bouncehandler@example.com>
|
28
|
+
Received: (qmail 5962 invoked from network); 8 Dec 2011 16:25:14 -0000
|
29
|
+
Received: from unknown (HELO p3pismtp01-036.prod.phx3.secureserver.net) ([10.6.12.63])
|
30
|
+
(envelope-sender <bouncehandler@example.com>)
|
31
|
+
by p3plsmtp04-01.prod.phx3.secureserver.net (qmail-1.03) with SMTP
|
32
|
+
for <subscriber@example.com>; 8 Dec 2011 16:25:14 -0000
|
33
|
+
X-IronPort-Anti-Spam-Result: Ak0CAHXk4E4MoWmXmWdsb2JhbABDhQaWbI1VgSAiAQEBAQEICwsHFCWBcgEBAQUBASAaCQggEQEBAQwbBQIJDw4CAgQtCyETBQwIBASHbqV/kSyBNIhxgRYEiC6MPJJF
|
34
|
+
Received: from vhost1.example.com ([12.161.105.151])
|
35
|
+
by p3pismtp01-036.prod.phx3.secureserver.net with ESMTP; 08 Dec 2011 09:21:15 -0700
|
36
|
+
Received: from simoni by vhost1.example.com with local (Exim 4.69 (FreeBSD))
|
37
|
+
(envelope-from <bouncehandler@example.com>)
|
38
|
+
id 1RYgig-000BSJ-B5
|
39
|
+
for subscriber@example.com; Thu, 08 Dec 2011 11:21:14 -0500
|
40
|
+
Date: Thu, 08 Dec 2011 11:21:14 -0500
|
41
|
+
From: "Test List" <listowner@example.com>
|
42
|
+
To: "Test List Subscriber" <subscriber@example.com>
|
43
|
+
X-Priority: 3
|
44
|
+
List: dadatest
|
45
|
+
List-Archive: <http://example.com/cgi-bin/dada/mail.cgi/archive/dadatest/>
|
46
|
+
List-ID: <dadatest.vhost1.example.com>
|
47
|
+
List-Owner: <listowner@example.com>
|
48
|
+
List-Post: NO
|
49
|
+
List-Subscribe: =?UTF-8?Q?=3Chttp=3A//dadamailproject=2Ecom/cgi-bin/dada/mail=2Ecgi/s/dada?=
|
50
|
+
=?UTF-8?Q?=5Fannounce/simon/compustaff=2Ecom/=3E?=
|
51
|
+
List-Unsubscribe: =?UTF-8?Q?=3Chttp=3A//dadamailproject=2Ecom/cgi-bin/dada/mail=2Ecgi/u/dada?=
|
52
|
+
=?UTF-8?Q?=5Fannounce/simon/compustaff=2Ecom/=3E?=
|
53
|
+
List-URL: <http://example.com/cgi-bin/dada/mail.cgi/list/dadatest/>
|
54
|
+
Message-ID: <20111207180210.28549468@example.com>
|
55
|
+
X-Mailer: Pro Dada 4.9.0 Stable 12/06/11
|
56
|
+
Content-type: text/plain; charset="UTF-8"
|
57
|
+
Content-Transfer-Encoding: quoted-printable
|
58
|
+
Content-Disposition: inline
|
59
|
+
MIME-Version: 1.0
|
60
|
+
Subject: Dada Mail v4.9.0 Released
|
61
|
+
X-AntiAbuse: This header was added to track abuse, please include it with any abuse report
|
62
|
+
X-AntiAbuse: Primary Hostname - vhost1.example.com
|
63
|
+
X-AntiAbuse: Original Domain - compustaff.com
|
64
|
+
X-AntiAbuse: Originator/Caller UID/GID - [1015 1004] / [26 6]
|
65
|
+
X-AntiAbuse: Sender Address Domain - example.com
|
66
|
+
X-Source: /usr/local/bin/perl
|
67
|
+
X-Source-Args: /usr/bin/perl mail.cgi
|
68
|
+
X-Source-Dir: justinsimoni.com:/example.com/cgi-bin/dada
|
69
|
+
|
70
|
+
(Mailing list information, including how to remove yourself, is located at =
|
71
|
+
the end of this message.)
|
72
|
+
__=20
|
73
|
+
|
74
|
+
yadda yadda=20
|
75
|
+
|
76
|
+
--=20
|
77
|
+
=20
|
78
|
+
Forward this Message to a Friend:
|
79
|
+
http://example.com/cgi-bin/dada/mail.cgi/archive/dadatest/2011=
|
80
|
+
1207180210/#forward_to_a_friend
|
81
|
+
|
82
|
+
Subscription Reminder: You're Subscribed to, Test List=20
|
83
|
+
Using the address: subscriber@example.com
|
84
|
+
|
85
|
+
From: listowner@example.com
|
86
|
+
PO BOX 18234 =0D
|
87
|
+
Denver, CO=0D
|
88
|
+
80218
|
89
|
+
|
90
|
+
Unsubscribe Automatically:
|
91
|
+
http://example.com/cgi-bin/dada/mail.cgi/u/dadatest/simon/comp=
|
92
|
+
ustaff.com/=3D=
|
@@ -0,0 +1,112 @@
|
|
1
|
+
From VM Thu Dec 7 15:07:27 2000
|
2
|
+
Return-Path: <python-list-admin@python.org>
|
3
|
+
Delivered-To: bxxxxx@mail.wooz.org
|
4
|
+
Received: from dinsdale.python.org (dinsdale.python.org [132.151.1.21])
|
5
|
+
by mail.wooz.org (Postfix) with ESMTP id 276A9D37DB
|
6
|
+
for <yyyyy@wooz.org>; Thu, 7 Dec 2000 15:03:20 -0500 (EST)
|
7
|
+
Received: from dinsdale.python.org (localhost [127.0.0.1])
|
8
|
+
by dinsdale.python.org (Postfix) with ESMTP id 13CF11CFD2
|
9
|
+
for <yyyyy@wooz.org>; Thu, 7 Dec 2000 14:58:02 -0500 (EST)
|
10
|
+
Delivered-To: python-list-admin@python.org
|
11
|
+
Received: from grif.newmail.ru (grif.newmail.ru [212.48.140.154])
|
12
|
+
by dinsdale.python.org (Postfix) with SMTP id D9F021CFD2
|
13
|
+
for <python-list-admin@python.org>; Thu, 7 Dec 2000 14:57:26 -0500 (EST)
|
14
|
+
Received: (qmail 1933 invoked for bounce); 7 Dec 2000 19:57:26 -0000
|
15
|
+
Content-Type: text/plain; charset=koi8-r
|
16
|
+
Message-Id: <20001207195726.D9F021CFD2@dinsdale.python.org>
|
17
|
+
Errors-To: python-list-owner@python.org
|
18
|
+
Precedence: bulk
|
19
|
+
List-Help: <mailto:python-list-request@python.org?subject=help>
|
20
|
+
List-Post: <mailto:python-list@python.org>
|
21
|
+
List-Subscribe: <http://www.python.org/mailman/listinfo/python-list>,
|
22
|
+
<mailto:python-list-request@python.org?subject=subscribe>
|
23
|
+
List-Id: General discussion list for the Python programming language <python-list.python.org>
|
24
|
+
List-Unsubscribe: <http://www.python.org/mailman/listinfo/python-list>,
|
25
|
+
<mailto:python-list-request@python.org?subject=unsubscribe>
|
26
|
+
List-Archive: <http://www.python.org/pipermail/python-list/>
|
27
|
+
From: MAILER-DAEMON@grif.newmail.ru
|
28
|
+
Sender: python-list-owner@python.org
|
29
|
+
To: python-list-admin@python.org
|
30
|
+
Subject: failure notice
|
31
|
+
Date: 7 Dec 2000 19:57:26 -0000
|
32
|
+
X-BeenThere: python-list@python.org
|
33
|
+
X-Mailman-Version: 2.0
|
34
|
+
|
35
|
+
This is the machine generated message from mail service.
|
36
|
+
Unfortunately, we were not able to deliver your message to the following address(es):
|
37
|
+
|
38
|
+
��� ��������� ������� ������������� mail-��������.
|
39
|
+
� ���������, ���������� ��������� ��������� �� ���������� ������:
|
40
|
+
|
41
|
+
<zzzzz@newmail.ru>:
|
42
|
+
This person's account is exceeding their quota.
|
43
|
+
|
44
|
+
--- Below the next line is a copy of the message.
|
45
|
+
--- ���� ���� ����� ��������� ����� ���������.
|
46
|
+
|
47
|
+
Return-Path: <python-list-admin@python.org>
|
48
|
+
Received: (qmail 1924 invoked from network); 7 Dec 2000 19:57:26 -0000
|
49
|
+
Received: from unknown (HELO dinsdale.python.org) (132.151.1.21)
|
50
|
+
by grif.newmail.ru with SMTP; 7 Dec 2000 19:57:26 -0000
|
51
|
+
Received: from dinsdale.python.org (localhost [127.0.0.1])
|
52
|
+
by dinsdale.python.org (Postfix) with ESMTP
|
53
|
+
id 8E2A81CD7A; Thu, 7 Dec 2000 14:56:18 -0500 (EST)
|
54
|
+
Message-ID: <3A2FEB05.5E9531C4@san.rr.com>
|
55
|
+
From: Darren New <dnew@san.rr.com>
|
56
|
+
Organization: Bookshelves and file cabinets?
|
57
|
+
X-Mailer: Mozilla 4.06 [en] (WinNT; U)
|
58
|
+
MIME-Version: 1.0
|
59
|
+
Newsgroups: comp.lang.python
|
60
|
+
Subject: Re: Python Origins
|
61
|
+
References: <90k3pq$50p$1@nnrp1.deja.com> <3A2DD2CA.14A5D7E2@engcorp.com> <90l3j9$4bn$1@kapsel.intranet> <udzoi9cedt.fsf@box.home.de> <KHOX5.3213$TU6.94362@ptah.visi.com>
|
62
|
+
Content-Type: text/plain; charset=us-ascii
|
63
|
+
Content-Transfer-Encoding: 7bit
|
64
|
+
Lines: 22
|
65
|
+
NNTP-Posting-Host: 204.210.39.121
|
66
|
+
X-Complaints-To: abuse@rr.com
|
67
|
+
X-Trace: typhoon.san.rr.com 976218885 204.210.39.121 (Thu, 07 Dec 2000 11:54:45 PST)
|
68
|
+
NNTP-Posting-Date: Thu, 07 Dec 2000 11:54:45 PST
|
69
|
+
Path: news!uunet!ash.uu.net!hermes.visi.com!news-out.visi.com!cyclone-sjo1.usenetserver.com!news-out.usenetserver.com!cyclone-west.rr.com!news.rr.com!news-west.rr.com!lsnws01.we.mediaone.net!cyclone-LA3.rr.com!typhoon.san.rr.com.POSTED!not-for-mail
|
70
|
+
Xref: news comp.lang.python:121135
|
71
|
+
To: python-list@python.org
|
72
|
+
Sender: python-list-admin@python.org
|
73
|
+
Errors-To: python-list-admin@python.org
|
74
|
+
X-BeenThere: python-list@python.org
|
75
|
+
X-Mailman-Version: 2.0
|
76
|
+
Precedence: bulk
|
77
|
+
List-Help: <mailto:python-list-request@python.org?subject=help>
|
78
|
+
List-Post: <mailto:python-list@python.org>
|
79
|
+
List-Subscribe: <http://www.python.org/mailman/listinfo/python-list>,
|
80
|
+
<mailto:python-list-request@python.org?subject=subscribe>
|
81
|
+
List-Id: General discussion list for the Python programming language <python-list.python.org>
|
82
|
+
List-Unsubscribe: <http://www.python.org/mailman/listinfo/python-list>,
|
83
|
+
<mailto:python-list-request@python.org?subject=unsubscribe>
|
84
|
+
List-Archive: <http://www.python.org/pipermail/python-list/>
|
85
|
+
Date: Thu, 07 Dec 2000 19:54:45 GMT
|
86
|
+
|
87
|
+
Grant Edwards wrote:
|
88
|
+
> If a person who speaks two languages is "bilingual" and a
|
89
|
+
> person who speaks three languages is "trilingual", then what do
|
90
|
+
> you call a person who only speaks one langage?
|
91
|
+
>
|
92
|
+
> American!
|
93
|
+
|
94
|
+
Yah. We just export our culture to y'all. ;-)
|
95
|
+
|
96
|
+
Actually, we don't all speak the same language. We can just all understand
|
97
|
+
each other.
|
98
|
+
|
99
|
+
The traveling salesman saw "grits" on the menu. He asked the waitress "What
|
100
|
+
are grits?" She said "They're extra." "But what *are* they?" he asked
|
101
|
+
again. "They're fifty cents" she answered. "Yes, I'll have the grits,
|
102
|
+
please."
|
103
|
+
|
104
|
+
--
|
105
|
+
Darren New / Senior MTS & Free Radical / Invisible Worlds Inc.
|
106
|
+
San Diego, CA, USA (PST). Cryptokeys on demand.
|
107
|
+
Personal malapropism generator free with purchase!
|
108
|
+
Steganography: The manual is hidden in the source code.
|
109
|
+
--
|
110
|
+
http://www.python.org/mailman/listinfo/python-list
|
111
|
+
|
112
|
+
|
@@ -0,0 +1,245 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@sb7.songbird.com>
|
2
|
+
Received: from ns1.hbc.co.jp (ns1.hbc.co.jp [61.198.23.22])
|
3
|
+
by sb7.songbird.com (8.12.11/8.12.11) with SMTP id k2R85CVU014206
|
4
|
+
for <gpc-talk-bounces@grizz.org>; Mon, 27 Mar 2006 00:05:13 -0800
|
5
|
+
Message-Id: <200603270805.k2R85CVU014206@sb7.songbird.com>
|
6
|
+
Received: (qmail 25914 invoked from network); 27 Mar 2006 17:04:37 +0900
|
7
|
+
Received: from unknown (HELO pop.hbc.co.jp) (192.168.0.122)
|
8
|
+
by ns1.hbc.co.jp with SMTP; 27 Mar 2006 17:04:37 +0900
|
9
|
+
Received: (qmail 29689 invoked for bounce); 27 Mar 2006 17:04:37 +0900
|
10
|
+
Date: 27 Mar 2006 17:04:37 +0900
|
11
|
+
From: MAILER-DAEMON@pop.hbc.co.jp
|
12
|
+
To: gpc-talk-bounces@grizz.org
|
13
|
+
Subject: failure notice
|
14
|
+
X-SongbirdInformation: support@songbird.com for more information
|
15
|
+
X-Songbird: Clean
|
16
|
+
X-Songbird-From:
|
17
|
+
|
18
|
+
He/Her is not HBC e-mail users.
|
19
|
+
Check your send e-mail address.
|
20
|
+
|
21
|
+
<crown@hbc.co.jp>:
|
22
|
+
Sorry, no mailbox here by that name. vpopmail (#5.1.1)
|
23
|
+
|
24
|
+
--- Below this line is a copy of the message.
|
25
|
+
|
26
|
+
Return-Path: <gpc-talk-bounces@grizz.org>
|
27
|
+
Received: (qmail 29686 invoked from network); 27 Mar 2006 17:04:37 +0900
|
28
|
+
Received: from unknown (HELO PUMPKIN) (172.16.16.22)
|
29
|
+
by pop.hbc.co.jp with SMTP; 27 Mar 2006 17:04:37 +0900
|
30
|
+
Received: from ns1.hbc.co.jp ([192.168.0.22]) by PUMPKIN with InterScan Messaging Security Suite; Mon, 27 Mar 2006 17:24:52 +0900
|
31
|
+
Received: (qmail 25911 invoked from network); 27 Mar 2006 17:04:36 +0900
|
32
|
+
Received: from unknown (HELO sb7.songbird.com) (208.184.79.137)
|
33
|
+
by ns1.hbc.co.jp with SMTP; 27 Mar 2006 17:04:36 +0900
|
34
|
+
Received: from sb7.songbird.com (sb7.songbird.com [127.0.0.1])
|
35
|
+
by sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k2R853Ol014177
|
36
|
+
for <crown@hbc.co.jp>; Mon, 27 Mar 2006 00:05:03 -0800
|
37
|
+
Subject: The results of your email commands
|
38
|
+
From: gpc-talk-bounces@grizz.org
|
39
|
+
To: crown@hbc.co.jp
|
40
|
+
MIME-Version: 1.0
|
41
|
+
Content-Type: multipart/mixed; boundary="===============0630961367=="
|
42
|
+
Message-ID: <mailman.2720.1143446702.1567.gpc-talk@grizz.org>
|
43
|
+
Date: Mon, 27 Mar 2006 00:05:02 -0800
|
44
|
+
Precedence: bulk
|
45
|
+
X-BeenThere: gpc-talk@grizz.org
|
46
|
+
X-Mailman-Version: 2.1.5
|
47
|
+
List-Id: Grizzly Peak Cyclists general discussion list <gpc-talk.grizz.org>
|
48
|
+
X-List-Administrivia: yes
|
49
|
+
Sender: gpc-talk-bounces@grizz.org
|
50
|
+
Errors-To: gpc-talk-bounces@grizz.org
|
51
|
+
X-SongbirdInformation: support@songbird.com for more information
|
52
|
+
X-Songbird: Clean
|
53
|
+
X-Songbird-From: gpc-talk-bounces@grizz.org
|
54
|
+
|
55
|
+
--===============0630961367==
|
56
|
+
Content-Type: text/plain; charset="us-ascii"
|
57
|
+
MIME-Version: 1.0
|
58
|
+
Content-Transfer-Encoding: 7bit
|
59
|
+
|
60
|
+
The results of your email command are provided below. Attached is your
|
61
|
+
original message.
|
62
|
+
|
63
|
+
- Results:
|
64
|
+
Ignoring non-text/plain MIME parts
|
65
|
+
|
66
|
+
- Unprocessed:
|
67
|
+
=20
|
68
|
+
Do you want to b O f V e E u R w P l A f Y for your c M l e b d d i b c
|
69
|
+
i a l t w i x o o n x s?
|
70
|
+
=20
|
71
|
+
I don't think you need it, c S y A o V d E p 5 w 0 h % with
|
72
|
+
http://soki65.kapermet.com
|
73
|
+
|
74
|
+
- Done.
|
75
|
+
|
76
|
+
|
77
|
+
--===============0630961367==
|
78
|
+
Content-Type: message/rfc822
|
79
|
+
MIME-Version: 1.0
|
80
|
+
|
81
|
+
Return-Path: <crown@hbc.co.jp>
|
82
|
+
Received: from hbc.co.jp (200-202-221-208.caboja.speeduol.com.br
|
83
|
+
[200.202.221.208])
|
84
|
+
by sb7.songbird.com (8.12.11/8.12.11) with SMTP id k2R84qts014129
|
85
|
+
for <gpc-talk-request@grizz.org>; Mon, 27 Mar 2006 00:04:55 -0800
|
86
|
+
Message-ID: <000001c65174$f9cbb150$e45ea8c0@xxe54>
|
87
|
+
Reply-To: "Radomila Crown" <crown@hbc.co.jp>
|
88
|
+
From: "Radomila Crown" <crown@hbc.co.jp>
|
89
|
+
To: gpc-talk-request@grizz.org
|
90
|
+
Subject: Re: new
|
91
|
+
Date: Mon, 27 Mar 2006 03:03:47 -0500
|
92
|
+
MIME-Version: 1.0
|
93
|
+
Content-Type: multipart/alternative;
|
94
|
+
boundary="----=_NextPart_000_0001_01C6514B.10F5A950"
|
95
|
+
X-Priority: 3
|
96
|
+
X-MSMail-Priority: Normal
|
97
|
+
X-Mailer: Microsoft Outlook Express 6.00.2800.1106
|
98
|
+
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
|
99
|
+
X-SongbirdInformation: support@songbird.com for more information
|
100
|
+
X-Songbird: Clean
|
101
|
+
X-Songbird-From: crown@hbc.co.jp
|
102
|
+
|
103
|
+
This is a multi-part message in MIME format.
|
104
|
+
|
105
|
+
------=_NextPart_000_0001_01C6514B.10F5A950
|
106
|
+
Content-Type: text/plain;
|
107
|
+
charset="us-ascii"
|
108
|
+
Content-Transfer-Encoding: quoted-printable
|
109
|
+
|
110
|
+
Hi,
|
111
|
+
=20
|
112
|
+
Do you want to b O f V e E u R w P l A f Y for your c M l e b d d i b c
|
113
|
+
i a l t w i x o o n x s?
|
114
|
+
=20
|
115
|
+
I don't think you need it, c S y A o V d E p 5 w 0 h % with
|
116
|
+
http://soki65.kapermet.com
|
117
|
+
|
118
|
+
------=_NextPart_000_0001_01C6514B.10F5A950
|
119
|
+
Content-Type: text/html;
|
120
|
+
charset="us-ascii"
|
121
|
+
Content-Transfer-Encoding: quoted-printable
|
122
|
+
|
123
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
124
|
+
<HTML><HEAD>
|
125
|
+
<META http-equiv=3DContent-Type content=3D"text/html; =
|
126
|
+
charset=3Dus-ascii">
|
127
|
+
<META content=3D"MSHTML 6.00.2800.1106" name=3DGENERATOR>
|
128
|
+
<STYLE></STYLE>
|
129
|
+
</HEAD>
|
130
|
+
<BODY bgColor=3D#ffffff>
|
131
|
+
<DIV>Hi,</DIV>
|
132
|
+
<DIV> </DIV>
|
133
|
+
<DIV>Do you want to <span style=3D"
|
134
|
+
float
|
135
|
+
:
|
136
|
+
right
|
137
|
+
"> b </span>O<span style=3D"
|
138
|
+
float
|
139
|
+
:
|
140
|
+
right
|
141
|
+
"> f </span>V<span style=3D"
|
142
|
+
float
|
143
|
+
:
|
144
|
+
right
|
145
|
+
"> e </span>E<span style=3D"
|
146
|
+
float
|
147
|
+
:
|
148
|
+
right
|
149
|
+
"> u </span>R<span style=3D"
|
150
|
+
float
|
151
|
+
:
|
152
|
+
right
|
153
|
+
"> w </span>P<span style=3D"
|
154
|
+
float
|
155
|
+
:
|
156
|
+
right
|
157
|
+
"> l </span>A<span style=3D"
|
158
|
+
float
|
159
|
+
:
|
160
|
+
right
|
161
|
+
"> f </span>Y for your <span style=3D"
|
162
|
+
float
|
163
|
+
:
|
164
|
+
right
|
165
|
+
"> c </span>M<span style=3D"
|
166
|
+
float
|
167
|
+
:
|
168
|
+
right
|
169
|
+
"> l </span>e<span style=3D"
|
170
|
+
float
|
171
|
+
:
|
172
|
+
right
|
173
|
+
"> b </span>d<span style=3D"
|
174
|
+
float
|
175
|
+
:
|
176
|
+
right
|
177
|
+
"> d </span>i<span style=3D"
|
178
|
+
float
|
179
|
+
:
|
180
|
+
right
|
181
|
+
"> b </span>c<span style=3D"
|
182
|
+
float
|
183
|
+
:
|
184
|
+
right
|
185
|
+
"> i </span>a<span style=3D"
|
186
|
+
float
|
187
|
+
:
|
188
|
+
right
|
189
|
+
"> l </span>t<span style=3D"
|
190
|
+
float
|
191
|
+
:
|
192
|
+
right
|
193
|
+
"> w </span>i<span style=3D"
|
194
|
+
float
|
195
|
+
:
|
196
|
+
right
|
197
|
+
"> x </span>o<span style=3D"
|
198
|
+
float
|
199
|
+
:
|
200
|
+
right
|
201
|
+
"> o </span>n<span style=3D"
|
202
|
+
float
|
203
|
+
:
|
204
|
+
right
|
205
|
+
"> x </span>s?</DIV>
|
206
|
+
<DIV> </DIV>
|
207
|
+
<DIV>I don't think you need it, <span style=3D"
|
208
|
+
float
|
209
|
+
:
|
210
|
+
right
|
211
|
+
"> c </span>S<span style=3D"
|
212
|
+
float
|
213
|
+
:
|
214
|
+
right
|
215
|
+
"> y </span>A<span style=3D"
|
216
|
+
float
|
217
|
+
:
|
218
|
+
right
|
219
|
+
"> o </span>V<span style=3D"
|
220
|
+
float
|
221
|
+
:
|
222
|
+
right
|
223
|
+
"> d </span>E <span style=3D"
|
224
|
+
float
|
225
|
+
:
|
226
|
+
right
|
227
|
+
"> p </span>5<span style=3D"
|
228
|
+
float
|
229
|
+
:
|
230
|
+
right
|
231
|
+
"> w </span>0<span style=3D"
|
232
|
+
float
|
233
|
+
:
|
234
|
+
right
|
235
|
+
"> h </span>% with <A =
|
236
|
+
href=3D"http://soki65.kapermet.com">http://soki65.kapermet.com</A></DIV><=
|
237
|
+
/BODY></HTML>
|
238
|
+
------=_NextPart_000_0001_01C6514B.10F5A950--
|
239
|
+
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
--===============0630961367==--
|
244
|
+
|
245
|
+
|