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,79 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.152])
|
3
|
+
by alan.rezo.net (Postfix) with ESMTP id 3909F3B0271
|
4
|
+
for <spip-commit-bounces@rezo.net>;
|
5
|
+
Sun, 15 Jun 2008 01:26:23 +0200 (CEST)
|
6
|
+
Received: by fg-out-1718.google.com with SMTP id l27so3405949fgb.11
|
7
|
+
for <spip-commit-bounces@rezo.net>;
|
8
|
+
Sat, 14 Jun 2008 16:26:21 -0700 (PDT)
|
9
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
10
|
+
d=googlemail.com; s=gamma;
|
11
|
+
h=domainkey-signature:received:received:message-id:from:to:subject
|
12
|
+
:date; bh=BFkuUFhgu/6jTo35rSt+ExVUNbJkbG7m9ZSeWMMiYys=;
|
13
|
+
b=iARaUItND8loi45qRlzvtfufPkNdALsDLbSkg2q1kT7kQ+4v0OXcW2oCV6u8r6c+Ty
|
14
|
+
hOaxiihkqMqgFknPssT6kaYS/u1IWeuEQnSltFULpQNh+rpW4yHC1hxUQ1jP6NRH3hfB
|
15
|
+
y3T3UN69T0sG9Szqe/1zVYEVPxAbdnJnygZ64=
|
16
|
+
DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma;
|
17
|
+
h=message-id:from:to:subject:date;
|
18
|
+
b=FZYhpgymcWTMdaReUBtWfMMdThgG3Lk2UyVlK9XjPB7pwvAoTS8+eXQnP1IOC+iYQ+
|
19
|
+
2wkii49cJP1JmtmMJBDmAJ5Hhq34r5g8R8yQqx5iLvj7I7aLP4AnmGnhSxqb6LbM/CoF
|
20
|
+
xqjobWv+LjVHXV1Cy2oo0//B0M2mWKAv2/xGE=
|
21
|
+
Received: by 10.86.26.1 with SMTP id 1mr6414899fgz.49.1213485981022;
|
22
|
+
Sat, 14 Jun 2008 16:26:21 -0700 (PDT)
|
23
|
+
Received: by 10.86.26.1 with SMTP id 1mr8116260fgz.49;
|
24
|
+
Sat, 14 Jun 2008 16:26:21 -0700 (PDT)
|
25
|
+
Message-ID: <000e0cd25cf4d6b921044fa8b85f@googlemail.com>
|
26
|
+
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
|
27
|
+
To: spip-commit-bounces@rezo.net
|
28
|
+
Subject: Delivery Status Notification (Delay)
|
29
|
+
Date: Sat, 14 Jun 2008 16:26:21 -0700 (PDT)
|
30
|
+
|
31
|
+
This is an automatically generated Delivery Status Notification
|
32
|
+
|
33
|
+
THIS IS A WARNING MESSAGE ONLY.
|
34
|
+
|
35
|
+
YOU DO NOT NEED TO RESEND YOUR MESSAGE.
|
36
|
+
|
37
|
+
Delivery to the following recipient has been delayed:
|
38
|
+
|
39
|
+
luis.hiam@gmail.com
|
40
|
+
|
41
|
+
Message will be retried for 2 more day(s)
|
42
|
+
|
43
|
+
----- Message header follows -----
|
44
|
+
|
45
|
+
Received: by 10.86.26.1 with SMTP id 1mr4665798fgz.49.1213394647106;
|
46
|
+
Fri, 13 Jun 2008 15:04:07 -0700 (PDT)
|
47
|
+
Return-Path: <spip-commit-bounces@rezo.net>
|
48
|
+
Received: from alan.rezo.net (alan.rezo.net [217.24.84.2])
|
49
|
+
by mx.google.com with ESMTP id 4si6055077fgg.9.2008.06.13.15.03.59;
|
50
|
+
Fri, 13 Jun 2008 15:04:07 -0700 (PDT)
|
51
|
+
Received-SPF: pass (google.com: best guess record for domain of spip-commit-bounces@rezo.net designates 217.24.84.2 as permitted sender) client-ip=217.24.84.2;
|
52
|
+
Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of spip-commit-bounces@rezo.net designates 217.24.84.2 as permitted sender) smtp.mail=spip-commit-bounces@rezo.net
|
53
|
+
Received: from alan.rezo.net (localhost.rezo.net [127.0.0.1])
|
54
|
+
by alan.rezo.net (Postfix) with ESMTP id 6A8E131CC54;
|
55
|
+
Sat, 14 Jun 2008 00:00:49 +0200 (CEST)
|
56
|
+
Received: by alan.rezo.net (Postfix, from userid 1001)
|
57
|
+
id 17BCA31C00A; Sat, 14 Jun 2008 00:00:04 +0200 (CEST)
|
58
|
+
To: spip-commit@rezo.net
|
59
|
+
From: webdiff tracspip <spip-commit@rezo.net>
|
60
|
+
Message-Id: <20080613220004.17BCA31C00A@alan.rezo.net>
|
61
|
+
Date: Sat, 14 Jun 2008 00:00:04 +0200 (CEST)
|
62
|
+
Subject: [spip-commit] webdiff tracspip 14.06.2008
|
63
|
+
X-BeenThere: spip-commit@rezo.net
|
64
|
+
X-Mailman-Version: 2.1.6b2
|
65
|
+
Precedence: list
|
66
|
+
List-Id: "SPIP : toutes les modifs du code" <spip-commit.rezo.net>
|
67
|
+
List-Unsubscribe: <http://listes.rezo.net/mailman/listinfo/spip-commit>,
|
68
|
+
<mailto:spip-commit-request@rezo.net?subject=unsubscribe>
|
69
|
+
List-Archive: <http://listes.rezo.net/archives/spip-commit>
|
70
|
+
List-Post: <mailto:spip-commit@rezo.net>
|
71
|
+
List-Help: <mailto:spip-commit-request@rezo.net?subject=help>
|
72
|
+
List-Subscribe: <http://listes.rezo.net/mailman/listinfo/spip-commit>,
|
73
|
+
<mailto:spip-commit-request@rezo.net?subject=subscribe>
|
74
|
+
Content-Type: multipart/mixed; boundary="===============0262606712=="
|
75
|
+
Sender: spip-commit-bounces@rezo.net
|
76
|
+
Errors-To: spip-commit-bounces@rezo.net
|
77
|
+
|
78
|
+
----- Message body suppressed -----
|
79
|
+
|
@@ -0,0 +1,304 @@
|
|
1
|
+
From <> Wed Nov 25 10:58:32 2015
|
2
|
+
Delivered-To: cacco.taiwan@gmail.com
|
3
|
+
Received: from gmail-pop.l.google.com [74.125.23.109]
|
4
|
+
by ip-172-31-25-6.ap-northeast-1.compute.internal with IMAP (fetchmail-6.3.17)
|
5
|
+
for <batch@localhost> (single-drop); Wed, 25 Nov 2015 10:58:32 +0800 (CST)
|
6
|
+
Received: by 10.25.141.129 with SMTP id p123csp2392605lfd; Tue, 24 Nov 2015
|
7
|
+
18:09:44 -0800 (PST)
|
8
|
+
X-Received: by 10.25.14.209 with SMTP id 200mr15018571lfo.117.1448417384153;
|
9
|
+
Tue, 24 Nov 2015 18:09:44 -0800 (PST)
|
10
|
+
Return-Path: <>
|
11
|
+
Received: from mail-lf0-x248.google.com (mail-lf0-x248.google.com.
|
12
|
+
[2a00:1450:4010:c07::248]) by mx.google.com with ESMTPS id
|
13
|
+
a10si10581961lfa.238.2015.11.24.18.09.44 for <cacco.taiwan@gmail.com>
|
14
|
+
(version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 24 Nov
|
15
|
+
2015 18:09:44 -0800 (PST)
|
16
|
+
Received-SPF: pass (google.com: best guess record for domain of
|
17
|
+
mail-lf0-x248.google.com designates 2a00:1450:4010:c07::248 as permitted
|
18
|
+
sender) client-ip=2a00:1450:4010:c07::248;
|
19
|
+
Authentication-Results: mx.google.com; spf=pass (google.com: best guess record
|
20
|
+
for domain of mail-lf0-x248.google.com designates 2a00:1450:4010:c07::248 as
|
21
|
+
permitted sender) smtp.mailfrom=; dkim=pass header.i=@googlemail.com;
|
22
|
+
dmarc=pass (p=QUARANTINE dis=NONE) header.from=googlemail.com
|
23
|
+
Received: by mail-lf0-x248.google.com with SMTP id z4so524710lfa.0 for
|
24
|
+
<cacco.taiwan@gmail.com>; Tue, 24 Nov 2015 18:09:44 -0800 (PST)
|
25
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com;
|
26
|
+
s=20120113; h=mime-version:from:to:subject:message-id:date:content-type
|
27
|
+
:content-transfer-encoding; bh=RcJGf3eB7VYKClUg+j/uOLm845R/t11+7cF8g3byO1w=;
|
28
|
+
b=pgqzz1R/V9CRadRw7HKN5I8wNssyw0a2ChS9E9HVDByHM9NOgQO6p9Z/sSgypRBnNP
|
29
|
+
02oj+8iZe7W1GqnIoe3izygriAK0j7TYKV8IE9Xz/r6BOxYD7O5KGpR7mPLtDZUcK+WC
|
30
|
+
qHkmIlGou/aFbIL0YPyiqIpsFEAN0zyz7Va0/Lz1OQSjCGX2B4F36cpmrSBEjgcv2hPP
|
31
|
+
N7ni9NxyKnkEwzdZ1GHQT6JAZyAaTtuPa8jNH7ok8QoXpesyqKy8yvD6WP6g7AUYxHt6
|
32
|
+
RsQnCFH/B836n0dK436KCa7upmHZ/rPzz8y4ioqAmwYfZXn1XqdhweEXWMP5KznFp7eE 2Njg==
|
33
|
+
X-Received: by 10.112.63.100 with SMTP id f4mr14610592lbs.85.1448417384107;
|
34
|
+
Tue, 24 Nov 2015 18:09:44 -0800 (PST)
|
35
|
+
MIME-Version: 1.0
|
36
|
+
Return-Path: <>
|
37
|
+
Received: by 10.112.63.100 with SMTP id f4mr16889554lbs.85; Tue, 24 Nov 2015
|
38
|
+
18:09:44 -0800 (PST)
|
39
|
+
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
|
40
|
+
To: cacco.taiwan@gmail.com
|
41
|
+
X-Failed-Recipients: doesnotexist@sanyutechnos-ph.com
|
42
|
+
Subject: Delivery Status Notification (Failure)
|
43
|
+
Message-ID: <001a11c3fe80aa8ece052553f35d@google.com>
|
44
|
+
Date: Wed, 25 Nov 2015 02:09:44 +0000
|
45
|
+
Content-Type: text/plain; charset=UTF-8
|
46
|
+
Content-Transfer-Encoding: quoted-printable
|
47
|
+
|
48
|
+
Delivery to the following recipient failed permanently:
|
49
|
+
|
50
|
+
doesnotexist@sanyutechnos-ph.com
|
51
|
+
|
52
|
+
Technical details of permanent failure:=20
|
53
|
+
Google tried to deliver your message, but it was rejected by the server for=
|
54
|
+
the recipient domain sanyutechnos-ph.com by aspmx.l.google.com. [2a00:1450=
|
55
|
+
:4010:c06::1a].
|
56
|
+
|
57
|
+
The error that the other server returned was:
|
58
|
+
550-5.1.1 The email account that you tried to reach does not exist. Please =
|
59
|
+
try
|
60
|
+
550-5.1.1 double-checking the recipient's email address for typos or
|
61
|
+
550-5.1.1 unnecessary spaces. Learn more at
|
62
|
+
550 5.1.1 https://support.google.com/mail/answer/6596 i124si14546647lfd.21=
|
63
|
+
1 - gsmtp
|
64
|
+
|
65
|
+
|
66
|
+
----- Original message -----
|
67
|
+
|
68
|
+
DKIM-Signature: v=3D1; a=3Drsa-sha256; c=3Drelaxed/relaxed;
|
69
|
+
d=3Dgmail.com; s=3D20120113;
|
70
|
+
h=3Dmime-version:date:message-id:subject:from:to:content-type;
|
71
|
+
bh=3DBJPt1XiW8GfP/azx95d77CYXQOm7ewQnfmYDivAZpds=3D;
|
72
|
+
b=3Dj3ue2HRssRNptv9r6Vc/w12AsgftwgIA74uu3TTrWhjnBzLoPfmifXrTlHuRKwi=
|
73
|
+
Xj3
|
74
|
+
AAk09sX2Dx3bvCEzCjT+xUX2HmaSGZD0jjjbDo8/x6pEvccquN1W9IVULkKj5PlDhU=
|
75
|
+
9f
|
76
|
+
fxsq+iOGV2Dn5HkiKNPPIiKZhsNxdQBbV5t5UpGpYaTz3Rddlo/Tt9ZmmmPIEC/1Lj=
|
77
|
+
dK
|
78
|
+
QSSgx9PLiUm+su7FZs6eg//1iWfKyBYNRGdp56OTUXAFqwhOjI10MwOif+tO559uq3=
|
79
|
+
Bl
|
80
|
+
gpE43lWGcoxbPYRNyMYb7/YKkld9zEViTyBoXBjQE2lbxznAq2BMP8QRryVHd+XT0f=
|
81
|
+
iQ
|
82
|
+
+IOg=3D=3D
|
83
|
+
MIME-Version: 1.0
|
84
|
+
X-Received: by 10.112.63.100 with SMTP id f4mr14610582lbs.85.1448417383457;
|
85
|
+
Tue, 24 Nov 2015 18:09:43 -0800 (PST)
|
86
|
+
Received: by 10.25.87.65 with HTTP; Tue, 24 Nov 2015 18:09:43 -0800 (PST)
|
87
|
+
Date: Wed, 25 Nov 2015 10:09:43 +0800
|
88
|
+
Message-ID: <CA+7CZmbRJfmd2ZOhumuk_tiLmPk=3DiaO6QYPc-W19vCR5PK+dCA@mail.gma=
|
89
|
+
il.com>
|
90
|
+
Subject: =3D?UTF-8?B?55m855m855m855m8?=3D
|
91
|
+
From: =3D?UTF-8?B?44GL44Gj44GT5Y+w5rm+?=3D <cacco.taiwan@gmail.com>
|
92
|
+
To: doesnotexist@sanyutechnos-ph.com
|
93
|
+
Content-Type: multipart/alternative; boundary=3D001a11c3fe80a0ada9052553f31=
|
94
|
+
8
|
95
|
+
|
96
|
+
=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=
|
97
|
+
=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC=E7=99=BC
|
98
|
+
|
99
|
+
From <> Wed Nov 25 10:58:34 2015
|
100
|
+
Delivered-To: cacco.taiwan@gmail.com
|
101
|
+
Received: from gmail-pop.l.google.com [74.125.23.109]
|
102
|
+
by ip-172-31-25-6.ap-northeast-1.compute.internal with IMAP (fetchmail-6.3.17)
|
103
|
+
for <batch@localhost> (single-drop); Wed, 25 Nov 2015 10:58:34 +0800 (CST)
|
104
|
+
Received: by 10.25.141.129 with SMTP id p123csp2392790lfd; Tue, 24 Nov 2015
|
105
|
+
18:10:15 -0800 (PST)
|
106
|
+
X-Received: by 10.28.177.11 with SMTP id a11mr1421499wmf.92.1448417415477;
|
107
|
+
Tue, 24 Nov 2015 18:10:15 -0800 (PST)
|
108
|
+
Return-Path: <>
|
109
|
+
Received: from mail-wm0-x246.google.com (mail-wm0-x246.google.com.
|
110
|
+
[2a00:1450:400c:c09::246]) by mx.google.com with ESMTPS id
|
111
|
+
ej8si28881117wjd.85.2015.11.24.18.10.15 for <cacco.taiwan@gmail.com>
|
112
|
+
(version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 24 Nov
|
113
|
+
2015 18:10:15 -0800 (PST)
|
114
|
+
Received-SPF: pass (google.com: best guess record for domain of
|
115
|
+
mail-wm0-x246.google.com designates 2a00:1450:400c:c09::246 as permitted
|
116
|
+
sender) client-ip=2a00:1450:400c:c09::246;
|
117
|
+
Authentication-Results: mx.google.com; spf=pass (google.com: best guess record
|
118
|
+
for domain of mail-wm0-x246.google.com designates 2a00:1450:400c:c09::246 as
|
119
|
+
permitted sender) smtp.mailfrom=; dkim=pass header.i=@googlemail.com;
|
120
|
+
dmarc=pass (p=QUARANTINE dis=NONE) header.from=googlemail.com
|
121
|
+
Received: by mail-wm0-x246.google.com with SMTP id o63so15849403wme.1 for
|
122
|
+
<cacco.taiwan@gmail.com>; Tue, 24 Nov 2015 18:10:15 -0800 (PST)
|
123
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com;
|
124
|
+
s=20120113; h=mime-version:from:to:subject:message-id:date:content-type
|
125
|
+
:content-transfer-encoding; bh=MgLhWNQmf+RsynbykXfOd03yqeLavPKqUP8nZoUTwro=;
|
126
|
+
b=mnle58Nd1PkVDMFmJ2bHBWcw0KhIK58WtcmwRoCoB86gbA0linlL5uuc/UxnaE91dS
|
127
|
+
PjPGl1dfAB35syma4fBGE20FMJMxKa2mjP9b8TxpbOXsYFW/sDcQ0IgsFJyPJPwILsST
|
128
|
+
rXn/8yFQOUGZ437EorUH71GsIUT0j/lRseYsRiw0v7/5/d5zbrui9t/I02+DLl3Y5u0D
|
129
|
+
cFeAy9afDdnI5G2qVtfwovh+lVveLKhDPX3R7Zhf1v8hHJonRy+Vlx4pI9U2nF2VWbzy
|
130
|
+
gz6SumohzaLDXZrpGbMyaEaQFKq0Fw9DoVTxhhyyMc9OSrcaMNSuz3vm8O+sNRVPJhoT BYSg==
|
131
|
+
X-Received: by 10.25.142.84 with SMTP id q81mr11995622lfd.77.1448417415403;
|
132
|
+
Tue, 24 Nov 2015 18:10:15 -0800 (PST)
|
133
|
+
MIME-Version: 1.0
|
134
|
+
Return-Path: <>
|
135
|
+
Received: by 10.25.142.84 with SMTP id q81mr14401531lfd.77; Tue, 24 Nov 2015
|
136
|
+
18:10:15 -0800 (PST)
|
137
|
+
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
|
138
|
+
To: cacco.taiwan@gmail.com
|
139
|
+
X-Failed-Recipients: doesnotexist@sanyutechnos-ph.com
|
140
|
+
Subject: Delivery Status Notification (Failure)
|
141
|
+
Message-ID: <001a11401a80881536052553f5d4@google.com>
|
142
|
+
Date: Wed, 25 Nov 2015 02:10:15 +0000
|
143
|
+
Content-Type: text/plain; charset=UTF-8
|
144
|
+
Content-Transfer-Encoding: base64
|
145
|
+
|
146
|
+
RGVsaXZlcnkgdG8gdGhlIGZvbGxvd2luZyByZWNpcGllbnQgZmFpbGVkIHBlcm1hbmVudGx5OgoK
|
147
|
+
ICAgICBkb2Vzbm90ZXhpc3RAc2FueXV0ZWNobm9zLXBoLmNvbQoKVGVjaG5pY2FsIGRldGFpbHMg
|
148
|
+
b2YgcGVybWFuZW50IGZhaWx1cmU6IApHb29nbGUgdHJpZWQgdG8gZGVsaXZlciB5b3VyIG1lc3Nh
|
149
|
+
Z2UsIGJ1dCBpdCB3YXMgcmVqZWN0ZWQgYnkgdGhlIHNlcnZlciBmb3IgdGhlIHJlY2lwaWVudCBk
|
150
|
+
b21haW4gc2FueXV0ZWNobm9zLXBoLmNvbSBieSBhc3BteC5sLmdvb2dsZS5jb20uIFsyYTAwOjE0
|
151
|
+
NTA6NDAxMDpjMDk6OjFhXS4KClRoZSBlcnJvciB0aGF0IHRoZSBvdGhlciBzZXJ2ZXIgcmV0dXJu
|
152
|
+
ZWQgd2FzOgo1NTAtNS4xLjEgVGhlIGVtYWlsIGFjY291bnQgdGhhdCB5b3UgdHJpZWQgdG8gcmVh
|
153
|
+
Y2ggZG9lcyBub3QgZXhpc3QuIFBsZWFzZSB0cnkKNTUwLTUuMS4xIGRvdWJsZS1jaGVja2luZyB0
|
154
|
+
aGUgcmVjaXBpZW50J3MgZW1haWwgYWRkcmVzcyBmb3IgdHlwb3Mgb3IKNTUwLTUuMS4xIHVubmVj
|
155
|
+
ZXNzYXJ5IHNwYWNlcy4gTGVhcm4gbW9yZSBhdAo1NTAgNS4xLjEgIGh0dHBzOi8vc3VwcG9ydC5n
|
156
|
+
b29nbGUuY29tL21haWwvYW5zd2VyLzY1OTYgdDhzaTEyMzEyOTQwbGJiLjUwIC0gZ3NtdHAKCgot
|
157
|
+
LS0tLSBPcmlnaW5hbCBtZXNzYWdlIC0tLS0tCgpES0lNLVNpZ25hdHVyZTogdj0xOyBhPXJzYS1z
|
158
|
+
aGEyNTY7IGM9cmVsYXhlZC9yZWxheGVkOw0KICAgICAgICBkPWdtYWlsLmNvbTsgcz0yMDEyMDEx
|
159
|
+
MzsNCiAgICAgICAgaD1taW1lLXZlcnNpb246ZGF0ZTptZXNzYWdlLWlkOnN1YmplY3Q6ZnJvbTp0
|
160
|
+
bzpjb250ZW50LXR5cGU7DQogICAgICAgIGJoPUV6L2FITFB2a1FCbGUwMXN3UFhRbVBpT0xhNnRk
|
161
|
+
bkovdm8xTWladU5zcjQ9Ow0KICAgICAgICBiPUh6bUxTOXhMbVlGMGxxelh5YmdwQS9OVmlpL3BM
|
162
|
+
VGVhSWNtRW96S3pxcmRoUTBlaEpSb3EwTHYzTlQ3YjIxVlNiZQ0KICAgICAgICAgaURNeVFhK3FE
|
163
|
+
Z2JvczNsem5EWTJJVjRmM3crUkRUZXo2T01RME9mdEJIVVBaZERjZTA4MzJ0NlFLR2hsTHh0KzEy
|
164
|
+
R2sNCiAgICAgICAgIHZHK3BVZ21ET1JqZS9hWVlVWW1JZUt5UndZbi9GMWE2M1gweHdCcjlBcWIr
|
165
|
+
cGtWSDU1RzUzMVcyUXpjdWRjTVJVbnphDQogICAgICAgICBucnMwQ0prbS9GL1AyZ0E3NVh2WVpR
|
166
|
+
WDdxWmxmNnFjWjhJeHZlazg5YzcwSUhzRkdoRllBMlZsY1Y5bEdidUhZUWZwVQ0KICAgICAgICAg
|
167
|
+
N28yU0N5dk96UmhkeGMvUWdXS3QyeHkvWGxIR2lIUFluakREb1BSU2ovWFFvNHJZRWZoM055S2ZY
|
168
|
+
UnRqRmZOQm1lYUYNCiAgICAgICAgIGw2MEE9PQ0KTUlNRS1WZXJzaW9uOiAxLjANClgtUmVjZWl2
|
169
|
+
ZWQ6IGJ5IDEwLjI1LjE0Mi44NCB3aXRoIFNNVFAgaWQgcTgxbXIxMTk5NTYxOWxmZC43Ny4xNDQ4
|
170
|
+
NDE3NDE1MjYyOw0KIFR1ZSwgMjQgTm92IDIwMTUgMTg6MTA6MTUgLTA4MDAgKFBTVCkNClJlY2Vp
|
171
|
+
dmVkOiBieSAxMC4yNS44Ny42NSB3aXRoIEhUVFA7IFR1ZSwgMjQgTm92IDIwMTUgMTg6MTA6MTUg
|
172
|
+
LTA4MDAgKFBTVCkNCkRhdGU6IFdlZCwgMjUgTm92IDIwMTUgMTA6MTA6MTUgKzA4MDANCk1lc3Nh
|
173
|
+
Z2UtSUQ6IDxDQSs3Q1ptYU1IU19nK0tjN0xPcHlGUG1xQjhhaGtQaWRmVG5SMlBxR3dSZExlYjc5
|
174
|
+
YndAbWFpbC5nbWFpbC5jb20+DQpTdWJqZWN0OiA9P1VURi04P0I/NTVtODU1bTg1NW04NTVtODU1
|
175
|
+
bTg/PQ0KRnJvbTogPT9VVEYtOD9CPzQ0R0w0NEdqNDRHVDVZK3c1cm0rPz0gPGNhY2NvLnRhaXdh
|
176
|
+
bkBnbWFpbC5jb20+DQpUbzogZG9lc25vdGV4aXN0QHNhbnl1dGVjaG5vcy1waC5jb20NCkNvbnRl
|
177
|
+
bnQtVHlwZTogbXVsdGlwYXJ0L2FsdGVybmF0aXZlOyBib3VuZGFyeT0wMDFhMTE0MDFhODA4NWY5
|
178
|
+
YTYwNTI1NTNmNWMyDQoK55m855m855m855m855m855m855m855m855m855m855m855m855m855m8
|
179
|
+
55m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m8
|
180
|
+
55m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m8
|
181
|
+
55m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m855m8
|
182
|
+
55m855m855m855m855m8DQrnmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbzn
|
183
|
+
mbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbzn
|
184
|
+
mbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbzn
|
185
|
+
mbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbznmbzn
|
186
|
+
mbznmbznmbznmbznmbznmbwNCueZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZ
|
187
|
+
vOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZ
|
188
|
+
vOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZ
|
189
|
+
vOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZvOeZ
|
190
|
+
vOeZvOeZvOeZvOeZvOeZvOeZvA0K55m855m8DQo=
|
191
|
+
|
192
|
+
From <> Wed Nov 25 10:58:35 2015
|
193
|
+
Delivered-To: cacco.taiwan@gmail.com
|
194
|
+
Received: from gmail-pop.l.google.com [74.125.23.109]
|
195
|
+
by ip-172-31-25-6.ap-northeast-1.compute.internal with IMAP (fetchmail-6.3.17)
|
196
|
+
for <batch@localhost> (single-drop); Wed, 25 Nov 2015 10:58:35 +0800 (CST)
|
197
|
+
Received: by 10.25.141.129 with SMTP id p123csp2395757lfd; Tue, 24 Nov 2015
|
198
|
+
18:19:00 -0800 (PST)
|
199
|
+
X-Received: by 10.194.185.132 with SMTP id fc4mr2347357wjc.55.1448417940676;
|
200
|
+
Tue, 24 Nov 2015 18:19:00 -0800 (PST)
|
201
|
+
Return-Path: <>
|
202
|
+
Received: from mail-wm0-x247.google.com (mail-wm0-x247.google.com.
|
203
|
+
[2a00:1450:400c:c09::247]) by mx.google.com with ESMTPS id
|
204
|
+
v4si21991802wjz.22.2015.11.24.18.19.00 for <cacco.taiwan@gmail.com>
|
205
|
+
(version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 24 Nov
|
206
|
+
2015 18:19:00 -0800 (PST)
|
207
|
+
Received-SPF: pass (google.com: best guess record for domain of
|
208
|
+
mail-wm0-x247.google.com designates 2a00:1450:400c:c09::247 as permitted
|
209
|
+
sender) client-ip=2a00:1450:400c:c09::247;
|
210
|
+
Authentication-Results: mx.google.com; spf=pass (google.com: best guess record
|
211
|
+
for domain of mail-wm0-x247.google.com designates 2a00:1450:400c:c09::247 as
|
212
|
+
permitted sender) smtp.mailfrom=; dkim=pass header.i=@googlemail.com;
|
213
|
+
dmarc=pass (p=QUARANTINE dis=NONE) header.from=googlemail.com
|
214
|
+
Received: by mail-wm0-x247.google.com with SMTP id o63so5642wme.1 for
|
215
|
+
<cacco.taiwan@gmail.com>; Tue, 24 Nov 2015 18:19:00 -0800 (PST)
|
216
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com;
|
217
|
+
s=20120113; h=mime-version:from:to:subject:message-id:date:content-type;
|
218
|
+
bh=uqpS77lCy5O2Dza3BxHzu4IMoWguWZwjJjc8om9D0jI=;
|
219
|
+
b=gwBOM68vSpWGvmHIegGlLl5fqD9+ovCUq5JxRqtWG+1Dm13AVLyaSRiJ5vuR2g4uXn
|
220
|
+
In4HpDxgOrmO+xvYjCGbjlSlj8dHaP6/wjzA7qjzZQ8FQwiEkeTRE7p9eNrXV7eamQRo
|
221
|
+
YnM3XlgtnivgNpmFt2Dp5zLmcWVRK16KblWJbE0QvOceclR1Bb9eWkRrRtqZP0Ig5D0Q
|
222
|
+
in7231EaMQ4+TSb+DlQl83gxrkW8C1vNbHZb3XBIAfufztXMQQlJ2KqeCy41d16dOfuu
|
223
|
+
55qMIbkgkvtA5Mp3TrOM8PI1USgJ0CxrzAYaG1UV4Ol8eoIXaZgurVjipP0+toDhcTAB uv7g==
|
224
|
+
X-Received: by 10.25.126.5 with SMTP id z5mr15256023lfc.112.1448417940603;
|
225
|
+
Tue, 24 Nov 2015 18:19:00 -0800 (PST)
|
226
|
+
MIME-Version: 1.0
|
227
|
+
Return-Path: <>
|
228
|
+
Received: by 10.25.126.5 with SMTP id z5mr17687184lfc.112; Tue, 24 Nov 2015
|
229
|
+
18:19:00 -0800 (PST)
|
230
|
+
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
|
231
|
+
To: cacco.taiwan@gmail.com
|
232
|
+
X-Failed-Recipients: doesnotexist@sanyutechnos-ph.com
|
233
|
+
Subject: Delivery Status Notification (Failure)
|
234
|
+
Message-ID: <001a113eadb8d600200525541412@google.com>
|
235
|
+
Date: Wed, 25 Nov 2015 02:19:00 +0000
|
236
|
+
Content-Type: text/plain; charset=UTF-8
|
237
|
+
|
238
|
+
Delivery to the following recipient failed permanently:
|
239
|
+
|
240
|
+
doesnotexist@sanyutechnos-ph.com
|
241
|
+
|
242
|
+
Technical details of permanent failure:
|
243
|
+
Google tried to deliver your message, but it was rejected by the server for the recipient domain sanyutechnos-ph.com by aspmx.l.google.com. [2a00:1450:4010:c01::1b].
|
244
|
+
|
245
|
+
The error that the other server returned was:
|
246
|
+
550-5.1.1 The email account that you tried to reach does not exist. Please try
|
247
|
+
550-5.1.1 double-checking the recipient's email address for typos or
|
248
|
+
550-5.1.1 unnecessary spaces. Learn more at
|
249
|
+
550 5.1.1 https://support.google.com/mail/answer/6596 oa4si6012078lbb.204 - gsmtp
|
250
|
+
|
251
|
+
|
252
|
+
----- Original message -----
|
253
|
+
|
254
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
255
|
+
d=gmail.com; s=20120113;
|
256
|
+
h=mime-version:date:message-id:subject:from:to:content-type;
|
257
|
+
bh=wp4nKxKIUvoPd2BbeqaPDwuYKD7l9gbZqhF/IPmdLhM=;
|
258
|
+
b=CSwdTrrz4wXndOxIC6Vc2gDNv2xwo5cMgRxBGq0i3CwSx2KGMueYVLi58MEed4eoIH
|
259
|
+
6oXqEMh0lQn/md/OkoGnZLhUQGlMiiqcwB7Xe8sb0kvG2ltskGxKdJVCX9rj16LXDKef
|
260
|
+
kKGOgbLZpanE9nXp68Qxj0D8g9ztZbIvqh8SoBikr455WikALEpFyI+3oW/gdm6MWRA4
|
261
|
+
+UQuocxMwbcEvy/b1pvOCjDDLPyF9KQ32PFWzYLYNIRb1B/kGUMbKfDigWnpoiLP24AC
|
262
|
+
ovwokSTX03/bMMVmkWADafxUivFOscjIIi9UB0q4BxeJgmajN8CU01VA0Xg8ueczh/yS
|
263
|
+
NbTA==
|
264
|
+
MIME-Version: 1.0
|
265
|
+
X-Received: by 10.25.126.5 with SMTP id z5mr15256011lfc.112.1448417939973;
|
266
|
+
Tue, 24 Nov 2015 18:18:59 -0800 (PST)
|
267
|
+
Received: by 10.25.87.65 with HTTP; Tue, 24 Nov 2015 18:18:59 -0800 (PST)
|
268
|
+
Date: Wed, 25 Nov 2015 10:18:59 +0800
|
269
|
+
Message-ID: <CA+7CZmate399+ZYecX+9t623GniYRWQQt18Ze55YjPq7q3dj4w@mail.gmail.com>
|
270
|
+
Subject: trial, will cause bounce
|
271
|
+
From: =?UTF-8?B?44GL44Gj44GT5Y+w5rm+?= <cacco.taiwan@gmail.com>
|
272
|
+
To: doesnotexist@sanyutechnos-ph.com
|
273
|
+
Content-Type: multipart/alternative; boundary=001a113eadb8cc6e780525541491
|
274
|
+
|
275
|
+
Sisimai is the system formerly known as bounceHammer 4, is a Pelr module
|
276
|
+
for analyzing bounce mails and generate structured data in a JSON format
|
277
|
+
(YAML is also available if "YAML" module is installed on your system) from
|
278
|
+
parsed bounce messages. Sisimai is a coined word: Sisi (the number 4 is
|
279
|
+
pronounced "Si" in Japanese) and MAI (acronym of "Mail Analyzing
|
280
|
+
Interface").Sisimai is the system formerly known as bounceHammer 4, is a
|
281
|
+
Pelr module for analyzing bounce mails and generate structured data in a
|
282
|
+
JSON format (YAML is also available if "YAML" module is installed on your
|
283
|
+
system) from parsed bounce messages. Sisimai is a coined word: Sisi (the
|
284
|
+
number 4 is pronounced "Si" in Japanese) and MAI (acronym of "Mail
|
285
|
+
Analyzing Interface").Sisimai is the system formerly known as bounceHammer 4,
|
286
|
+
is a Pelr module for analyzing bounce mails and generate structured data in
|
287
|
+
a JSON format (YAML is also available if "YAML" module is installed on your
|
288
|
+
system) from parsed bounce messages. Sisimai is a coined word: Sisi (the
|
289
|
+
number 4 is pronounced "Si" in Japanese) and MAI (acronym of "Mail
|
290
|
+
Analyzing Interface").Sisimai is the system formerly known as bounceHammer 4,
|
291
|
+
is a Pelr module for analyzing bounce mails and generate structured data in
|
292
|
+
a JSON format (YAML is also available if "YAML" module is installed on your
|
293
|
+
system) from parsed bounce messages. Sisimai is a coined word: Sisi (the
|
294
|
+
number 4 is pronounced "Si" in Japanese) and MAI (acronym of "Mail
|
295
|
+
Analyzing Interface").Sisimai is the system formerly known as bounceHammer 4,
|
296
|
+
is a Pelr module for analyzing bounce mails and generate structured data in
|
297
|
+
a JSON format (YAML is also available if "YAML" module is installed on your
|
298
|
+
system) from parsed bounce messages. Sisimai is a coined word: Sisi (the
|
299
|
+
number 4 is pronounced "Si" in Japanese) and MAI (acronym of "Mail
|
300
|
+
Analyzing Interface").Sisimai is the system formerly known as bounceHammer 4,
|
301
|
+
is a Pelr module for analyzing bounce mails and generate structured data in
|
302
|
+
|
303
|
+
----- Message truncated -----
|
304
|
+
|
@@ -0,0 +1,72 @@
|
|
1
|
+
x-store-info:D6taffyBScEUZsL+ZXbbDvsjG9szfvD7
|
2
|
+
Authentication-Results: hotmail.example.com; spf=none (sender IP is 65.55.116.88; identity alignment result is pass and alignment mode is relaxed) smtp.helo=BLU004-OMC3S13.hotmail.example.com; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=mail.hotmail.example.com; x-hmca=none header.id=postmaster@mail.hotmail.example.com
|
3
|
+
X-SID-PRA: postmaster@mail.hotmail.example.com
|
4
|
+
X-AUTH-Result: NONE
|
5
|
+
X-SID-Result: NONE
|
6
|
+
X-Message-Delivery: Vj0xLjE7RD0wO0dEPTA7U0NMPTk7bD0xO3VzPTE=
|
7
|
+
X-Message-Info: AuEzbeVr9u5fkDpn2vR5iCu5wb6HBeY4iruBjnutBzpStnUabbM/X3OHG1tkHI7a3kMiU15mwZkdItk0fkPUd26iJME4hbgAI/g6pso0Zyh7O0XVOq5g8hCf8Efy9J5lKkdwprP9EhP7RM0PyiUzXHkNE5r5dNzX
|
8
|
+
Received: from BLU004-OMC3S13.hotmail.example.com ([65.55.116.88]) by BAY004-MC2F13.hotmail.example.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22712);
|
9
|
+
Fri, 21 Nov 2014 14:17:54 -0800
|
10
|
+
From: postmaster@mail.hotmail.example.com
|
11
|
+
To: shironeko@hotmail.example.com
|
12
|
+
Date: Fri, 21 Nov 2014 14:17:35 -0800
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
15
|
+
boundary="9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h"
|
16
|
+
X-DSNContext: 7ce717b1 - 1196 - 00000002 - 00000000
|
17
|
+
Message-ID: <a0xtAEHLB0000d09e@BLU004-OMC3S13.hotmail.example.com>
|
18
|
+
Subject: Delivery Status Notification (Failure)
|
19
|
+
Return-Path: <>
|
20
|
+
X-OriginalArrivalTime: 21 Nov 2014 22:17:54.0242 (UTC) FILETIME=[FEF70220:01D005D8]
|
21
|
+
|
22
|
+
This is a MIME-formatted message.
|
23
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
24
|
+
|
25
|
+
--9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h
|
26
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
27
|
+
|
28
|
+
This is an automatically generated Delivery Status Notification.
|
29
|
+
|
30
|
+
Delivery to the following recipients failed.
|
31
|
+
|
32
|
+
kijitora@example.jp
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
--9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h
|
38
|
+
Content-Type: message/delivery-status
|
39
|
+
|
40
|
+
Reporting-MTA: dns;BLU004-OMC3S13.hotmail.example.com
|
41
|
+
Received-From-MTA: dns;BLU436-SMTP66
|
42
|
+
Arrival-Date: Fri, 21 Nov 2014 14:17:34 -0800
|
43
|
+
|
44
|
+
Final-Recipient: rfc822;kijitora@example.jp
|
45
|
+
Action: failed
|
46
|
+
Status: 5.2.2
|
47
|
+
Diagnostic-Code: smtp;550 5.2.2 <kijitora@example.jp>... Mailbox Full
|
48
|
+
|
49
|
+
--9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h
|
50
|
+
Content-Type: message/rfc822
|
51
|
+
|
52
|
+
Received: from BLU436-SMTP66 ([65.55.116.73]) by BLU004-OMC3S13.hotmail.example.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
53
|
+
Fri, 21 Nov 2014 14:17:34 -0800
|
54
|
+
X-TMN: [O+2Qkz/VU7KyB/41v+oJx48rUx6jIrp8]
|
55
|
+
X-Originating-Email: [shironeko@hotmail.example.com]
|
56
|
+
Message-ID: <BLU436-SMTP6645ECA6E7FEFFE86D040BBA770@phx.gbl>
|
57
|
+
Return-Path: shironeko@hotmail.example.com
|
58
|
+
From: Shironeko <shironeko@hotmail.example.com>
|
59
|
+
Content-Type: text/plain; charset="us-ascii"
|
60
|
+
Content-Transfer-Encoding: 7bit
|
61
|
+
Subject: Nyaaaan
|
62
|
+
Date: Sat, 22 Nov 2014 07:17:32 +0900
|
63
|
+
To: kijitora@example.jp
|
64
|
+
MIME-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
|
65
|
+
X-Mailer: Apple Mail (2.1878.6)
|
66
|
+
X-OriginalArrivalTime: 21 Nov 2014 22:17:33.0573 (UTC) FILETIME=[F2A52B50:01D005D8]
|
67
|
+
|
68
|
+
Nyaaaaaan
|
69
|
+
|
70
|
+
|
71
|
+
--9B095B5ADSN=_01D00052BDF896BA0006275EBLU004?OMC3S13.h--
|
72
|
+
|