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,60 @@
|
|
1
|
+
From VM Wed Dec 27 22:11:47 2000
|
2
|
+
Return-Path: <>
|
3
|
+
Delivered-To: xxxxx@mail.wooz.org
|
4
|
+
Received: by mail.wooz.org (Postfix) via BOUNCE
|
5
|
+
id 68CBFD37E7; Wed, 27 Dec 2000 20:42:55 -0500 (EST)
|
6
|
+
MIME-Version: 1.0
|
7
|
+
Content-Type: multipart/mixed;
|
8
|
+
boundary="17E1DD37E0.977967775/mail.wooz.org"
|
9
|
+
Message-Id: <20001228014255.68CBFD37E7@mail.wooz.org>
|
10
|
+
From: MAILER-DAEMON@mail.wooz.org (Mail Delivery System)
|
11
|
+
To: xxxxx@mail.wooz.org
|
12
|
+
Subject: Undelivered Mail Returned to Sender
|
13
|
+
Date: Wed, 27 Dec 2000 20:42:55 -0500 (EST)
|
14
|
+
|
15
|
+
This is a MIME-encapsulated message.
|
16
|
+
|
17
|
+
--17E1DD37E0.977967775/mail.wooz.org
|
18
|
+
Content-Description: Notification
|
19
|
+
Content-Type: text/plain
|
20
|
+
|
21
|
+
This is the Postfix program at host mail.wooz.org.
|
22
|
+
|
23
|
+
I'm sorry to have to inform you that the message returned
|
24
|
+
below could not be delivered to one or more destinations.
|
25
|
+
|
26
|
+
For further assistance, please contact <postmaster@mail.wooz.org>
|
27
|
+
|
28
|
+
If you do so, please include this problem report. You can
|
29
|
+
delete your own text from the message returned below.
|
30
|
+
|
31
|
+
The Postfix program
|
32
|
+
|
33
|
+
<yyyyy@digicool.com>: Name service error for domain digicool.com: Host not
|
34
|
+
found, try again
|
35
|
+
|
36
|
+
|
37
|
+
--17E1DD37E0.977967775/mail.wooz.org
|
38
|
+
Content-Description: Undelivered Message
|
39
|
+
Content-Type: message/rfc822
|
40
|
+
|
41
|
+
Received: by mail.wooz.org (Postfix, from userid 889)
|
42
|
+
id 17E1DD37E0; Fri, 22 Dec 2000 20:06:42 -0500 (EST)
|
43
|
+
MIME-Version: 1.0
|
44
|
+
Content-Type: text/plain; charset=us-ascii
|
45
|
+
Content-Transfer-Encoding: 7bit
|
46
|
+
Message-ID: <14915.64162.965657.699956@anthem.concentric.net>
|
47
|
+
Date: Fri, 22 Dec 2000 20:06:42 -0500
|
48
|
+
To: yyyyy@digicool.com
|
49
|
+
Subject: testing to yyyyy
|
50
|
+
X-Mailer: VM 6.84 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid
|
51
|
+
X-Attribution: BAW
|
52
|
+
X-Oblique-Strategy: You don't have to be ashamed of using your own ideas
|
53
|
+
X-Url: http://www.wooz.org/yyyyy
|
54
|
+
From: yyyyy@digicool.com (Yyyyy A. Zzzzz)
|
55
|
+
|
56
|
+
|
57
|
+
hello yyyyy
|
58
|
+
|
59
|
+
--17E1DD37E0.977967775/mail.wooz.org--
|
60
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
X-Original-To: nekochan@example.jp
|
3
|
+
Delivered-To: nekochan@example.jp
|
4
|
+
Received: from mx4.example.jp (mx4.example.jp [192.0.2.45])
|
5
|
+
by mx.example.jp (Postfix) with ESMTP id 0000000000
|
6
|
+
for <nekochan@example.jp>; Thu, 24 Apr 2013 00:00:00 +0900 (JST)
|
7
|
+
Received: (qmail 10000 invoked for bounce); 24 Apr 2013 00:00:00 +0900
|
8
|
+
Date: 24 Apr 2013 00:00:00 +0900
|
9
|
+
From: MAILER-DAEMON@mx4.example.jp
|
10
|
+
To: nekochan@example.jp
|
11
|
+
Subject: failure notice
|
12
|
+
|
13
|
+
Hi. This is the qmail-send program at mx4.example.jp.
|
14
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
15
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
16
|
+
|
17
|
+
<kijitora@example.ne.jp>:
|
18
|
+
Sorry, no SMTP connection got far enough; most progress was RCPT TO response; remote host 192.0.2.32 said: 550 Unknown user kijitora@example.ne.jp
|
19
|
+
. (#5.5.0)
|
20
|
+
(Other MXes tried: 192.0.2.32 said 550 for RCPT TO response; 192.0.2.40 said 550 for RCPT TO response; 192.0.2.12 said 550 for RCPT TO response; 192.0.2.24 said 550 for RCPT TO response.)
|
21
|
+
|
22
|
+
--- Below this line is a copy of the message.
|
23
|
+
|
24
|
+
Return-Path: <nekochan@example.jp>
|
25
|
+
Received: (qmail 10000 invoked by uid 999); 24 Apr 2013 00:00:00 +0900
|
26
|
+
Delivered-To: kuroneko@example.com
|
27
|
+
Received: (qmail 88888 invoked from network); 24 Apr 2013 00:00:00 +0900
|
28
|
+
Received: from relay13.example.co.jp (HELO rr41.out.example.co.jp) (192.0.2.4)
|
29
|
+
by mx4s.example.jp with SMTP; 24 Apr 2013 00:00:00 +0900
|
30
|
+
Message-ID: <000000000.9999999999999.JavaMail.postmaster@mailhub>
|
31
|
+
Date: Thu, 24 Apr 2013 00:00:00 +0900 (JST)
|
32
|
+
From: Nyanko <nekochan@example.jp>
|
33
|
+
Reply-To: mail@example.co.jp
|
34
|
+
To: kuroneko@example.com
|
35
|
+
Subject: Message
|
36
|
+
MIME-Version: 1.0
|
37
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
38
|
+
Content-Transfer-Encoding: 7bit
|
39
|
+
|
40
|
+
neko
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from vagrant-centos65.vagrantup.com (c135.kyoto.example.ne.jp [192.0.2.135])
|
3
|
+
by 4jo.example.jp (V8/cf) with SMTP id s618UuEP009055
|
4
|
+
for <kijitora@example.jp>; Tue, 1 Jul 2014 17:30:57 +0900
|
5
|
+
Message-Id: <201407010830.s618UuEP009055@4jo.example.jp>
|
6
|
+
Received: (qmail 18904 invoked for bounce); 1 Jul 2014 08:30:56 -0000
|
7
|
+
Date: 1 Jul 2014 08:30:56 -0000
|
8
|
+
From: MAILER-DAEMON@vagrant-centos65.vagrantup.com
|
9
|
+
To: kijitora@example.jp
|
10
|
+
Subject: failure notice
|
11
|
+
|
12
|
+
Hi. This is the qmail-send program at vagrant-centos65.vagrantup.com.
|
13
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
14
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
15
|
+
|
16
|
+
<userunknown@example.jp>:
|
17
|
+
192.0.2.153 does not like recipient.
|
18
|
+
Remote host said: 550 5.1.1 <userunknown@example.jp>... User Unknown
|
19
|
+
Giving up on 192.0.2.153.
|
20
|
+
|
21
|
+
<filtered@example.jp>:
|
22
|
+
192.0.2.153 does not like recipient.
|
23
|
+
Remote host said: 550 5.2.1 <filtered@example.jp>... User Unknown
|
24
|
+
Giving up on 192.0.2.153.
|
25
|
+
|
26
|
+
--- Below this line is a copy of the message.
|
27
|
+
|
28
|
+
Return-Path: <shironeko@example.jp>
|
29
|
+
Received: (qmail 18901 invoked by uid 0); 1 Jul 2014 08:30:40 -0000
|
30
|
+
Received: from unknown (HELO ?127.0.0.1?) (172.25.73.1)
|
31
|
+
by 172.25.73.144 with SMTP; 1 Jul 2014 08:30:40 -0000
|
32
|
+
Subject: TEST #4
|
33
|
+
From: shironeko@example.jp
|
34
|
+
|
35
|
+
TEST
|
@@ -0,0 +1,22 @@
|
|
1
|
+
Received: (qmail 1111 invoked for bounce); 29 Apr 2010 07:55:24 -0000
|
2
|
+
Date: 29 Apr 2010 07:55:24 -0000
|
3
|
+
From: MAILER-DAEMON@nijo.example.jp
|
4
|
+
To: root@nijo.example.jp
|
5
|
+
Subject: failure notice
|
6
|
+
|
7
|
+
Hi. This is the qmail-send program at nijo.example.jp.
|
8
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
9
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
10
|
+
|
11
|
+
<kijitora@example.org>:
|
12
|
+
Connected to 192.0.2.225 but sender was rejected.
|
13
|
+
Remote host said: 550 5.7.1 <root@nijo.example.jp>... Access denied
|
14
|
+
|
15
|
+
--- Below this line is a copy of the message.
|
16
|
+
|
17
|
+
Return-Path: <root@nijo.example.jp>
|
18
|
+
Received: (qmail 8888 invoked by uid 0); 29 Apr 2010 07:55:23 -0000
|
19
|
+
Date: 29 Apr 2010 07:55:23 -0000
|
20
|
+
Message-ID: <00000000000000.5529.qmail@nijo.example.jp>
|
21
|
+
From: root@nijo.example.jp
|
22
|
+
To: kijitora@example.org
|
@@ -0,0 +1,31 @@
|
|
1
|
+
Received: (qmail 1111 invoked for bounce); 29 Apr 2010 00:00:00 -0000
|
2
|
+
Date: 29 Apr 2010 00:00:00 -0000
|
3
|
+
From: MAILER-DAEMON@nijo.example.jp
|
4
|
+
To: root@nijo.example.jp
|
5
|
+
Subject: failure notice
|
6
|
+
|
7
|
+
Hi. This is the qmail-send program at mx.example.jp.
|
8
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
9
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
10
|
+
|
11
|
+
<kijitora@example.net>:
|
12
|
+
Connected to 192.0.2.112 but my name was rejected.
|
13
|
+
Remote host said: 501 5.0.0 Invalid domain name
|
14
|
+
I'm not going to try again; this message has been in the queue too long.
|
15
|
+
|
16
|
+
--- Below this line is a copy of the message.
|
17
|
+
|
18
|
+
Return-Path: <postmaster@example.jp>
|
19
|
+
Received: (qmail 0000 invoked from network); 29 Apr 2010 23:45:43 -0000
|
20
|
+
Received: from unknown (HELO example.jp) (192.0.2.24)
|
21
|
+
by mx.example.jp with SMTP; 29 Apr 2010 23:45:43 -0000
|
22
|
+
Message-ID: <00000000.000000000@example.jp>
|
23
|
+
Date: Thu, 29 Apr 2010 23:45:40 +0900
|
24
|
+
From: Shironeko <shironeko@example.org>
|
25
|
+
MIME-Version: 1.0
|
26
|
+
To: "Kijitora Cat" <kijitora@example.net>
|
27
|
+
Subject: Nyaaaaaaaaaaaaaaaaaaaaaaaaaaan
|
28
|
+
Content-Type: text/plain; charset=us-ascii; format=flowed
|
29
|
+
Content-Transfer-Encoding: 7bit
|
30
|
+
|
31
|
+
Nyaa
|
@@ -0,0 +1,31 @@
|
|
1
|
+
Received: (qmail 1111 invoked for bounce); 29 Apr 2010 00:00:00 -0000
|
2
|
+
Date: 29 Apr 2010 00:00:00 -0000
|
3
|
+
From: MAILER-DAEMON@nijo.example.jp
|
4
|
+
To: root@nijo.example.jp
|
5
|
+
Subject: failure notice
|
6
|
+
|
7
|
+
Hi. This is the qmail-send program at mx.example.jp.
|
8
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
9
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
10
|
+
|
11
|
+
<kijitora@example.net>:
|
12
|
+
Unable to contact LDAP server. (#4.4.3)I'm not going to try again; this
|
13
|
+
message has been in the queue too long.
|
14
|
+
|
15
|
+
--- Below this line is a copy of the message.
|
16
|
+
|
17
|
+
Return-Path: <postmaster@example.jp>
|
18
|
+
Received: (qmail 0000 invoked from network); 29 Apr 2010 23:45:43 -0000
|
19
|
+
Received: from unknown (HELO example.jp) (192.0.2.24)
|
20
|
+
by mx.example.jp with SMTP; 29 Apr 2010 23:45:43 -0000
|
21
|
+
Message-ID: <00000000.000000000@example.jp>
|
22
|
+
Date: Thu, 29 Apr 2010 23:45:40 +0900
|
23
|
+
From: Shironeko <shironeko@example.org>
|
24
|
+
MIME-Version: 1.0
|
25
|
+
To: "Kijitora Cat" <kijitora@example.net>
|
26
|
+
Subject: Nyaaaaaaaaaaaaaaaaaaaaaaaaaaan
|
27
|
+
Content-Type: text/plain; charset=us-ascii; format=flowed
|
28
|
+
Content-Transfer-Encoding: 7bit
|
29
|
+
|
30
|
+
Nyaa
|
31
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
X-Apparently-To: shironeko@example.co.jp via 192.0.2.59; Thu, 01 Apr 2010 23:59:45 +0900
|
2
|
+
X-Originating-IP: [192.0.2.68]
|
3
|
+
Received: from 192.0.2.68 (HELO smtp05.relay-4.example.co.jp) (192.0.2.68)
|
4
|
+
by mx317.relay-9.example.co.jp with SMTP; Thu, 01 Apr 2010 23:59:45 +0900
|
5
|
+
Received: (qmail 10000 invoked for bounce); 1 Apr 2010 14:59:45 -0000
|
6
|
+
Date: 1 Apr 2010 14:59:45 -0000
|
7
|
+
From: MAILER-DAEMON@example.co.jp
|
8
|
+
To: shironeko@example.co.jp
|
9
|
+
Subject: failure notice
|
10
|
+
|
11
|
+
Hi. This is the qmail-send program at example.co.jp.
|
12
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
13
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
14
|
+
|
15
|
+
<kijitora@example.jp>:
|
16
|
+
192.0.2.135 does not like recipient.
|
17
|
+
Remote host said: 450 4.2.2 <kijitora@example.jp>... Mailbox Full
|
18
|
+
Giving up on 192.0.2.135.
|
19
|
+
I'm not going to try again; this message has been in the queue too long.
|
20
|
+
|
21
|
+
--- Below this line is a copy of the message.
|
22
|
+
|
23
|
+
Return-Path: <shironeko@example.co.jp>
|
24
|
+
Received: (qmail 10000 invoked by alias); 31 Mar 2010 13:59:43 -0000
|
25
|
+
Received: from unknown (HELO ?192.0.2.129?) (shironeko@192.0.2.199 with plain)
|
26
|
+
by smtp05.relay-4.example.co.jp with SMTP; 31 Mar 2010 13:59:43 -0000
|
27
|
+
X-Apparently-From: <shironeko@example.co.jp>
|
28
|
+
Message-Id: <57D03121-12F7-4801-B30F-9E44B15E56DC@example.co.jp>
|
29
|
+
From: Shironeko <shironeko@example.co.jp>
|
30
|
+
To: kijitora@example.jp
|
31
|
+
Content-Type: text/plain; charset=US-ASCII; format=flowed
|
32
|
+
Content-Transfer-Encoding: 7bit
|
33
|
+
Mime-Version: 1.0 (Apple Message framework v936)
|
34
|
+
Subject: Nyaaan
|
35
|
+
Date: Wed, 31 Mar 2010 22:59:43 +0900
|
36
|
+
X-Mailer: Apple Mail (2.936)
|
37
|
+
|
38
|
+
Nyaan
|
39
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
From MAILER-DAEMON Fri Jan 1 00:0:00 2015
|
2
|
+
Return-Path: <>
|
3
|
+
X-Original-To: shironeko@example.ad.jp
|
4
|
+
Delivered-To: shironeko@example.ad.jp
|
5
|
+
Received: from host (mta1)
|
6
|
+
by mta.example.jp (Postfix) with SMTP id F00000
|
7
|
+
for shironeko@example.ad.jp; Fri, 1 Jan 2015 00:00:00 +0900 (JST)
|
8
|
+
Received: (qmail host invoked for bounce); 1 Jan 2015 00:00:00 +0900
|
9
|
+
Date: 1 Jan 2015 00:00:00 +0900
|
10
|
+
From: MAILER-DAEMON@example.jp
|
11
|
+
To: shironeko@example.ad.jp
|
12
|
+
Subject: failure notice
|
13
|
+
|
14
|
+
Hi. This is the qmail-send program at MTA.
|
15
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
16
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
17
|
+
|
18
|
+
<kijitora@example.jp>:
|
19
|
+
Sorry, I wasn't able to establish an SMTP connection. (#4.4.1)
|
20
|
+
I'm not going to try again; this message has been in the queue too long.
|
21
|
+
|
22
|
+
--- Below this line is a copy of the message.
|
@@ -0,0 +1,23 @@
|
|
1
|
+
From MAILER-DAEMON Mon Jan 1 00:00:00 2015
|
2
|
+
Return-Path: <>
|
3
|
+
X-Original-To: shironeko@example.ad.jp
|
4
|
+
Delivered-To:shironeko@example.ad.jp
|
5
|
+
Received: from mta.example.jp
|
6
|
+
by mx.example.jp (Postfix) with SMTP id ffffffff
|
7
|
+
for <shironeko@example.ad.jp>; Mon, 1 Jan 2015 00:00:00 +0900 (JST)
|
8
|
+
Received: (qmail 7120 invoked for bounce); 1 Jan 2015 00:00:00 +0900
|
9
|
+
Date: 1 Jan 2015 00:00:00 +0900
|
10
|
+
From: MAILER-DAEMON@example.ad.jp
|
11
|
+
To: shironeko@example.ad.jp
|
12
|
+
Subject: failure notice
|
13
|
+
|
14
|
+
Hi. This is the qmail-send program at example.ad.jp.
|
15
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
16
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
17
|
+
|
18
|
+
<shironeko@example.ad.jp>:
|
19
|
+
192.0.2.1 does not like recipient.
|
20
|
+
Remote host said: 552 Error: disk quota exceeded
|
21
|
+
Giving up on 192.0.2.20.
|
22
|
+
|
23
|
+
--- Below this line is a copy of the message.
|
@@ -0,0 +1,103 @@
|
|
1
|
+
From VM Thu Oct 4 15:25:26 2001
|
2
|
+
X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil]
|
3
|
+
[nil "" "4" "November" "1999" "21:42:45" "-0000" "MAILER-DAEMON@gate0.n-h.net" "MAILER-DAEMON@gate0.n-h.net" nil "89" "failure notice" "^From:" nil nil "11" nil nil nil nil nil]
|
4
|
+
nil)
|
5
|
+
Message-Id: <199911042119.QAA21584@python.org>
|
6
|
+
Content-Length: 3215
|
7
|
+
MIME-Version: 1.0
|
8
|
+
From: MAILER-DAEMON@gate0.n-h.net
|
9
|
+
To: psa-members-admin@python.org
|
10
|
+
Subject: failure notice
|
11
|
+
Date: 4 Nov 1999 21:42:45 -0000
|
12
|
+
X-Digest: Mailman bounce lack-of-detection
|
13
|
+
|
14
|
+
Hi. This is the qmail-send program at gate0.n-h.net.
|
15
|
+
I'm afraid I wasn't able to deliver your message to the following addresses.
|
16
|
+
This is a permanent error; I've given up. Sorry it didn't work out.
|
17
|
+
|
18
|
+
<psadisc@wwwmail.n-h.de>:
|
19
|
+
|
20
|
+
--- Below this line is a copy of the message.
|
21
|
+
|
22
|
+
Return-Path: <psa-members-admin@python.org>
|
23
|
+
Received: (qmail 23042 invoked from network); 4 Nov 1999 21:42:35 -0000
|
24
|
+
Received: from one.n-h.net (HELO n-h.net) (root@195.254.4.1)
|
25
|
+
by wwwmail.n-h.de with SMTP; 4 Nov 1999 21:42:35 -0000
|
26
|
+
Received: from python.org (parrot.python.org [132.151.1.90])
|
27
|
+
by n-h.net (8.8.5/8.8.5) with ESMTP id WAA00074
|
28
|
+
for <psadisc@n-h.net>; Thu, 4 Nov 1999 22:45:15 +0100
|
29
|
+
Received: from python.org (localhost [127.0.0.1])
|
30
|
+
by python.org (8.9.1a/8.9.1) with ESMTP id QAA20872;
|
31
|
+
Thu, 4 Nov 1999 16:10:19 -0500 (EST)
|
32
|
+
Received: from origin.ea.com (hidden-user@gnat6.owo.com [208.12.170.6])
|
33
|
+
by python.org (8.9.1a/8.9.1) with ESMTP id QAA20823
|
34
|
+
for <psa-members@python.org>; Thu, 4 Nov 1999 16:09:48 -0500 (EST)
|
35
|
+
Received: from forest.origin.ea.com (molach.origin.ea.com [159.153.98.2])
|
36
|
+
by origin.ea.com (8.8.8/8.8.8PJ) with ESMTP id PAA19774;
|
37
|
+
Thu, 4 Nov 1999 15:26:35 -0600 (CST)
|
38
|
+
Received: by molach.origin.ea.com with Internet Mail Service (5.5.2448.0)
|
39
|
+
id <VWGD5VQP>; Thu, 4 Nov 1999 15:00:30 -0600
|
40
|
+
Message-ID: <11A17AA2B9EAD111BCEA00A0C9B4179303385B62@molach.origin.ea.com>
|
41
|
+
From: "Asbahr, Jason" <Jasbahr@origin.EA.com>
|
42
|
+
To: "'beazley@cs.uchicago.edu'" <beazley@cs.uchicago.edu>, chriss@dnastar.com
|
43
|
+
Cc: psa-members@python.org
|
44
|
+
Subject: RE: [PSA MEMBERS] ObjC.py ?
|
45
|
+
Date: Thu, 4 Nov 1999 15:00:29 -0600
|
46
|
+
MIME-Version: 1.0
|
47
|
+
X-Mailer: Internet Mail Service (5.5.2448.0)
|
48
|
+
Content-Type: text/plain;
|
49
|
+
charset="iso-8859-1"
|
50
|
+
Sender: psa-members-admin@python.org
|
51
|
+
Errors-To: psa-members-admin@python.org
|
52
|
+
X-Mailman-Version: 1.0.2
|
53
|
+
Precedence: bulk
|
54
|
+
List-Id: Python Software Activity members discussion list <psa-members.python.org>
|
55
|
+
X-BeenThere: psa-members@python.org
|
56
|
+
|
57
|
+
I had the impression that SWIG supported the relatively recent
|
58
|
+
versions of GNU ObjC, but not earlier versions, such as NeXT's
|
59
|
+
original ObjC extensions to GCC. True?
|
60
|
+
|
61
|
+
Cheers,
|
62
|
+
|
63
|
+
Jason Asbahr
|
64
|
+
Origin Systems, Inc.
|
65
|
+
jasbahr@origin.ea.com
|
66
|
+
|
67
|
+
-----Original Message-----
|
68
|
+
From: David Beazley [mailto:beazley@cs.uchicago.edu]
|
69
|
+
Sent: Wednesday, November 03, 1999 11:13 PM
|
70
|
+
To: chriss@dnastar.com
|
71
|
+
Cc: psa-members@python.org
|
72
|
+
Subject: Re: [PSA MEMBERS] ObjC.py ?
|
73
|
+
|
74
|
+
|
75
|
+
chriss@dnastar.com writes:
|
76
|
+
> Does anyone know what is left of the effort to interface
|
77
|
+
Python/ObjectiveC?
|
78
|
+
> E.g. is there a module, bits of code ... ?
|
79
|
+
>
|
80
|
+
|
81
|
+
Well, it's not widely known, but SWIG has some support for ObjectiveC.
|
82
|
+
I haven't used this feature of SWIG in quite awhile, but I did use it
|
83
|
+
to build some Python interfaces to some simple ObjectiveC programs I
|
84
|
+
wrote about 3 years ago. I can't think of any reason why it wouldn't
|
85
|
+
work (unless there has been some sort of bit-rot that I'm not aware
|
86
|
+
of).
|
87
|
+
|
88
|
+
Cheers,
|
89
|
+
|
90
|
+
Dave
|
91
|
+
|
92
|
+
|
93
|
+
_______________________________________________
|
94
|
+
PSA-members mailing list
|
95
|
+
PSA-members@python.org
|
96
|
+
http://www.python.org/mailman/listinfo/psa-members
|
97
|
+
|
98
|
+
_______________________________________________
|
99
|
+
PSA-members mailing list
|
100
|
+
PSA-members@python.org
|
101
|
+
http://www.python.org/mailman/listinfo/psa-members
|
102
|
+
|
103
|
+
|
@@ -0,0 +1,60 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@smtpgw.example.jp>
|
2
|
+
Received: from localhost (localhost)
|
3
|
+
by smtpgw.example.jp (V8/cf) id r9G5FZh9018575;
|
4
|
+
Wed, 16 Oct 2013 14:15:35 +0900
|
5
|
+
Date: Wed, 16 Oct 2013 14:15:35 +0900
|
6
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@smtpgw.example.jp>
|
7
|
+
Message-Id: <201310160515.r9G5FZh9018575@smtpgw.example.jp>
|
8
|
+
To: <kijitora@example.org>
|
9
|
+
MIME-Version: 1.0
|
10
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
11
|
+
boundary="r9G5FZh9018575.1381900535/smtpgw.example.jp"
|
12
|
+
Subject: Returned mail: see transcript for details
|
13
|
+
Auto-Submitted: auto-generated (failure)
|
14
|
+
|
15
|
+
This is a MIME-encapsulated message
|
16
|
+
|
17
|
+
--r9G5FZh9018575.1381900535/smtpgw.example.jp
|
18
|
+
|
19
|
+
Your message to <nekochan> was automatically rejected:
|
20
|
+
Not enough disk space
|
21
|
+
|
22
|
+
--r9G5FZh9018575.1381900535/smtpgw.example.jp
|
23
|
+
Content-Type: message/delivery-status
|
24
|
+
|
25
|
+
Reporting-MTA: dns; smtpgw.example.jp
|
26
|
+
Received-From-MTA: DNS; p0000-ipbfpfx00kyoto.kyoto.example.co.jp
|
27
|
+
Arrival-Date: Wed, 16 Oct 2013 14:15:34 +0900
|
28
|
+
|
29
|
+
Final-Recipient: RFC822; userunknown@bouncehammer.jp
|
30
|
+
Action: failed
|
31
|
+
Status: 5.1.1
|
32
|
+
Remote-MTA: DNS; mx.bouncehammer.jp
|
33
|
+
Diagnostic-Code: SMTP; 550 5.1.1 <userunknown@bouncehammer.jp>... User Unknown
|
34
|
+
Last-Attempt-Date: Wed, 16 Oct 2013 14:15:35 +0900
|
35
|
+
|
36
|
+
--r9G5FZh9018575.1381900535/smtpgw.example.jp
|
37
|
+
Content-Type: message/rfc822
|
38
|
+
|
39
|
+
Return-Path: <kijitora@example.org>
|
40
|
+
Received: from [192.0.2.25] (p0000-ipbfpfx00kyoto.kyoto.example.co.jp [192.0.2.25])
|
41
|
+
(authenticated bits=0)
|
42
|
+
by smtpgw.example.jp (V8/cf) with ESMTP id r9G5FXh9018568
|
43
|
+
for <userunknown@bouncehammer.jp>; Wed, 16 Oct 2013 14:15:34 +0900
|
44
|
+
From: "Kijitora Cat" <kijitora@example.org>
|
45
|
+
Content-Type: text/plain; charset=utf-8
|
46
|
+
Content-Transfer-Encoding: base64
|
47
|
+
Subject: =?utf-8?B?44OQ44Km44Oz44K544Oh44O844Or44Gu44OG44K544OIKOaXpQ==?=
|
48
|
+
=?utf-8?B?5pys6KqeKQ==?=
|
49
|
+
Date: Wed, 16 Oct 2013 14:15:35 +0900
|
50
|
+
Message-Id: <E1C50F1B-1C83-4820-BC36-AC6FBFBE8568@example.org>
|
51
|
+
To: userunknown@bouncehammer.jp
|
52
|
+
Mime-Version: 1.0 (Apple Message framework v1283)
|
53
|
+
X-Mailer: Apple Mail (2.1283)
|
54
|
+
|
55
|
+
5aSq55yJ54yr44CB6K2m5oiS44GX44Gm44Gm44KC54yr44GY44KD44KJ44GX44KS5o+644KJ44Gb
|
56
|
+
44Gw5a+E44Gj44Gm5p2l44KL44CCDQoNCg==
|
57
|
+
|
58
|
+
--r9G5FZh9018575.1381900535/smtpgw.example.jp--
|
59
|
+
|
60
|
+
|