sisimai 4.14.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sisimai might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.rubocop.yml +165 -0
- data/.travis.yml +21 -0
- data/ANALYTICAL-PRECISION +54 -0
- data/Changes +5 -0
- data/Developers.mk +129 -0
- data/Gemfile +9 -0
- data/LICENSE +26 -0
- data/Makefile +56 -0
- data/README.md +300 -0
- data/Rakefile +7 -0
- data/Repository.mk +69 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sisimai.rb +60 -0
- data/lib/sisimai/address.rb +218 -0
- data/lib/sisimai/arf.rb +343 -0
- data/lib/sisimai/data.rb +413 -0
- data/lib/sisimai/data/json.rb +36 -0
- data/lib/sisimai/data/yaml.rb +32 -0
- data/lib/sisimai/datetime.rb +518 -0
- data/lib/sisimai/mail.rb +82 -0
- data/lib/sisimai/mail/maildir.rb +85 -0
- data/lib/sisimai/mail/mbox.rb +69 -0
- data/lib/sisimai/mail/stdin.rb +52 -0
- data/lib/sisimai/mda.rb +152 -0
- data/lib/sisimai/message.rb +510 -0
- data/lib/sisimai/mime.rb +127 -0
- data/lib/sisimai/msp.rb +54 -0
- data/lib/sisimai/msp/de/einsundeins.rb +174 -0
- data/lib/sisimai/msp/de/gmx.rb +197 -0
- data/lib/sisimai/msp/jp/biglobe.rb +179 -0
- data/lib/sisimai/msp/jp/ezweb.rb +292 -0
- data/lib/sisimai/msp/jp/kddi.rb +195 -0
- data/lib/sisimai/msp/ru/mailru.rb +306 -0
- data/lib/sisimai/msp/ru/yandex.rb +241 -0
- data/lib/sisimai/msp/uk/messagelabs.rb +250 -0
- data/lib/sisimai/msp/us/amazonses.rb +248 -0
- data/lib/sisimai/msp/us/aol.rb +234 -0
- data/lib/sisimai/msp/us/bigfoot.rb +243 -0
- data/lib/sisimai/msp/us/facebook.rb +306 -0
- data/lib/sisimai/msp/us/google.rb +357 -0
- data/lib/sisimai/msp/us/outlook.rb +243 -0
- data/lib/sisimai/msp/us/receivingses.rb +247 -0
- data/lib/sisimai/msp/us/sendgrid.rb +257 -0
- data/lib/sisimai/msp/us/verizon.rb +311 -0
- data/lib/sisimai/msp/us/yahoo.rb +178 -0
- data/lib/sisimai/msp/us/zoho.rb +198 -0
- data/lib/sisimai/mta.rb +55 -0
- data/lib/sisimai/mta/activehunter.rb +155 -0
- data/lib/sisimai/mta/apachejames.rb +194 -0
- data/lib/sisimai/mta/courier.rb +307 -0
- data/lib/sisimai/mta/domino.rb +209 -0
- data/lib/sisimai/mta/exchange.rb +314 -0
- data/lib/sisimai/mta/exim.rb +549 -0
- data/lib/sisimai/mta/imailserver.rb +227 -0
- data/lib/sisimai/mta/interscanmss.rb +167 -0
- data/lib/sisimai/mta/mailfoundry.rb +173 -0
- data/lib/sisimai/mta/mailmarshalsmtp.rb +206 -0
- data/lib/sisimai/mta/mcafee.rb +201 -0
- data/lib/sisimai/mta/messagingserver.rb +241 -0
- data/lib/sisimai/mta/mfilter.rb +190 -0
- data/lib/sisimai/mta/mxlogic.rb +283 -0
- data/lib/sisimai/mta/notes.rb +206 -0
- data/lib/sisimai/mta/opensmtpd.rb +225 -0
- data/lib/sisimai/mta/postfix.rb +306 -0
- data/lib/sisimai/mta/qmail.rb +335 -0
- data/lib/sisimai/mta/sendmail.rb +317 -0
- data/lib/sisimai/mta/surfcontrol.rb +193 -0
- data/lib/sisimai/mta/userdefined.rb +148 -0
- data/lib/sisimai/mta/v5sendmail.rb +232 -0
- data/lib/sisimai/mta/x1.rb +156 -0
- data/lib/sisimai/mta/x2.rb +157 -0
- data/lib/sisimai/mta/x3.rb +171 -0
- data/lib/sisimai/mta/x4.rb +365 -0
- data/lib/sisimai/mta/x5.rb +208 -0
- data/lib/sisimai/order.rb +217 -0
- data/lib/sisimai/reason.rb +235 -0
- data/lib/sisimai/reason/blocked.rb +105 -0
- data/lib/sisimai/reason/contenterror.rb +53 -0
- data/lib/sisimai/reason/exceedlimit.rb +60 -0
- data/lib/sisimai/reason/expired.rb +53 -0
- data/lib/sisimai/reason/filtered.rb +98 -0
- data/lib/sisimai/reason/hasmoved.rb +45 -0
- data/lib/sisimai/reason/hostunknown.rb +74 -0
- data/lib/sisimai/reason/mailboxfull.rb +118 -0
- data/lib/sisimai/reason/mailererror.rb +55 -0
- data/lib/sisimai/reason/mesgtoobig.rb +77 -0
- data/lib/sisimai/reason/networkerror.rb +57 -0
- data/lib/sisimai/reason/norelaying.rb +71 -0
- data/lib/sisimai/reason/notaccept.rb +63 -0
- data/lib/sisimai/reason/onhold.rb +45 -0
- data/lib/sisimai/reason/rejected.rb +101 -0
- data/lib/sisimai/reason/securityerror.rb +72 -0
- data/lib/sisimai/reason/spamdetected.rb +172 -0
- data/lib/sisimai/reason/suspend.rb +58 -0
- data/lib/sisimai/reason/systemerror.rb +69 -0
- data/lib/sisimai/reason/systemfull.rb +45 -0
- data/lib/sisimai/reason/toomanyconn.rb +73 -0
- data/lib/sisimai/reason/userunknown.rb +194 -0
- data/lib/sisimai/rfc2606.rb +24 -0
- data/lib/sisimai/rfc3464.rb +497 -0
- data/lib/sisimai/rfc3834.rb +150 -0
- data/lib/sisimai/rfc5322.rb +204 -0
- data/lib/sisimai/rhost.rb +47 -0
- data/lib/sisimai/rhost/googleapps.rb +237 -0
- data/lib/sisimai/smtp.rb +58 -0
- data/lib/sisimai/smtp/reply.rb +81 -0
- data/lib/sisimai/smtp/status.rb +755 -0
- data/lib/sisimai/string.rb +65 -0
- data/lib/sisimai/time.rb +11 -0
- data/lib/sisimai/version.rb +4 -0
- data/set-of-emails/README.md +35 -0
- data/set-of-emails/mailbox/mbox-0 +2467 -0
- data/set-of-emails/mailbox/mbox-1 +71 -0
- data/set-of-emails/maildir/bsd/README.md +261 -0
- data/set-of-emails/maildir/bsd/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/bsd/activehunter-02.eml +53 -0
- data/set-of-emails/maildir/bsd/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/bsd/arf-01.eml +66 -0
- data/set-of-emails/maildir/bsd/arf-02.eml +68 -0
- data/set-of-emails/maildir/bsd/arf-03.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-04.eml +89 -0
- data/set-of-emails/maildir/bsd/arf-05.eml +82 -0
- data/set-of-emails/maildir/bsd/arf-06.eml +166 -0
- data/set-of-emails/maildir/bsd/arf-07.eml +59 -0
- data/set-of-emails/maildir/bsd/arf-08.eml +103 -0
- data/set-of-emails/maildir/bsd/arf-09.eml +104 -0
- data/set-of-emails/maildir/bsd/arf-10.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-11.eml +37 -0
- data/set-of-emails/maildir/bsd/arf-12.eml +40 -0
- data/set-of-emails/maildir/bsd/arf-13.eml +76 -0
- data/set-of-emails/maildir/bsd/arf-14.eml +333 -0
- data/set-of-emails/maildir/bsd/arf-15.eml +66 -0
- data/set-of-emails/maildir/bsd/courier-01.eml +79 -0
- data/set-of-emails/maildir/bsd/courier-02.eml +83 -0
- data/set-of-emails/maildir/bsd/courier-03.eml +85 -0
- data/set-of-emails/maildir/bsd/courier-04.eml +87 -0
- data/set-of-emails/maildir/bsd/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/bsd/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/bsd/de-gmx-02.eml +51 -0
- data/set-of-emails/maildir/bsd/de-gmx-03.eml +56 -0
- data/set-of-emails/maildir/bsd/de-gmx-04.eml +51 -0
- data/set-of-emails/maildir/bsd/domino-01.eml +33 -0
- data/set-of-emails/maildir/bsd/domino-02.eml +83 -0
- data/set-of-emails/maildir/bsd/exchange-01.eml +31 -0
- data/set-of-emails/maildir/bsd/exchange-02.eml +67 -0
- data/set-of-emails/maildir/bsd/exchange-03.eml +52 -0
- data/set-of-emails/maildir/bsd/exchange-04.eml +28 -0
- data/set-of-emails/maildir/bsd/exchange-05.eml +56 -0
- data/set-of-emails/maildir/bsd/exchange-06.eml +151 -0
- data/set-of-emails/maildir/bsd/exim-01.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-02.eml +41 -0
- data/set-of-emails/maildir/bsd/exim-03.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-04.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-05.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-06.eml +44 -0
- data/set-of-emails/maildir/bsd/exim-07.eml +28 -0
- data/set-of-emails/maildir/bsd/exim-08.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-09.eml +169 -0
- data/set-of-emails/maildir/bsd/exim-10.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-11.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-12.eml +75 -0
- data/set-of-emails/maildir/bsd/exim-13.eml +145 -0
- data/set-of-emails/maildir/bsd/exim-14.eml +32 -0
- data/set-of-emails/maildir/bsd/exim-15.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-16.eml +98 -0
- data/set-of-emails/maildir/bsd/exim-17.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-18.eml +96 -0
- data/set-of-emails/maildir/bsd/exim-19.eml +52 -0
- data/set-of-emails/maildir/bsd/exim-20.eml +159 -0
- data/set-of-emails/maildir/bsd/exim-21.eml +150 -0
- data/set-of-emails/maildir/bsd/exim-22.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-23.eml +57 -0
- data/set-of-emails/maildir/bsd/exim-24.eml +107 -0
- data/set-of-emails/maildir/bsd/exim-25.eml +18 -0
- data/set-of-emails/maildir/bsd/exim-26.eml +111 -0
- data/set-of-emails/maildir/bsd/exim-27.eml +120 -0
- data/set-of-emails/maildir/bsd/exim-28.eml +148 -0
- data/set-of-emails/maildir/bsd/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/bsd/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/bsd/imailserver-02.eml +36 -0
- data/set-of-emails/maildir/bsd/imailserver-03.eml +28 -0
- data/set-of-emails/maildir/bsd/imailserver-04.eml +15 -0
- data/set-of-emails/maildir/bsd/imailserver-05.eml +92 -0
- data/set-of-emails/maildir/bsd/imailserver-06.eml +29 -0
- data/set-of-emails/maildir/bsd/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/bsd/interscanmss-02.eml +259 -0
- data/set-of-emails/maildir/bsd/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-02.eml +65 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-03.eml +35 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-04.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-05.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-06.eml +33 -0
- data/set-of-emails/maildir/bsd/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/bsd/jp-kddi-02.eml +54 -0
- data/set-of-emails/maildir/bsd/jp-kddi-03.eml +54 -0
- data/set-of-emails/maildir/bsd/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/bsd/mailfoundry-02.eml +49 -0
- data/set-of-emails/maildir/bsd/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/bsd/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/bsd/mcafee-02.eml +65 -0
- data/set-of-emails/maildir/bsd/mcafee-03.eml +59 -0
- data/set-of-emails/maildir/bsd/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-02.eml +72 -0
- data/set-of-emails/maildir/bsd/messagingserver-03.eml +70 -0
- data/set-of-emails/maildir/bsd/messagingserver-04.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-05.eml +98 -0
- data/set-of-emails/maildir/bsd/messagingserver-06.eml +101 -0
- data/set-of-emails/maildir/bsd/messagingserver-07.eml +129 -0
- data/set-of-emails/maildir/bsd/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/bsd/mfilter-02.eml +48 -0
- data/set-of-emails/maildir/bsd/mfilter-03.eml +43 -0
- data/set-of-emails/maildir/bsd/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/bsd/mxlogic-02.eml +44 -0
- data/set-of-emails/maildir/bsd/mxlogic-03.eml +46 -0
- data/set-of-emails/maildir/bsd/notes-01.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-02.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-03.eml +38 -0
- data/set-of-emails/maildir/bsd/notes-04.eml +181 -0
- data/set-of-emails/maildir/bsd/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-02.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-03.eml +36 -0
- data/set-of-emails/maildir/bsd/opensmtpd-04.eml +40 -0
- data/set-of-emails/maildir/bsd/opensmtpd-05.eml +36 -0
- data/set-of-emails/maildir/bsd/postfix-01.eml +60 -0
- data/set-of-emails/maildir/bsd/postfix-02.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-03.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-04.eml +89 -0
- data/set-of-emails/maildir/bsd/postfix-05.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-06.eml +72 -0
- data/set-of-emails/maildir/bsd/postfix-07.eml +74 -0
- data/set-of-emails/maildir/bsd/postfix-08.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-09.eml +76 -0
- data/set-of-emails/maildir/bsd/postfix-10.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-11.eml +86 -0
- data/set-of-emails/maildir/bsd/postfix-12.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-13.eml +81 -0
- data/set-of-emails/maildir/bsd/postfix-14.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-15.eml +69 -0
- data/set-of-emails/maildir/bsd/postfix-16.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-17.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-18.eml +121 -0
- data/set-of-emails/maildir/bsd/postfix-19.eml +105 -0
- data/set-of-emails/maildir/bsd/postfix-20.eml +231 -0
- data/set-of-emails/maildir/bsd/postfix-21.eml +60 -0
- data/set-of-emails/maildir/bsd/qmail-01.eml +40 -0
- data/set-of-emails/maildir/bsd/qmail-02.eml +35 -0
- data/set-of-emails/maildir/bsd/qmail-03.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-04.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-05.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-06.eml +39 -0
- data/set-of-emails/maildir/bsd/qmail-07.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-08.eml +23 -0
- data/set-of-emails/maildir/bsd/qmail-09.eml +103 -0
- data/set-of-emails/maildir/bsd/rfc3464-01.eml +60 -0
- data/set-of-emails/maildir/bsd/rfc3464-02.eml +43 -0
- data/set-of-emails/maildir/bsd/rfc3464-03.eml +40 -0
- data/set-of-emails/maildir/bsd/rfc3464-04.eml +50 -0
- data/set-of-emails/maildir/bsd/rfc3464-05.eml +63 -0
- data/set-of-emails/maildir/bsd/rfc3464-06.eml +48 -0
- data/set-of-emails/maildir/bsd/rfc3464-07.eml +88 -0
- data/set-of-emails/maildir/bsd/rfc3464-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rfc3464-09.eml +93 -0
- data/set-of-emails/maildir/bsd/rfc3464-10.eml +467 -0
- data/set-of-emails/maildir/bsd/rfc3464-11.eml +1171 -0
- data/set-of-emails/maildir/bsd/rfc3464-12.eml +101 -0
- data/set-of-emails/maildir/bsd/rfc3464-13.eml +131 -0
- data/set-of-emails/maildir/bsd/rfc3464-14.eml +121 -0
- data/set-of-emails/maildir/bsd/rfc3464-15.eml +144 -0
- data/set-of-emails/maildir/bsd/rfc3464-16.eml +36 -0
- data/set-of-emails/maildir/bsd/rfc3464-17.eml +109 -0
- data/set-of-emails/maildir/bsd/rfc3464-18.eml +149 -0
- data/set-of-emails/maildir/bsd/rfc3464-19.eml +65 -0
- data/set-of-emails/maildir/bsd/rfc3464-20.eml +145 -0
- data/set-of-emails/maildir/bsd/rfc3464-21.eml +146 -0
- data/set-of-emails/maildir/bsd/rfc3464-22.eml +105 -0
- data/set-of-emails/maildir/bsd/rfc3464-23.eml +21 -0
- data/set-of-emails/maildir/bsd/rfc3464-24.eml +27 -0
- data/set-of-emails/maildir/bsd/rfc3464-25.eml +33 -0
- data/set-of-emails/maildir/bsd/rfc3464-26.eml +98 -0
- data/set-of-emails/maildir/bsd/rfc3464-27.eml +180 -0
- data/set-of-emails/maildir/bsd/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/bsd/rfc3834-02.eml +51 -0
- data/set-of-emails/maildir/bsd/rfc3834-03.eml +33 -0
- data/set-of-emails/maildir/bsd/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-02.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-03.eml +62 -0
- data/set-of-emails/maildir/bsd/ru-mailru-04.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/bsd/ru-yandex-02.eml +113 -0
- data/set-of-emails/maildir/bsd/ru-yandex-03.eml +101 -0
- data/set-of-emails/maildir/bsd/sendmail-01.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-02.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-03.eml +76 -0
- data/set-of-emails/maildir/bsd/sendmail-04.eml +63 -0
- data/set-of-emails/maildir/bsd/sendmail-05.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-06.eml +67 -0
- data/set-of-emails/maildir/bsd/sendmail-07.eml +65 -0
- data/set-of-emails/maildir/bsd/sendmail-08.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-09.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-10.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-11.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-12.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-13.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-14.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-15.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-16.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-17.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-18.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-19.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-20.eml +120 -0
- data/set-of-emails/maildir/bsd/sendmail-21.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-22.eml +73 -0
- data/set-of-emails/maildir/bsd/sendmail-23.eml +137 -0
- data/set-of-emails/maildir/bsd/sendmail-24.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-25.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-26.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-27.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-28.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-29.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-30.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-31.eml +80 -0
- data/set-of-emails/maildir/bsd/sendmail-32.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-33.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-34.eml +75 -0
- data/set-of-emails/maildir/bsd/sendmail-35.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-36.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-37.eml +71 -0
- data/set-of-emails/maildir/bsd/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/bsd/surfcontrol-02.eml +70 -0
- data/set-of-emails/maildir/bsd/surfcontrol-03.eml +70 -0
- data/set-of-emails/maildir/bsd/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/bsd/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/bsd/us-amazonses-02.eml +177 -0
- data/set-of-emails/maildir/bsd/us-amazonses-03.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonses-04.eml +55 -0
- data/set-of-emails/maildir/bsd/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/bsd/us-aol-02.eml +1257 -0
- data/set-of-emails/maildir/bsd/us-aol-03.eml +1264 -0
- data/set-of-emails/maildir/bsd/us-aol-04.eml +1260 -0
- data/set-of-emails/maildir/bsd/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/bsd/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-facebook-02.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-01.eml +70 -0
- data/set-of-emails/maildir/bsd/us-google-02.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-03.eml +51 -0
- data/set-of-emails/maildir/bsd/us-google-04.eml +82 -0
- data/set-of-emails/maildir/bsd/us-google-05.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-06.eml +56 -0
- data/set-of-emails/maildir/bsd/us-google-07.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-08.eml +59 -0
- data/set-of-emails/maildir/bsd/us-google-09.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-10.eml +69 -0
- data/set-of-emails/maildir/bsd/us-google-11.eml +68 -0
- data/set-of-emails/maildir/bsd/us-google-12.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-13.eml +79 -0
- data/set-of-emails/maildir/bsd/us-google-14.eml +304 -0
- data/set-of-emails/maildir/bsd/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/us-outlook-05.eml +85 -0
- data/set-of-emails/maildir/bsd/us-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/us-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-02.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-03.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-04.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-05.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-06.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-07.eml +74 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-02.eml +98 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-03.eml +100 -0
- data/set-of-emails/maildir/bsd/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/bsd/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/bsd/us-yahoo-02.eml +79 -0
- data/set-of-emails/maildir/bsd/us-yahoo-03.eml +93 -0
- data/set-of-emails/maildir/bsd/us-yahoo-04.eml +94 -0
- data/set-of-emails/maildir/bsd/us-yahoo-05.eml +94 -0
- data/set-of-emails/maildir/bsd/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-zoho-02.eml +38 -0
- data/set-of-emails/maildir/bsd/us-zoho-03.eml +37 -0
- data/set-of-emails/maildir/bsd/us-zoho-04.eml +47 -0
- data/set-of-emails/maildir/bsd/us-zoho-05.eml +37 -0
- data/set-of-emails/maildir/bsd/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/bsd/v5sendmail-02.eml +26 -0
- data/set-of-emails/maildir/bsd/v5sendmail-03.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-04.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-05.eml +42 -0
- data/set-of-emails/maildir/bsd/v5sendmail-06.eml +28 -0
- data/set-of-emails/maildir/bsd/v5sendmail-07.eml +35 -0
- data/set-of-emails/maildir/bsd/x1-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x1-02.eml +62 -0
- data/set-of-emails/maildir/bsd/x2-01.eml +41 -0
- data/set-of-emails/maildir/bsd/x2-02.eml +46 -0
- data/set-of-emails/maildir/bsd/x2-03.eml +34 -0
- data/set-of-emails/maildir/bsd/x2-04.eml +0 -0
- data/set-of-emails/maildir/bsd/x2-05.eml +98 -0
- data/set-of-emails/maildir/bsd/x3-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x3-02.eml +64 -0
- data/set-of-emails/maildir/bsd/x3-03.eml +59 -0
- data/set-of-emails/maildir/bsd/x3-04.eml +106 -0
- data/set-of-emails/maildir/bsd/x4-01.eml +92 -0
- data/set-of-emails/maildir/bsd/x4-02.eml +112 -0
- data/set-of-emails/maildir/bsd/x4-03.eml +245 -0
- data/set-of-emails/maildir/bsd/x4-04.eml +81 -0
- data/set-of-emails/maildir/bsd/x4-05.eml +121 -0
- data/set-of-emails/maildir/bsd/x4-06.eml +32 -0
- data/set-of-emails/maildir/bsd/x4-07.eml +153 -0
- data/set-of-emails/maildir/bsd/x5-01.eml +155 -0
- data/set-of-emails/maildir/dos/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/dos/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/dos/arf-01.eml +66 -0
- data/set-of-emails/maildir/dos/courier-01.eml +79 -0
- data/set-of-emails/maildir/dos/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/dos/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/dos/domino-01.eml +33 -0
- data/set-of-emails/maildir/dos/exchange-01.eml +31 -0
- data/set-of-emails/maildir/dos/exim-01.eml +46 -0
- data/set-of-emails/maildir/dos/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/dos/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/dos/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/dos/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/dos/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/dos/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/dos/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/dos/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/dos/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/dos/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/dos/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/dos/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/dos/notes-01.eml +42 -0
- data/set-of-emails/maildir/dos/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/dos/postfix-01.eml +60 -0
- data/set-of-emails/maildir/dos/qmail-01.eml +40 -0
- data/set-of-emails/maildir/dos/rfc3464-01.eml +59 -0
- data/set-of-emails/maildir/dos/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/dos/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/dos/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/dos/sendmail-01.eml +69 -0
- data/set-of-emails/maildir/dos/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/dos/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/dos/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/dos/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/dos/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/dos/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/dos/us-google-01.eml +70 -0
- data/set-of-emails/maildir/dos/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/dos/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/dos/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/dos/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/dos/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/dos/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/dos/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/dos/x1-01.eml +61 -0
- data/set-of-emails/maildir/dos/x2-01.eml +41 -0
- data/set-of-emails/maildir/dos/x3-01.eml +61 -0
- data/set-of-emails/maildir/dos/x4-01.eml +90 -0
- data/set-of-emails/maildir/dos/x5-01.eml +155 -0
- data/set-of-emails/maildir/err/make-test-01.eml +70 -0
- data/set-of-emails/maildir/err/make-test-02.eml +70 -0
- data/set-of-emails/maildir/err/make-test-03.eml +64 -0
- data/set-of-emails/maildir/err/make-test-04.eml +64 -0
- data/set-of-emails/maildir/err/make-test-05.eml +66 -0
- data/set-of-emails/maildir/err/make-test-06.eml +118 -0
- data/set-of-emails/maildir/err/make-test-07.eml +26 -0
- data/set-of-emails/maildir/err/make-test-08.eml +67 -0
- data/set-of-emails/maildir/err/make-test-09.eml +55 -0
- data/set-of-emails/maildir/err/make-test-10.eml +69 -0
- data/set-of-emails/maildir/err/make-test-11.eml +64 -0
- data/set-of-emails/maildir/err/make-test-12.eml +66 -0
- data/set-of-emails/maildir/err/make-test-13.eml +67 -0
- data/set-of-emails/maildir/err/make-test-14.eml +66 -0
- data/set-of-emails/maildir/err/make-test-15.eml +70 -0
- data/set-of-emails/maildir/err/make-test-16.eml +68 -0
- data/set-of-emails/maildir/err/make-test-17.eml +68 -0
- data/set-of-emails/maildir/err/make-test-18.eml +68 -0
- data/set-of-emails/maildir/err/make-test-19.eml +69 -0
- data/set-of-emails/maildir/err/make-test-20.eml +67 -0
- data/set-of-emails/maildir/err/make-test-21.eml +69 -0
- data/set-of-emails/maildir/err/make-test-22.eml +66 -0
- data/set-of-emails/maildir/err/make-test-23.eml +70 -0
- data/set-of-emails/maildir/err/make-test-24.eml +69 -0
- data/set-of-emails/maildir/err/make-test-25.eml +67 -0
- data/set-of-emails/maildir/err/make-test-26.eml +69 -0
- data/set-of-emails/maildir/err/make-test-27.eml +69 -0
- data/set-of-emails/maildir/err/make-test-28.eml +66 -0
- data/set-of-emails/maildir/err/make-test-29.eml +68 -0
- data/set-of-emails/maildir/err/make-test-30.eml +68 -0
- data/set-of-emails/maildir/err/make-test-31.eml +80 -0
- data/set-of-emails/maildir/err/make-test-32.eml +66 -0
- data/set-of-emails/maildir/err/make-test-33.eml +68 -0
- data/set-of-emails/maildir/err/make-test-34.eml +56 -0
- data/set-of-emails/maildir/err/make-test-35.eml +59 -0
- data/set-of-emails/maildir/err/make-test-36.eml +53 -0
- data/set-of-emails/maildir/err/make-test-37.eml +62 -0
- data/set-of-emails/maildir/mac/activehunter-01.eml +1 -2
- data/set-of-emails/maildir/mac/apachejames-01.eml +1 -4
- data/set-of-emails/maildir/mac/arf-01.eml +1 -3
- data/set-of-emails/maildir/mac/courier-01.eml +1 -6
- data/set-of-emails/maildir/mac/de-einsundeins-01.eml +1 -1
- data/set-of-emails/maildir/mac/de-gmx-01.eml +1 -1
- data/set-of-emails/maildir/mac/domino-01.eml +1 -0
- data/set-of-emails/maildir/mac/exchange-01.eml +1 -0
- data/set-of-emails/maildir/mac/exim-01.eml +1 -1
- data/set-of-emails/maildir/mac/google-apps-01.eml +1 -4
- data/set-of-emails/maildir/mac/imailserver-01.eml +1 -0
- data/set-of-emails/maildir/mac/interscanmss-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-biglobe-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-ezweb-01.eml +1 -1
- data/set-of-emails/maildir/mac/jp-kddi-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailfoundry-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailmarshalsmtp-01.eml +1 -2
- data/set-of-emails/maildir/mac/mcafee-01.eml +1 -4
- data/set-of-emails/maildir/mac/messagingserver-01.eml +1 -4
- data/set-of-emails/maildir/mac/mfilter-01.eml +1 -3
- data/set-of-emails/maildir/mac/mxlogic-01.eml +1 -1
- data/set-of-emails/maildir/mac/notes-01.eml +1 -2
- data/set-of-emails/maildir/mac/opensmtpd-01.eml +1 -0
- data/set-of-emails/maildir/mac/postfix-01.eml +1 -3
- data/set-of-emails/maildir/mac/qmail-01.eml +1 -1
- data/set-of-emails/maildir/mac/rfc3464-01.eml +1 -4
- data/set-of-emails/maildir/mac/rfc3834-01.eml +1 -0
- data/set-of-emails/maildir/mac/ru-mailru-01.eml +1 -1
- data/set-of-emails/maildir/mac/ru-yandex-01.eml +1 -4
- data/set-of-emails/maildir/mac/sendmail-01.eml +1 -4
- data/set-of-emails/maildir/mac/surfcontrol-01.eml +1 -5
- data/set-of-emails/maildir/mac/uk-messagelabs-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-amazonses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-aol-01.eml +1 -15
- data/set-of-emails/maildir/mac/us-bigfoot-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-facebook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-google-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-outlook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-receivingses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-sendgrid-01.eml +1 -3
- data/set-of-emails/maildir/mac/us-verizon-01.eml +1 -2
- data/set-of-emails/maildir/mac/us-yahoo-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-zoho-01.eml +1 -2
- data/set-of-emails/maildir/mac/v5sendmail-01.eml +1 -0
- data/set-of-emails/maildir/mac/x1-01.eml +1 -4
- data/set-of-emails/maildir/mac/x2-01.eml +1 -1
- data/set-of-emails/maildir/mac/x3-01.eml +1 -3
- data/set-of-emails/maildir/mac/x4-01.eml +1 -2
- data/set-of-emails/maildir/mac/x5-01.eml +1 -8
- data/set-of-emails/maildir/not/is-not-bounce-01.eml +25 -0
- data/set-of-emails/to-be-debugged-because/reason-is-onhold/onhold-0001.eml +85 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0002.eml +27 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0003.eml +78 -0
- data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml +25 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml +79 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml +72 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml +68 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/no-message-id-from-pr-150.eml +75 -0
- data/set-of-emails/to-be-parsed-for-test/README.md +20 -0
- data/sisimai.gemspec +25 -0
- metadata +647 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
Return-Path: <postmaster@example.co.jp>
|
2
|
+
X-Original-To: shironeko@example.jp
|
3
|
+
Delivered-To: shironeko@example.jp
|
4
|
+
Received: from interscan.example.co.jp (interscan.example.co.jp [192.0.2.3])
|
5
|
+
by mx.example.jp (Postfix) with ESMTP id 0000000000
|
6
|
+
for <shironeko@example.jp>; Thu, 29 Apr 2011 23:34:45 +0900 (JST)
|
7
|
+
Received: from interscan.example.co.jp by localhost.example.co.jp (sendmail)
|
8
|
+
with ESMTP id 00000000000000 for <shironeko@example.jp>;
|
9
|
+
Thu, 29 Apr 2011 23:34:45 +0900
|
10
|
+
Message-Id: <201104290000.00000000000000@mx.example.co.jp>
|
11
|
+
Date: Thu, 29 Apr 2011 23:34:45 +0900
|
12
|
+
From: "InterScan MSS" <postmaster@example.co.jp>
|
13
|
+
To: <shironeko@example.jp>
|
14
|
+
MIME-Version: 1.0
|
15
|
+
Content-Type: multipart/mixed;
|
16
|
+
boundary="------------InterScan_NT_MIME_Boundary"
|
17
|
+
Subject: =?iso-2022-jp?B?GyRCJWElQyU7ITwlOCRyR1s/LiRHJC0kXiQ7JHMhIxsoQg==?=
|
18
|
+
|
19
|
+
|
20
|
+
--------------InterScan_NT_MIME_Boundary
|
21
|
+
Content-type: text/plain
|
22
|
+
|
23
|
+
...
|
24
|
+
|
25
|
+
|
26
|
+
Sent <<< RCPT TO:<kijitora@example.co.jp>
|
27
|
+
Received >>> 550 5.1.1 <kijitora@example.co.jp>... user unknown
|
28
|
+
|
29
|
+
...
|
30
|
+
|
31
|
+
************************ End of message **********************
|
32
|
+
|
33
|
+
--------------InterScan_NT_MIME_Boundary
|
34
|
+
Content-type: message/rfc822
|
35
|
+
|
36
|
+
Received: from mx.example.co.jp ([192.0.2.80]) by smtp5.example.co.jp
|
37
|
+
with SMTP id 0000000.00000000; Thu, 29 Apr 2011 23:34:45 +0900
|
38
|
+
Received: (qmail 10000 invoked from network); 29 Apr 2011 23:34:45 -0000
|
39
|
+
Message-ID: <00000000000.000000000000@e3.example.co.jp>
|
40
|
+
Date: Thu, 29 Apr 2011 23:34:45 +0900 (JST)
|
41
|
+
From: Shironeko <shironeko@example.jp>
|
42
|
+
Subject: Nyaaan
|
43
|
+
MIME-Version: 1.0
|
44
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
45
|
+
Content-Transfer-Encoding: 7bit
|
46
|
+
To: kijitora@example.co.jp
|
47
|
+
|
48
|
+
Nyaan
|
49
|
+
|
@@ -0,0 +1,259 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@sb7.songbird.com>
|
2
|
+
Received: from mailserver.kviv.be (cust210-66.dsl.versadsl.be [62.166.210.66])
|
3
|
+
by sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k2C4XpUM021161
|
4
|
+
for <gpc-talk-bounces@grizz.org>; Sat, 11 Mar 2006 20:33:52 -0800
|
5
|
+
Received: from [192.9.1.53] by mailserver.kviv.be (NTMail
|
6
|
+
5.05.0002/CE0026.01.9294fe1f) with ESMTP id kvqkfaaa for
|
7
|
+
gpc-talk-bounces@grizz.org; Sun, 12 Mar 2006 05:36:18 +0000
|
8
|
+
Date: Sun, 12 Mar 2006 05:36:18 +0100
|
9
|
+
From: imss@kviv.be
|
10
|
+
To: <gpc-talk-bounces@grizz.org>
|
11
|
+
MIME-Version: 1.0
|
12
|
+
Content-Type: multipart/mixed;
|
13
|
+
boundary="------------InterScan_NT_MIME_Boundary"
|
14
|
+
Subject: Mail could not be delivered
|
15
|
+
Message-Id: <04361859181401@mailserver.kviv.be>
|
16
|
+
X-SongbirdInformation: support@songbird.com for more information
|
17
|
+
X-Songbird: Found to be clean
|
18
|
+
X-Songbird-From:
|
19
|
+
|
20
|
+
|
21
|
+
--------------InterScan_NT_MIME_Boundary
|
22
|
+
Content-type: text/plain
|
23
|
+
|
24
|
+
****** Message from InterScan Messaging Security Suite ******
|
25
|
+
|
26
|
+
|
27
|
+
Sent <<< RCPT TO:<isam@kviv.be>
|
28
|
+
Received >>> 550 5.1.1 unknown user.
|
29
|
+
|
30
|
+
Unable to deliver message to <isam@kviv.be> (and other recipients in the same domain).
|
31
|
+
|
32
|
+
************************ End of message **********************
|
33
|
+
|
34
|
+
--------------InterScan_NT_MIME_Boundary
|
35
|
+
Content-type: message/rfc822
|
36
|
+
|
37
|
+
Received: from sb7.songbird.com ([208.184.79.137]) by mailserver.kviv.be
|
38
|
+
with InterScan Messaging Security Suite; Sun, 12 Mar 2006 05:36:16 +0100
|
39
|
+
Received: from sb7.songbird.com (sb7.songbird.com [127.0.0.1])by
|
40
|
+
sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k2C4WSrZ020992for
|
41
|
+
<isam@kviv.be>; Sat, 11 Mar 2006 20:32:28 -0800
|
42
|
+
Subject: The results of your email commands
|
43
|
+
From: gpc-talk-bounces@grizz.org
|
44
|
+
To: isam@kviv.be
|
45
|
+
MIME-Version: 1.0
|
46
|
+
Content-Type: multipart/mixed;
|
47
|
+
boundary="===============0254048733=="
|
48
|
+
Message-ID: <mailman.2432.1142137947.1567.gpc-talk@grizz.org>
|
49
|
+
Date: Sat, 11 Mar 2006 20:32:27 -0800
|
50
|
+
Precedence: bulk
|
51
|
+
X-BeenThere: gpc-talk@grizz.org
|
52
|
+
X-Mailman-Version: 2.1.5
|
53
|
+
List-Id: Grizzly Peak Cyclists general discussion list <gpc-talk.grizz.org>
|
54
|
+
X-List-Administrivia: yes
|
55
|
+
Sender: gpc-talk-bounces@grizz.org
|
56
|
+
Errors-To: gpc-talk-bounces@grizz.org
|
57
|
+
X-SongbirdInformation: support@songbird.com for more information
|
58
|
+
X-Songbird: Found to be clean
|
59
|
+
X-Songbird-From: gpc-talk-bounces@grizz.org
|
60
|
+
X-imss-version: 2.5
|
61
|
+
X-imss-result: Passed
|
62
|
+
X-imss-scores: Clean:1.91248 C:22 M:1 S:5 R:5
|
63
|
+
X-imss-settings: Baseline:3 C:1 M:4 S:4 R:4 (0.5000 0.5000)
|
64
|
+
|
65
|
+
--===============0254048733==
|
66
|
+
Content-Type: text/plain; charset="us-ascii"
|
67
|
+
MIME-Version: 1.0
|
68
|
+
Content-Transfer-Encoding: 7bit
|
69
|
+
|
70
|
+
The results of your email command are provided below. Attached is your
|
71
|
+
original message.
|
72
|
+
|
73
|
+
- Results:
|
74
|
+
Ignoring non-text/plain MIME parts
|
75
|
+
isam@kviv.be is not a member of the GPC-talk mailing list
|
76
|
+
|
77
|
+
- Unprocessed:
|
78
|
+
Re: PaGDramcy news
|
79
|
+
z C i i n a r I n i d s $9 w 9 (10 ip a p y i g l u l t s g )
|
80
|
+
g V p a m I y i u u y m $10 x 5 ( BU 30 a p y i k l j l u s h )
|
81
|
+
v V p i x a r g e r i a $ g 69 (10 WO d p c i o l d l g s l )
|
82
|
+
=20
|
83
|
+
And LG many other.
|
84
|
+
=20
|
85
|
+
Sav q8 e ove Ox r 5 5Z 0% wi sV th ou 7t r o 0O nline s nz tore
|
86
|
+
http://fovy93.withoadri.com
|
87
|
+
|
88
|
+
- Done.
|
89
|
+
|
90
|
+
|
91
|
+
--===============0254048733==
|
92
|
+
Content-Type: message/rfc822
|
93
|
+
MIME-Version: 1.0
|
94
|
+
|
95
|
+
Return-Path: <isam@kviv.be>
|
96
|
+
Received: from bxa.doc.gov (70-88-76-26-ISP-IL.hfc.comcastbusiness.net
|
97
|
+
[70.88.76.26] (may be forged))
|
98
|
+
by sb7.songbird.com (8.12.11/8.12.11) with SMTP id k2C4W5h6020919
|
99
|
+
for <gpc-talk-unsubscribe@grizz.org>; Sat, 11 Mar 2006 20:32:11 -0800
|
100
|
+
Message-ID: <000001c6458d$d20fbd70$afc1a8c0@kca33>
|
101
|
+
Reply-To: "Isamu Shahan" <isam@kviv.be>
|
102
|
+
From: "Isamu Shahan" <isam@kviv.be>
|
103
|
+
To: gpc-talk-unsubscribe@grizz.org
|
104
|
+
Subject: Re: PaGDramcy news
|
105
|
+
Date: Sat, 11 Mar 2006 23:31:24 -0500
|
106
|
+
MIME-Version: 1.0
|
107
|
+
Content-Type: multipart/alternative;
|
108
|
+
boundary="----=_NextPart_000_0001_01C64563.E939B570"
|
109
|
+
X-Priority: 3
|
110
|
+
X-MSMail-Priority: Normal
|
111
|
+
X-Mailer: Microsoft Outlook Express 6.00.2800.1106
|
112
|
+
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
|
113
|
+
X-SongbirdInformation: support@songbird.com for more information
|
114
|
+
X-Songbird: Found to be clean
|
115
|
+
X-Songbird-From: isam@kviv.be
|
116
|
+
|
117
|
+
This is a multi-part message in MIME format.
|
118
|
+
|
119
|
+
------=_NextPart_000_0001_01C64563.E939B570
|
120
|
+
Content-Type: text/plain;
|
121
|
+
charset="us-ascii"
|
122
|
+
Content-Transfer-Encoding: quoted-printable
|
123
|
+
|
124
|
+
z C i i n a r I n i d s $9 w 9 (10 ip a p y i g l u l t s g )
|
125
|
+
g V p a m I y i u u y m $10 x 5 ( BU 30 a p y i k l j l u s h )
|
126
|
+
v V p i x a r g e r i a $ g 69 (10 WO d p c i o l d l g s l )
|
127
|
+
=20
|
128
|
+
And LG many other.
|
129
|
+
=20
|
130
|
+
Sav q8 e ove Ox r 5 5Z 0% wi sV th ou 7t r o 0O nline s nz tore
|
131
|
+
http://fovy93.withoadri.com
|
132
|
+
|
133
|
+
------=_NextPart_000_0001_01C64563.E939B570
|
134
|
+
Content-Type: text/html;
|
135
|
+
charset="us-ascii"
|
136
|
+
Content-Transfer-Encoding: quoted-printable
|
137
|
+
|
138
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
139
|
+
<HTML><HEAD>
|
140
|
+
<META http-equiv=3DContent-Type content=3D"text/html; =
|
141
|
+
charset=3Dus-ascii">
|
142
|
+
<META content=3D"MSHTML 6.00.2800.1106" name=3DGENERATOR>
|
143
|
+
<STYLE></STYLE>
|
144
|
+
</HEAD>
|
145
|
+
<BODY bgColor=3D#ffffff>
|
146
|
+
<DIV><FONT face=3DArial size=3D3><FONT color=3D#2438F1><span style=3D"
|
147
|
+
float:
|
148
|
+
right"> z </span>C<span style=3D"
|
149
|
+
float:
|
150
|
+
right"> i </span>i<span style=3D"
|
151
|
+
float:
|
152
|
+
right"> n </span>a<span style=3D"
|
153
|
+
float:
|
154
|
+
right"> r </span>I<span style=3D"
|
155
|
+
float:
|
156
|
+
right"> n </span>i<span style=3D"
|
157
|
+
float:
|
158
|
+
right"> d </span>s</FONT> <FONT color=3D#EB3815>$9<span style=3D"
|
159
|
+
float:
|
160
|
+
right"> w </span>9</FONT> (10<span style=3D"
|
161
|
+
float:
|
162
|
+
right"> ip </span> <span style=3D"
|
163
|
+
float:
|
164
|
+
right"> a </span>p<span style=3D"
|
165
|
+
float:
|
166
|
+
right"> y </span>i<span style=3D"
|
167
|
+
float:
|
168
|
+
right"> g </span>l<span style=3D"
|
169
|
+
float:
|
170
|
+
right"> u </span>l<span style=3D"
|
171
|
+
float:
|
172
|
+
right"> t </span>s<span style=3D"
|
173
|
+
float:
|
174
|
+
right"> g </span>)</FONT></DIV>
|
175
|
+
<DIV><FONT face=3DArial size=3D3><FONT color=3D#2438F1><span style=3D"
|
176
|
+
float:
|
177
|
+
right"> g </span>V<span style=3D"
|
178
|
+
float:
|
179
|
+
right"> p </span>a<span style=3D"
|
180
|
+
float:
|
181
|
+
right"> m </span>I<span style=3D"
|
182
|
+
float:
|
183
|
+
right"> y </span>i<span style=3D"
|
184
|
+
float:
|
185
|
+
right"> u </span>u<span style=3D"
|
186
|
+
float:
|
187
|
+
right"> y </span>m</FONT> <FONT color=3D#EB3815>$10<span style=3D"
|
188
|
+
float:
|
189
|
+
right"> x </span>5</FONT> (<span style=3D"
|
190
|
+
float:
|
191
|
+
right"> BU </span>30 <span style=3D"
|
192
|
+
float:
|
193
|
+
right"> a </span>p<span style=3D"
|
194
|
+
float:
|
195
|
+
right"> y </span>i<span style=3D"
|
196
|
+
float:
|
197
|
+
right"> k </span>l<span style=3D"
|
198
|
+
float:
|
199
|
+
right"> j </span>l<span style=3D"
|
200
|
+
float:
|
201
|
+
right"> u </span>s<span style=3D"
|
202
|
+
float:
|
203
|
+
right"> h </span>)</FONT></DIV>
|
204
|
+
<DIV><FONT face=3DArial size=3D3><FONT color=3D#2438F1><span style=3D"
|
205
|
+
float:
|
206
|
+
right"> v </span>V<span style=3D"
|
207
|
+
float:
|
208
|
+
right"> p </span>i<span style=3D"
|
209
|
+
float:
|
210
|
+
right"> x </span>a<span style=3D"
|
211
|
+
float:
|
212
|
+
right"> r </span>g<span style=3D"
|
213
|
+
float:
|
214
|
+
right"> e </span>r<span style=3D"
|
215
|
+
float:
|
216
|
+
right"> i </span>a</FONT> <FONT color=3D#EB3815>$<span style=3D"
|
217
|
+
float:
|
218
|
+
right"> g </span>69</FONT> (10<span style=3D"
|
219
|
+
float:
|
220
|
+
right"> WO </span> <span style=3D"
|
221
|
+
float:
|
222
|
+
right"> d </span>p<span style=3D"
|
223
|
+
float:
|
224
|
+
right"> c </span>i<span style=3D"
|
225
|
+
float:
|
226
|
+
right"> o </span>l<span style=3D"
|
227
|
+
float:
|
228
|
+
right"> d </span>l<span style=3D"
|
229
|
+
float:
|
230
|
+
right"> g </span>s<span style=3D"
|
231
|
+
float:
|
232
|
+
right"> l </span>)</FONT></DIV>
|
233
|
+
<DIV><FONT face=3DArial size=3D3></FONT> </DIV>
|
234
|
+
<DIV><FONT face=3DArial size=3D3>And <span style=3D"
|
235
|
+
float:
|
236
|
+
right"> LG </span>many other.</FONT></DIV>
|
237
|
+
<DIV><FONT face=3DArial size=3D3></FONT> </DIV>
|
238
|
+
<DIV><FONT face=3DArial size=3D3>Sav<span style=3D"
|
239
|
+
float:
|
240
|
+
right"> q8 </span>e ove<span style=3D"
|
241
|
+
float:
|
242
|
+
right"> Ox </span>r 5<span style=3D"
|
243
|
+
float:
|
244
|
+
right"> 5Z </span>0% wi<span style=3D"
|
245
|
+
float:
|
246
|
+
right"> sV </span>th ou<span style=3D"
|
247
|
+
float:
|
248
|
+
right"> 7t </span>r o<span style=3D"
|
249
|
+
float:
|
250
|
+
right"> 0O </span>nline s<span style=3D"
|
251
|
+
float:
|
252
|
+
right"> nz </span>tore <A =
|
253
|
+
href=3D"http://fovy93.withoadri.com">http://fovy93.withoadri.com</A></FON=
|
254
|
+
T></DIV></BODY></HTML>
|
255
|
+
------=_NextPart_000_0001_01C64563.E939B570--
|
256
|
+
--===============0254048733==--
|
257
|
+
|
258
|
+
--------------InterScan_NT_MIME_Boundary--
|
259
|
+
|
@@ -0,0 +1,43 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON>
|
2
|
+
Received: from rcpt-expgw4.biglobe.ne.jp (rcpt-expgw4.biglobe.ne.jp [192.0.2.146])
|
3
|
+
by mx.example.com (8.13.4/8.13.4) with ESMTP id p0000000000000
|
4
|
+
for <kijitora@mx.example.com>; Thu, 11 Feb 2014 00:00:00 -0700
|
5
|
+
Received: from biglobe.ne.jp
|
6
|
+
by rcpt-expgw4.biglobe.ne.jp (0000/0000000000) with SMTP id p0000000000000
|
7
|
+
for <kijitora@mx.example.com>; Thu, 11 Feb 2014 00:00:00 +0900
|
8
|
+
Date: Thu, 11 Feb 2014 00:00:00 +0900
|
9
|
+
From: postmaster@biglobe.ne.jp
|
10
|
+
To: kijitora@mx.example.com
|
11
|
+
Subject: Returned mail: Service unavailable
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/mixed; boundary="--_Biglobe000000/000000.biglobe.ne.jp"
|
14
|
+
Message-Id: <20140211000000.000000000.00000000@biglobe.ne.jp>
|
15
|
+
|
16
|
+
This is a MIME-encapsulated message.
|
17
|
+
|
18
|
+
----_Biglobe000000/000000.biglobe.ne.jp
|
19
|
+
Content-Type: text/plain; charset="iso-2022-jp"
|
20
|
+
|
21
|
+
----- The following addresses had delivery problems -----
|
22
|
+
postmaster@mxr.biglobe.ne.jp
|
23
|
+
|
24
|
+
----- Non-delivered information -----
|
25
|
+
The number of messages in recipient's mailbox exceeded the local limit.
|
26
|
+
|
27
|
+
----_Biglobe000000/000000.biglobe.ne.jp
|
28
|
+
Content-Type: message/rfc822
|
29
|
+
|
30
|
+
Received: from rcpt-impgw.biglobe.ne.jp by biglobe.ne.jp (RCPT_GW)
|
31
|
+
id 000000000; Thu, 11 Feb 2014 22:31:56 +0900 (JST)
|
32
|
+
Received: from c31345.example.org (gw.example.org [192.0.2.1])
|
33
|
+
by rcpt-impgw.biglobe.ne.jp (0000/0000000000) with ESMTP id p0000000000000
|
34
|
+
for <postmaster@mxr.biglobe.ne.jp>; Thu, 11 Feb 2014 00:00:00 +0900
|
35
|
+
Message-ID: <000000000000000000000000000000@example.com>
|
36
|
+
To: <postmaster@mxr.biglobe.ne.jp>
|
37
|
+
Subject: Cats
|
38
|
+
Date: Thu, 11 Feb 2014 00:00:00 +0000
|
39
|
+
MIME-Version: 1.0
|
40
|
+
Content-Type: text/plain;
|
41
|
+
From: "Kijitora Neko" <kijitora@mx.example.com>
|
42
|
+
|
43
|
+
Nyaa
|
@@ -0,0 +1,36 @@
|
|
1
|
+
From MAILER-DAEMON Sun Sep 7 21:40:07 2008
|
2
|
+
Return-Path: <MAILER-DAEMON>
|
3
|
+
Received: from ezweb.ne.jp (wmflb12na02.ezweb.ne.jp [222.15.69.197])
|
4
|
+
by mx1.example.jp (R8/cf) with ESMTP id m87Ce7Ih030073
|
5
|
+
for <user@example.or.jp>; Sun, 7 Sep 2008 21:40:07 +0900
|
6
|
+
Received: from wfilter115 (wfilter115-a0 [172.26.26.68])
|
7
|
+
by wsmtpr24.ezweb.ne.jp (EZweb Mail) with ESMTP id EF283A071
|
8
|
+
for <user@example.or.jp>; Sun, 7 Sep 2008 21:40:12 +0900 (JST)
|
9
|
+
MIME-Virsion: 1.0
|
10
|
+
Content-Type: text/plain; charset=iso-2022-jp
|
11
|
+
From: <Postmaster@ezweb.ne.jp>
|
12
|
+
To: <user@example.or.jp>
|
13
|
+
Subject: Mail System Error - Returned Mail
|
14
|
+
X-SPASIGN: NG
|
15
|
+
Message-Id: <20080907124012.EF283A071@wsmtpr24.ezweb.ne.jp>
|
16
|
+
Date: Sun, 7 Sep 2008 21:40:12 +0900 (JST)
|
17
|
+
X-UID: 748
|
18
|
+
Content-Length: 151
|
19
|
+
Status: RO
|
20
|
+
|
21
|
+
<this-message-rejected-by-the-domain-filter@ezweb.ne.jp>
|
22
|
+
|
23
|
+
Each of the following recipients was rejected by a remote mail server.
|
24
|
+
---------------------------------------------------
|
25
|
+
Received: from mta-022.smtp.outgoing.example.co.jp (host [192.0.2.22])
|
26
|
+
by lsean.ezweb.ne.jp (EZweb Mail) with SMTP id 12ABCD8
|
27
|
+
for <this-message-rejected-by-the-domain-filter@ezweb.ne.jp>; Sun, 7 Sep 2008 21:40:11 +0900 (JST)
|
28
|
+
From: user@example.or.jp
|
29
|
+
To: this-message-rejected-by-the-domain-filter@ezweb.ne.jp
|
30
|
+
Mime-Version: 1.0
|
31
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
32
|
+
Content-Transfer-Encoding: 7bit
|
33
|
+
Subject: TEST
|
34
|
+
Message-Id: <20080907124011.12ABCD8@lsean.ezweb.ne.jp>
|
35
|
+
Date: Sun, 7 Sep 2008 21:40:11 +0900 (JST)
|
36
|
+
|
@@ -0,0 +1,65 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON>
|
2
|
+
Received: from ezweb.ne.jp (wmflb12na02.ezweb.ne.jp [222.15.69.197])
|
3
|
+
by mx1.example.co.jp (R8/cf) with ESMTP id x00000000000
|
4
|
+
for <abuse@example.jp>; Thu, 29 Apr 2011 23:45:02 +0900
|
5
|
+
Received: from lsean.ezweb.ne.jp (wsmtp134-b0 [172.24.0.242])
|
6
|
+
by wsmtpr24.ezweb.ne.jp (EZweb Mail) with ESMTP id FFFFFFFFF
|
7
|
+
for <abuse@example.jp>; Thu, 29 Apr 2011 23:45:06 +0900 (JST)
|
8
|
+
Received: by lsean.ezweb.ne.jp (EZweb Mail)
|
9
|
+
id FFFFFFF1; Thu, 29 Apr 2011 23:45:06 +0900 (JST)
|
10
|
+
Date: Thu, 29 Apr 2011 23:45:06 +0900 (JST)
|
11
|
+
From: Mail Administrator <Postmaster@ezweb.ne.jp>
|
12
|
+
Subject: Mail System Error - Returned Mail
|
13
|
+
To: abuse@example.jp
|
14
|
+
MIME-Version: 1.0
|
15
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
16
|
+
boundary="F000000.00000000000/lsean.ezweb.ne.jp"
|
17
|
+
Message-Id: <20110901083506.FFFFFFF1@lsean.ezweb.ne.jp>
|
18
|
+
|
19
|
+
This is a MIME-encapsulated message.
|
20
|
+
|
21
|
+
--F000000.00000000000/lsean.ezweb.ne.jp
|
22
|
+
Content-Description: Notification
|
23
|
+
Content-Type: text/plain; charset=iso-2022-jp
|
24
|
+
Content-Transfer-Encoding: 7bit
|
25
|
+
|
26
|
+
���Τ�����ؤΥ�å������ϥ��顼�Τ��������Ǥ��ޤ���Ǥ�����
|
27
|
+
|
28
|
+
�������륢�ɥ쥹�����Ĥ���ޤ���Ǥ�����
|
29
|
+
��륢�ɥ쥹��ǧ�ξ塢���������Ƥ���������
|
30
|
+
|
31
|
+
The user(s) account is disabled.
|
32
|
+
|
33
|
+
|
34
|
+
<this-local-part-does-not-exist-on-the-server@ezweb.ne.jp>: 550 user unknown (in reply to RCPT TO command)
|
35
|
+
|
36
|
+
--F000000.00000000000/lsean.ezweb.ne.jp
|
37
|
+
Content-Description: Delivery error report
|
38
|
+
Content-Type: message/delivery-status
|
39
|
+
|
40
|
+
Reporting-MTA: dns; lsean.ezweb.ne.jp
|
41
|
+
Arrival-Date: Thu, 29 Apr 2011 23:45:05 +0900 (JST)
|
42
|
+
|
43
|
+
Final-Recipient: rfc822; this-local-part-does-not-exist-on-the-server@ezweb.ne.jp
|
44
|
+
Action: failed
|
45
|
+
Status: 5.0.0
|
46
|
+
|
47
|
+
--F000000.00000000000/lsean.ezweb.ne.jp
|
48
|
+
Content-Description: Undelivered Message
|
49
|
+
Content-Type: message/rfc822
|
50
|
+
|
51
|
+
Received-SPF: Neutral (lsean.ezweb.ne.jp: 192.0.2.11 is neither permitted nor denied by domain of example.jp) client-ip=192.0.2.45; envelope-from=<abuse@example.jp>; helo=localhost;
|
52
|
+
Received: from x.example.ne.jp (unknown [192.0.2.45])
|
53
|
+
by lsean.ezweb.ne.jp (EZweb Mail) with SMTP id F000000
|
54
|
+
for <this-local-part-does-not-exist-on-the-server@ezweb.ne.jp>; Thu, 29 Apr 2011 23:45:05 +0900 (JST)
|
55
|
+
Mime-Version: 1.0
|
56
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
57
|
+
Content-Transfer-Encoding: 7bit
|
58
|
+
Subject: Message
|
59
|
+
Message-Id: <20110000000000.F000000@lsean.ezweb.ne.jp>
|
60
|
+
Date: Thu, 29 Apr 2011 23:45:05 +0900 (JST)
|
61
|
+
X-SPF-AUTH: Neutral (lsean.ezweb.ne.jp: 192.0.2.11 is neither permitted nor denied by domain of example.jp) client-ip=192.0.2.45; envelope-from=<abuse@example.jp>; helo=x.example.ne.jp; domain=example.jp; txt=v=spf1 ; auth=v1;
|
62
|
+
From: abuse@example.jp
|
63
|
+
To: this-local-part-does-not-exist-on-the-server@ezweb.ne.jp
|
64
|
+
|
65
|
+
message
|