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 @@
|
|
1
|
+
Received: by LITEMAIL51.bigfoot.com (LiteMail v3.03(LITEMAIL51)) with SMTP id 1412281813_LITEMAIL51_5437911_7120404;
|
-
-201412281816847
|
|
1
2
|
----- The following addresses had permanent fatal errors -----
|
2
3
|
----- Transcript of session follows -----
|
3
|
-
-201412281816847
|
4
|
-
-201412281816847
|
5
4
|
by relay3 with SMTP; 29 Dec 2014 02:17:06 -0000
|
6
|
-
-201412281816847--
|
@@ -0,0 +1 @@
|
|
1
|
+
Received: from smtpin.mx.facebook.com (smtpout001-bnc.ash2.facebook.com [66.220.157.24])
|
2
|
boundary="sn/yogdleEAO11VkUgc2e3qqW/xjCUPJ2jX2rQ=="
|
1
|
-
-sn/yogdleEAO11VkUgc2e3qqW/xjCUPJ2jX2rQ==
|
2
|
-
-sn/yogdleEAO11VkUgc2e3qqW/xjCUPJ2jX2rQ==
|
3
|
-
-sn/yogdleEAO11VkUgc2e3qqW/xjCUPJ2jX2rQ==
|
4
|
-
-sn/yogdleEAO11VkUgc2e3qqW/xjCUPJ2jX2rQ==--
|
@@ -0,0 +1 @@
|
|
1
|
+
Delivered-To: the-local-part-of-google-mail-address@gmail.com
|
2
|
Fri, 18 Jul 2014 00:31:04 -0700 (PDT)
|
1
3
|
d=googlemail.com; s=20120113;
|
2
4
|
h=mime-version:from:to:subject:message-id:date:content-type;
|
3
5
|
bh=XmODsVpAGl5aM2KEfa/3jRes/isHrQHD/XOShQsUAN0=;
|
4
6
|
b=Msdrdiy5rgIknlq95t+rMYMBSYOukg05OZTeYJEilMmE80mMvvH65+L31ZzmA0SLhE
|
5
7
|
Y1FzJVpASoT5vawFO74ek6e1q+P9dtKGtAMgCGtl0GDDhpVS9jIwxEVlZllF92XG7CEj
|
6
8
|
pl13Gssc5oX9ZNrcbyetLgNL0rWd05kMAYfeefSA3tbDj3fYXIhGCpdHqtSKFm5vuQNp
|
7
9
|
lgNuhteyak2/jBT21Ao7i6z+uh4cPAEBImcNCd9IlvvawlcH3aE8zL0plYmbFg8Yc/rM
|
8
10
|
iSIGFYsJ/Ni+t9IWD2E4zCjBWL2dvGVSxUzmEeTEGCn7Y/SBzlgUUBstpONOgYMw4GwA
|
9
11
|
oTUA==
|
10
12
|
Fri, 18 Jul 2014 00:31:02 -0700 (PDT)
|
11
13
|
00:31:02 -0700 (PDT)
|
12
14
|
userunknown@example.jp
|
13
|
-
---- Original message -----
|
14
15
|
d=gmail.com; s=20120113;
|
15
16
|
h=from:content-type:content-transfer-encoding:subject:message-id:date
|
16
17
|
:to:mime-version;
|
17
18
|
bh=g3zLYH4xKxcPrHOD18z9YfpQcnk/GaJedfustWU5uGs=;
|
18
19
|
b=ZSIhPzjFyoLb8+kZOXuUNiwIbQV+/L/DUxKWPWRkYf4Y75EkmgRHPI+FpUqrJDhIcc
|
19
20
|
CyESI8sAru7lsEP42/YxT425H4v6dNgWvvKTtq8VnVuNu/YLvZ6i6yVc9egwLQ+xSn+t
|
20
21
|
CxD7I4ayVnHhjJIM5WwboD/9qmJIIfVY1gFmno8ZEG2JjyriJXiHfNcBI/tpidI7dk9c
|
21
22
|
PoGQmArJ+tzlGT3K3AAtnDA/+Z3L7FoQ15NDa9QLu98pFZAFMXTSnGrzHtHnyLqHWVeN
|
22
23
|
7FMfMV/AcRfjdEZTiY6SOQyT2Zz52Ts8ac5wAFGs4gmx7bF0lu1pTFtvN48280FolcZC
|
23
24
|
U2Fw==
|
24
25
|
Fri, 18 Jul 2014 00:31:02 -0700 (PDT)
|
25
26
|
by mx.google.com with ESMTPSA id nw13sm19667002pab.37.2014.07.18.00.31.00
|
26
27
|
for <multiple recipients>
|
27
28
|
(version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128);
|
28
29
|
Fri, 18 Jul 2014 00:31:01 -0700 (PDT)
|
29
30
|
userunknown@example.jp
|
@@ -0,0 +1 @@
|
|
1
|
+
x-store-info:D6taffyBScEUZsL+ZXbbDvsjG9szfvD7
|
-
-9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h
|
|
1
2
|
kijitora@example.jp
|
2
|
-
-9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h
|
3
|
-
-9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h
|
4
|
-
-9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h--
|
@@ -0,0 +1 @@
|
|
1
|
+
Return-Path: <>
|
-
-----=_Part_0_1984813963.1443707337938
|
|
1
|
-
-----=_Part_0_1984813963.1443707337938
|
2
|
-
-----=_Part_0_1984813963.1443707337938
|
3
2
|
by inbound-smtp.us-west-2.amazonaws.com with SMTP id m8udbiboi34u53ubdet5bhftamqdgt0mmr8k4v01
|
4
3
|
for userunknown@neko.example.jp;
|
5
4
|
Thu, 01 Oct 2015 13:48:54 +0000 (UTC)
|
6
5
|
(authenticated bits=0)
|
7
6
|
by nyaan.example.co.jp (V8/cf) with ESMTP id t91DmqSR004439
|
8
7
|
for <userunknown@neko.example.jp>; Thu, 1 Oct 2015 22:48:53 +0900
|
9
|
-
-----=_Part_0_1984813963.1443707337938--
|
@@ -0,0 +1 @@
|
|
1
|
+
X-Apparently-To: shironeko@y.example.co.jp via 183.79.150.51; Sat, 22 Nov 2014 07:11:04 +0900
|
2
|
sawl0IXLu5Vq0VYyY2Y16vBYcdGR_B1BKjwXuA.0lcGaBgOF0keiRGeBSRhj
|
1
3
|
7ueCNSqQlbIMtKyypHMyYDohrk70zKjAX_e6EiY1AjNzLM9U_WgsgccDi0zN
|
2
4
|
l8jjKtVTsHdFpBxYyyAZY6ceqzKvfZiYbmYjYghhGsMJP6PZxMfLxu.zVNsb
|
3
5
|
T6EKpnxVSGaLLzH3CmW8j7nSbRcqfN_0m_0fgkj._ZIKFhH5l_yPexo9fLw0
|
4
6
|
M4xRgT2aQbbYthE1oQyxHNfsc1orfNVusgtnXRbAnnWgZkpSH5cSl3bh3n0Z
|
5
7
|
t.yeX69BxkhMEeV1VOjx.zIGayq7uGySUqcUnxcXhTjIzDy1Fw2sHg0GMSZQ
|
6
8
|
WzcC9k9I9H_LtQpkxhC5Dqx21A74.HVGN7kxe93KHhr68a6o1HgEPsLhFgh4
|
7
9
|
Se2hrdfHLriOaDVr5j.6DoqGWk._mNWo6sLL8sUHtAnxuwABb45nprvzpn0I
|
8
10
|
cRuWXZJ18zWkkNWZDTLQlLfZioL7sdCW9qblqnIaFhIY4m8pOc1CwAv2EMX2
|
9
11
|
40pWTgLUmTubSIuhXi3uJl.vt3MwxE9towZn6fLTP4V.lTZRnTT2FUi1WNkb
|
10
12
|
2jDsr5pSTvmYTCdQTp9tZFPDkRv.XeKJ8q3wIaRp3WAV2SiUkKNkRcCu.km_
|
11
13
|
as67LrrpMlR.NeuFYzKcq0EEt2W8TjqLVsREobQGFC8ZNgjpjmG017rjwlBk
|
12
14
|
tuGeAi0BA643cxy6IsJDwwqsv3F5D9NqAjYWsW5__kpxOzQG1yR8rJN7KnvY
|
13
15
|
GyhIoP1cCyjNqF9iLp8Q1ov2lFsRtdCi1tgn79Ayg8AhVrD3tptgjT3UVZ_1
|
14
16
|
cEri.WSVF5Y7WkqrudPtlG0k.SzM7UpY.BXB8KGNsx3obMp8KJ41rIGoeRAE
|
15
17
|
a8co7.TLeUiGrNgNs6R2f_leJm1AvL6rWVn7pBMV5MqPkTNa4OMTRyh8P.y7
|
16
18
|
Zt7xR6QIbISMdi76D0fMdyMsPXGVTZ9nmkXVNvJx5PsAsGQ.TRRtbsMV_yrf
|
17
19
|
fjCs9Iuik2NRnR8BRAoFmFrxzTAgVFYY58mr9ByvZBh8wAFXhFdVc2ayG8Pn
|
18
20
|
zNofMyIG6ue.q0IMkliXV5.yyhzHbdhhUA--
|
19
21
|
by mta508.mail.kks.y.example.co.jp with SMTP; Sat, 22 Nov 2014 07:11:04 +0900
|
20
|
-
-- Below this line is a copy of the message.
|
21
22
|
s=yj20110701; d=y.example.co.jp;
|
22
23
|
h=Received:X-YMail-JAS:X-Apparently-From:X-YMail-OSG:From:Content-Type:Content-Transfer-Encoding:Subject:Message-Id:Date:To:Mime-Version:X-Mailer;
|
23
24
|
b=tXd6Ppevs+2A7a9RYXZsxn4K1wKmIP0Mk9fsjYzeLf5q1v1Qxf60qOXjUJTP3+JG0zA1x9IBEjnQvOm1vlBY9Lj2zglakDjyWBKfaAx6veimH8/qYlxLoY/To5/1VsSJGvROhyl1SPGrqECIWnIzHIrZ2q31N1EM8iucq4oiC9Q= ;
|
24
25
|
by applesmtp521.mail.kks.y.example.co.jp with SMTP; 21 Nov 2014 22:11:03 -0000
|
25
26
|
m3sj6dsvP_9bP8hEP7_2W4n_K3vmObQqvT6rMmKBrzDDS0YpnA.2Nar7N_E7
|
26
27
|
aISFplUQjPSApYVUSzC.eo3K3XqQ.N.AsxwFh3qgsKU7A4OTMdZNu6zBQbtg
|
27
28
|
jXfDET56hII6qsok6NsRgVf3DLOF8lvEgyKgy1wlFjO.JRYyBkyxbNepfch9
|
28
29
|
R4aNHqfdPCY7d0wVJ5IawhTAVMbPm1LWU6vvwKyU1za1dO.lbxYMO3PGtRzz
|
29
30
|
Pzotzaw32Qye0sCKYVf1KxbFIVnU0hs6BiThQI5n8Lzs7EEABI6yFDu_qzpy
|
30
31
|
dnBPZyqyrgeCPJzsS1IfEDww2GVuMv.Fb0SA63UgNkwScNL5OwMbdayOmdvn
|
31
32
|
pjYNGLhc.q7pwoo2glOoKwX55hYOzw2hsKx7BrjXgeLUkZINaQkBKi0GQzQ2
|
32
33
|
OlZiIYTcypNQmHOcfHzgKm9HNAPBul5Q9.J70BNqK7Lc-
|
@@ -0,0 +1 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.com>
|
2
|
by mx5.example.net (Post.Office MTA v3.1.2 release (FF000-0000) ID# 0-00000000000000000)
|
1
3
|
with SMTP id 00000000 for <shironeko@example.co.jp>;
|
2
4
|
Thu, 29 Apr 1998 23:34:45 -0700
|
3
5
|
Sat, 29 Apr 1995 23:34:45 +0900
|
4
6
|
----- Transcript of session follows -----
|
5
7
|
----- Unsent message follows -----
|
6
8
|
Thu, 29 Apr 1995 23:34:45 +0900
|
@@ -0,0 +1 @@
|
|
1
|
+
Return-Path: <>
|
2
|
by 9jo.example.jp (V8/cf) with ESMTP id 00000000000000
|
1
3
|
for <shironeko@example.jp>; Thu, 29 Apr 2010 23:34:45 +0900
|
2
4
|
by mx4.kyoto.example.co.jp (Postfix) with SMTP id 00000000000
|
3
5
|
for <shironeko@example.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
4
|
-
----fff000000000000000000000
|
5
6
|
charset="iso-2022-jp"
|
6
|
-
--The following addresses had delivery errors---
|
7
|
-
----fff000000000000000000000
|
8
7
|
by relay5.1jo.example.co.jp with Mail2000 ESMTP Server V4.49
|
9
8
|
(envelope-from <shironeko@example.jp>); Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
10
9
|
by r4.kyoto.example.co.jp (Postfix) with ESMTP id 00000000000
|
11
10
|
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
12
11
|
by karasuma.kyoto.example.co.jp (Postfix) with ESMTP id 00000000000
|
13
12
|
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900 (JST)
|
14
13
|
by smptd450.example.co.jp with ESMTP; 29 Apr 2010 23:34:45 +0900
|
15
14
|
(authenticated bits=0)
|
16
15
|
by 9jo.example.jp (V8/cf) with ESMTP id 00000000000000
|
17
16
|
for <kijitora@example.co.jp>; Thu, 29 Apr 2010 23:34:45 +0900
|
18
|
-
----fff000000000000000000000--
|
@@ -0,0 +1 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@mx44.example.com>
|
-
-------------0000000000000_000000000000
|
|
1
2
|
This is an automatically generated Delivery Status Notification.
|
2
3
|
* kijitora@example.com
|
3
4
|
Technical details:
|
4
|
-
-------------0000000000000_000000000000
|
5
|
-
-------------0000000000000_000000000000--
|
@@ -0,0 +1 @@
|
|
1
|
+
Return-path: <simoni@vhost1.example.com>
|
-
-- Below this line is a copy of the message.
|
|
1
2
|
(envelope-sender <bouncehandler@example.com>)
|
2
3
|
by p3plsmtp04-01.prod.phx3.secureserver.net (qmail-1.03) with SMTP
|
3
4
|
for <subscriber@example.com>; 8 Dec 2011 16:25:14 -0000
|
4
5
|
by p3pismtp01-036.prod.phx3.secureserver.net with ESMTP; 08 Dec 2011 09:21:15 -0700
|
5
|
-
-=20
|
@@ -0,0 +1 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@example.co.jp>
|
2
|
by ksdc2288sv02 with SMTP; 15 Oct 2015 06:22:22 -0000
|
1
3
|
by 0 with SMTP; 15 Oct 2015 15:22:22 +0900
|
2
4
|
by vs-002.example.co.jp with ESMTP; 15 Oct 2015 15:22:22 +0900
|
3
5
|
by ip-005.email.example.net with ESMTP; 15 Oct 2015 15:22:22 +0900
|
4
6
|
by mx05.example.co.jp with SMTP; 15 Oct 2015 15:22:22 +0900
|
5
|
-
-TMMSG_FFFFFFFF_0000_2222_2222_000000000000
|
6
|
-
---- The following addresses had permanent delivery errors -----
|
7
|
-
-TMMSG_FFFFFFFF_0000_2222_2222_000000000000
|
8
|
-
-CAT22222.022222000/vrrr-22.int.example.co.jp
|
9
7
|
----- The following addresses had permanent delivery errors -----
|
10
|
-
-CAT22222.022222000/vrrr-22.int.example.co.jp
|
11
|
-
-CAT22222.022222000/vrrr-22.int.example.co.jp
|
12
8
|
information available from domain of shironeko@cat.example.co.jp)
|
13
9
|
identity=mailfrom; client-ip=192.0.2.61;
|
14
10
|
receiver=mx05.example.co.jp;
|
15
11
|
envelope-from="shironeko@cat.example.co.jp";
|
16
12
|
x-sender="shironeko@cat.example.co.jp"; x-conformance=spf_only
|
17
13
|
by mx05.example.co.jp with ESMTP; 15 Oct 2015 15:22:22 +0900
|
18
14
|
by iron03v.email.example.net with ESMTP; 15 Oct 2015 15:22:22 +0900
|
19
15
|
by guard04.email.example.net with SMTP; 15 Oct 2015 15:22:22 +0900
|
20
16
|
by 0 with SMTP; 15 Oct 2015 15:22:22 +0900
|
21
17
|
by cccccccccccc with SMTP; 15 Oct 2015 06:22:22 -0000
|
22
|
-
-CAT22222.022222000/vrrr-22.int.example.co.jp--
|
23
|
-
-TMMSG_FFFFFFFF_0000_2222_2222_000000000000--
|
@@ -0,0 +1,25 @@
|
|
1
|
+
Return-Path: <shironeko@example.com>
|
2
|
+
Received: from haineko.example.jp (c135.kyoto.example.ne.jp. [192.0.2.135])
|
3
|
+
by mx.example.com with ESMTPSA id uj1sm5989012pac.21.2013.07.15.13.16.37
|
4
|
+
for <kijitora@example.jp>
|
5
|
+
(version=TLSv1 cipher=RC4-SHA bits=128/128);
|
6
|
+
Mon, 15 Jul 2013 13:16:38 -0700 (PDT)
|
7
|
+
Received: from [127.0.0.1] ([127.0.0.1]) by haineko.example.jp with HTTP id
|
8
|
+
r6G5GZa04810SOeg; Tue, 16 Jul 2013 05:16:35 JST
|
9
|
+
To: kijitora@example.jp
|
10
|
+
Subject: =?UTF-8?B?44Gr44KD44KT44GT?=
|
11
|
+
X-SMTP-Engine: Haineko 0.0.1
|
12
|
+
X-Originating-IP: 127.0.0.1
|
13
|
+
X-Mailer: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4
|
14
|
+
OpenSSL/0.9.8x zlib/1.2.5
|
15
|
+
Reply-to: mikeneko@example.org
|
16
|
+
X-HTTP-Referer:
|
17
|
+
Date: Mon, 15 Jul 2013 13:16:38 -0700 (PDT)
|
18
|
+
Message-Id: <51e458a6.21eb420a.5f83.4ce2@mx.example.com>
|
19
|
+
From: Kijitora <shironeko@example.com>
|
20
|
+
MIME-Version: 1.0
|
21
|
+
Content-Type: text/plain; charset="UTF-8"
|
22
|
+
Content-Transfer-Encoding: 8bit
|
23
|
+
|
24
|
+
にゃーーーーーーーーーーー
|
25
|
+
|
@@ -0,0 +1,85 @@
|
|
1
|
+
Return-Path: <postmaster@btconnect.com>
|
2
|
+
Delivered-To: bob@nlenet.net
|
3
|
+
Received: from c2bapps1.btconnect.com (c2bapps1.btconnect.com [193.113.209.21])
|
4
|
+
by main.nlenet.net (Postfix) with SMTP id ED8D113D126
|
5
|
+
for <bob@nleaudio.com>; Sun, 4 Nov 2001 02:45:49 -0500 (EST)
|
6
|
+
Received: from btconnect.com by c2bapps1.btconnect.com id <g.02673-0@c2bapps1.btconnect.com>; Sun, 4 Nov 2001 07:45:32 +0000
|
7
|
+
Message-Type: Delivery Report
|
8
|
+
X400-Received: by /ADMD= /C=WW/; Relayed; Sun, 4 Nov 2001 07:45:31 +0000
|
9
|
+
X400-Received: by mta c2bapps1-hme1 in /ADMD= /C=WW/; Relayed; Sun, 4 Nov 2001 07:45:31 +0000
|
10
|
+
X400-MTS-Identifier: [/ADMD= /C=WW/;c2bapps1.b:026710:20011104074531]
|
11
|
+
From: postmaster@btconnect.com
|
12
|
+
To: bob@nleaudio.com
|
13
|
+
Subject: Delivery Report (failure) for pr@allen-heath.com
|
14
|
+
Date: Sun, 4 Nov 2001 07:45:32 +0000
|
15
|
+
Message-ID: <"c2bapps1.b:026710:20011104074531"@btconnect.com>
|
16
|
+
Content-Identifier: test
|
17
|
+
MIME-Version: 1.0
|
18
|
+
Content-Type: multipart/report; boundary="---Multi-Part-Report-Level-1-1-2672"
|
19
|
+
X-Mozilla-Status: 8001
|
20
|
+
X-Mozilla-Status2: 00000000
|
21
|
+
X-UIDL: 34456246710d0000
|
22
|
+
|
23
|
+
|
24
|
+
-----Multi-Part-Report-Level-1-1-2672
|
25
|
+
|
26
|
+
This report relates to your message:
|
27
|
+
Subject: test,
|
28
|
+
Message-ID: <3BE4F1EC.8306C281@nleaudio.com>,
|
29
|
+
To: pr@allen-heath.com
|
30
|
+
|
31
|
+
of Sun, 4 Nov 2001 07:45:31 +0000
|
32
|
+
|
33
|
+
Your message was not delivered to:
|
34
|
+
pr@allen-heath.com
|
35
|
+
for the following reason:
|
36
|
+
Diagnostic was Unable to transfer, -1
|
37
|
+
Information MTA '62.6.150.133' gives error message 5.7.1 Unable to relay for pr@allen-heath.com
|
38
|
+
|
39
|
+
The Original Message follows:
|
40
|
+
|
41
|
+
-----Multi-Part-Report-Level-1-1-2672
|
42
|
+
Content-Type: message/delivery-status
|
43
|
+
|
44
|
+
Reporting-MTA: x400; mta c2bapps1-hme1 in /ADMD= /C=WW/
|
45
|
+
Arrival-Date: Sun, 4 Nov 2001 07:45:00 +0000
|
46
|
+
DSN-Gateway: dns; c2bapps1.btconnect.com
|
47
|
+
X400-Conversion-Date: Sun, 4 Nov 2001 07:45:32 +0000
|
48
|
+
Original-Envelope-Id: [/ADMD= /C=WW/;<3BE4F1EC.8306C281@nleaudio.com>]
|
49
|
+
X400-Content-Identifier: test
|
50
|
+
X400-Encoded-Info: ia5-text
|
51
|
+
X400-Content-Correlator: Subject: test,
|
52
|
+
Message-ID: <3BE4F1EC.8306C281@nleaudio.com>,
|
53
|
+
To: pr@allen-heath.com
|
54
|
+
|
55
|
+
Original-Recipient: rfc822; pr@allen-heath.com
|
56
|
+
Final-Recipient: x400; /RFC-822=pr(a)allen-heath.com/ADMD= /C=WW/
|
57
|
+
X400-Originally-Specified-Recipient-Number: 1
|
58
|
+
Action: failed
|
59
|
+
Diagnostic-Code: Reason 1 (Unable-To-Transfer); Diagnostic -1 (Unknown)
|
60
|
+
Status: 5.0.0
|
61
|
+
X400-Supplementary-Info: "MTA '62.6.150.133' gives error message 5.7.1 Unable to relay for pr(a)allen-heath.com"
|
62
|
+
X400-Last-Trace: Sun, 4 Nov 2001 07:45:00 +0000
|
63
|
+
|
64
|
+
-----Multi-Part-Report-Level-1-1-2672
|
65
|
+
Content-Type: message/rfc822
|
66
|
+
|
67
|
+
Received: from ns.nlenet.net by c2bapps1 with SMTP (XT-PP); Sun, 4 Nov 2001 07:45:00 +0000
|
68
|
+
Received: from nleaudio.com (66-133-142-213.roc.frontiernet.net [66.133.142.213])
|
69
|
+
by ns.nlenet.net (Postfix) with ESMTP id E354A770C
|
70
|
+
for <pr@allen-heath.com>; Sun, 4 Nov 2001 02:44:57 -0500 (EST)
|
71
|
+
Message-ID: <3BE4F1EC.8306C281@nleaudio.com>
|
72
|
+
Date: Sun, 04 Nov 2001 02:44:44 -0500
|
73
|
+
From: "Bob Puff@NLE" <bob@nleaudio.com>
|
74
|
+
X-Mailer: Mozilla 4.78 [en] (Win95; U)
|
75
|
+
X-Accept-Language: en
|
76
|
+
MIME-Version: 1.0
|
77
|
+
To: pr@allen-heath.com
|
78
|
+
Subject: test
|
79
|
+
Content-Type: text/plain; charset=us-ascii
|
80
|
+
Content-Transfer-Encoding: 7bit
|
81
|
+
|
82
|
+
test, please disregard.
|
83
|
+
|
84
|
+
-----Multi-Part-Report-Level-1-1-2672--
|
85
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@sb7.songbird.com>
|
2
|
+
Received: from moutng.kundenserver.de (moutng.kundenserver.de
|
3
|
+
[212.227.126.187])
|
4
|
+
by sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k0TN474K030502
|
5
|
+
for <gpc-talk-bounces@grizz.org>; Sun, 29 Jan 2006 15:04:07 -0800
|
6
|
+
Received: from mx by mx.kundenserver.de id 0MKxMK-1F3LZu2Mij-0004S7;
|
7
|
+
Mon, 30 Jan 2006 00:03:26 +0100
|
8
|
+
To: gpc-talk-bounces@grizz.org
|
9
|
+
From: "Mail Delivery System" <Mailer-Daemon@kundenserver.de>
|
10
|
+
Subject: Mail delivery failed: returning message to sender
|
11
|
+
Date: Mon, 30 Jan 2006 00:03:26 +0100
|
12
|
+
Message-ID: <0MKxMK-1F3LZu2Mij-0004S7@mx.kundenserver.de>
|
13
|
+
Precedence: bulk
|
14
|
+
X-Original-ID: 0MKxMK-1F3LZt3R61-0004S7
|
15
|
+
X-SongbirdInformation: support@songbird.com for more information
|
16
|
+
X-Songbird: Found to be clean
|
17
|
+
X-Songbird-From:
|
18
|
+
|
19
|
+
This message was created automatically by mail delivery software.
|
20
|
+
|
21
|
+
A message that you sent could not be delivered to one or more of
|
22
|
+
its recipients. This is a permanent error. The following addresses
|
23
|
+
failed:
|
24
|
+
|
25
|
+
RobotMail@auto-walther.de:
|
26
|
+
quota exceeded
|
27
|
+
|
@@ -0,0 +1,78 @@
|
|
1
|
+
Return-Path: <MAILER-DAEMON@sb7.songbird.com>
|
2
|
+
Received: from uranus.cinergycom.net (uranus.cinergycom.net [216.135.2.7])
|
3
|
+
by sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k2V74mN8029551
|
4
|
+
for <gpc-talk-bounces@grizz.org>; Thu, 30 Mar 2006 23:04:48 -0800
|
5
|
+
Received: from gaffer.cinergycom.net ([216.135.3.23])
|
6
|
+
by uranus.cinergycom.net with esmtp (Exim 4.60) id 1FPDg3-0003Ii-8c
|
7
|
+
for gpc-talk-bounces@grizz.org; Fri, 31 Mar 2006 01:04:11 -0600
|
8
|
+
Received: from root by gaffer.cinergycom.net with local (Exim 4.52)
|
9
|
+
id 1FPDg3-0007ln-3j
|
10
|
+
for gpc-talk-bounces@grizz.org; Fri, 31 Mar 2006 01:04:11 -0600
|
11
|
+
Auto-Submitted: auto-generated
|
12
|
+
From: Mail Delivery System <Mailer-Daemon@gaffer.cinergycom.net>
|
13
|
+
To: gpc-talk-bounces@grizz.org
|
14
|
+
Subject: Mail delivery failed: returning message to sender
|
15
|
+
Message-Id: <E1FPDg3-0007ln-3j@gaffer.cinergycom.net>
|
16
|
+
Date: Fri, 31 Mar 2006 01:04:11 -0600
|
17
|
+
X-SongbirdInformation: support@songbird.com for more information
|
18
|
+
X-Songbird: Clean
|
19
|
+
X-Songbird-From:
|
20
|
+
|
21
|
+
This message was created automatically by mail delivery software.
|
22
|
+
|
23
|
+
A message that you sent could not be delivered to one or more of its
|
24
|
+
recipients. This is a permanent error. The following address(es) failed:
|
25
|
+
|
26
|
+
an undisclosed address
|
27
|
+
(generated from xvlogtfsei@the-messenger.com)
|
28
|
+
|
29
|
+
------ This is a copy of the message, including all the headers. ------
|
30
|
+
|
31
|
+
Return-path: <gpc-talk-bounces@grizz.org>
|
32
|
+
Received: from sb7.songbird.com ([208.184.79.137])
|
33
|
+
by gaffer.cinergycom.net with esmtp (Exim 4.52)
|
34
|
+
id 1FPDg0-0007jU-1y
|
35
|
+
for xvlogtfsei@the-messenger.com; Fri, 31 Mar 2006 01:04:10 -0600
|
36
|
+
Received: from sb7.songbird.com (sb7.songbird.com [127.0.0.1])
|
37
|
+
by sb7.songbird.com (8.12.11/8.12.11) with ESMTP id k2V74GQL029495
|
38
|
+
for <xvlogtfsei@the-messenger.com>; Thu, 30 Mar 2006 23:04:16 -0800
|
39
|
+
MIME-Version: 1.0
|
40
|
+
Content-Type: text/plain; charset="us-ascii"
|
41
|
+
Content-Transfer-Encoding: 7bit
|
42
|
+
Subject: Your message to GPC-talk awaits moderator approval
|
43
|
+
From: gpc-talk-bounces@grizz.org
|
44
|
+
To: xvlogtfsei@the-messenger.com
|
45
|
+
Message-ID: <mailman.9022.1143788655.1568.gpc-talk@grizz.org>
|
46
|
+
Date: Thu, 30 Mar 2006 23:04:15 -0800
|
47
|
+
Precedence: bulk
|
48
|
+
X-BeenThere: gpc-talk@grizz.org
|
49
|
+
X-Mailman-Version: 2.1.5
|
50
|
+
List-Id: Grizzly Peak Cyclists general discussion list <gpc-talk.grizz.org>
|
51
|
+
X-List-Administrivia: yes
|
52
|
+
Sender: gpc-talk-bounces@grizz.org
|
53
|
+
Errors-To: gpc-talk-bounces@grizz.org
|
54
|
+
X-SongbirdInformation: support@songbird.com for more information
|
55
|
+
X-Songbird: Clean
|
56
|
+
X-Songbird-From: gpc-talk-bounces@grizz.org
|
57
|
+
X-CCC-Cleanmail-Spam-Version: 1.1
|
58
|
+
X-CCC-Cleanmail-Spam-Extended-Info: SA score = 0.6/5.0
|
59
|
+
* 0.6 NO_REAL_NAME From: does not include a real name
|
60
|
+
X-CCC-Cleanmail-Spam: No spam detected
|
61
|
+
|
62
|
+
Your mail to 'GPC-talk' with the subject
|
63
|
+
|
64
|
+
GAIN UP
|
65
|
+
|
66
|
+
Is being held until the list moderator can review it for approval.
|
67
|
+
|
68
|
+
The reason it is being held:
|
69
|
+
|
70
|
+
Post by non-member to a members-only list
|
71
|
+
|
72
|
+
Either the message will get posted to the list, or you will receive
|
73
|
+
notification of the moderator's decision. If you would like to cancel
|
74
|
+
this posting, please visit the following URL:
|
75
|
+
|
76
|
+
http://www.grizz.org/mailman/confirm/gpc-talk/420aa8073840d743a30950f4a67869bf3a253dd3
|
77
|
+
|
78
|
+
|
data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
Return-Path: <Symantec_AntiVirus_for_SMTP_Gateways@csri.org>
|
2
|
+
Received: from mailscan.csri.org ([66.208.49.51])
|
3
|
+
by sb7.songbird.com (8.12.11/8.12.11) with SMTP id k2KIvJEj025085
|
4
|
+
for <gpc-talk-bounces@grizz.org>; Mon, 20 Mar 2006 10:57:19 -0800
|
5
|
+
Message-Id: <200603201857.k2KIvJEj025085@sb7.songbird.com>
|
6
|
+
From: Symantec_AntiVirus_for_SMTP_Gateways@csri.org
|
7
|
+
To: gpc-talk-bounces@grizz.org
|
8
|
+
Date: Mon, 20 Mar 2006 13:56:41 -0500
|
9
|
+
Subject: =?utf-8?B?RGVsaXZlcnkgZmFpbHVyZSBub3RpZmljYXRpb25=?=
|
10
|
+
MIME-Version: 1.0
|
11
|
+
Content-Type: text/plain; charset=utf-8
|
12
|
+
X-SongbirdInformation: support@songbird.com for more information
|
13
|
+
X-Songbird: Clean
|
14
|
+
X-Songbird-From: symantec_antivirus_for_smtp_gateways@csri.org
|
15
|
+
|
16
|
+
Your message with Subject: Re: [GPC] Bike lost and found....
|
17
|
+
could not be delivered to the following recipients:
|
18
|
+
|
19
|
+
RLipton@prev.org
|
20
|
+
|
21
|
+
Please do not resend your original message.
|
22
|
+
|
23
|
+
Delivery attempts will continue to be made for 5 day(s).
|
24
|
+
|
25
|
+
|