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,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,102 @@
|
|
1
|
+
Received: from aaaa00-bb0-ccc.outbound.protection.outlook.com ([192.0.2.1]) by 192.0.2.4 with MailEnable ESMTP; Thu, 29 Apr 2015 23:34:45 +0900
|
2
|
+
MIME-Version: 1.0
|
3
|
+
From: <postmaster@example.com>
|
4
|
+
To: <sironeko@example.ed.jp>
|
5
|
+
Date: Thu, 29 Apr 2015 23:34:45 +0000
|
6
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
7
|
+
boundary="0000ffff-eeee-2222-a0000dddd000"
|
8
|
+
X-MS-Exchange-Message-Is-Ndr:
|
9
|
+
Content-Language: en-US
|
10
|
+
Message-ID: <00000000-0000-aaaa-bbbb-cccc-def12345678@FFFFFFFFFFFF.e0.prod.outlook.com>
|
11
|
+
Subject: Undeliverable: Nyaan
|
12
|
+
Auto-Submitted: auto-replied
|
13
|
+
X-Microsoft-Antispam-PRVS:
|
14
|
+
<0000000000000000000000000000000000000@FFFFFFFFFFFF.e0.prod.outlook.com>
|
15
|
+
X-Exchange-Antispam-Report-Test: UriScan:;
|
16
|
+
X-Exchange-Antispam-Report-CFA-Test:
|
17
|
+
BCL:0;PCL:0;RULEID:(000000)(0000000)(0000000);SRVR:FFFFFFFFFFFF;BCL:0;PCL:0;RULEID:;SRVR:FFFFFFFFFFFF;
|
18
|
+
X-Forefront-PRVS: EEEEEEEE2E
|
19
|
+
X-OriginatorOrg: example.com
|
20
|
+
X-MS-Exchange-CrossTenant-OriginalArrivalTime: 29 Apr 2015 23:34:45.6789
|
21
|
+
(JST)
|
22
|
+
X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted
|
23
|
+
X-MS-Exchange-Transport-CrossTenantHeadersStamped: FFFFFFFFFFFF
|
24
|
+
Precedence: bulk
|
25
|
+
Return-Path: <>
|
26
|
+
|
27
|
+
--0000ffff-eeee-2222-a0000dddd000
|
28
|
+
Content-Type: multipart/alternative; differences=Content-Type;
|
29
|
+
boundary="ff002222-2222-2222-bbcd-0123456789ab"
|
30
|
+
|
31
|
+
--ff002222-2222-2222-bbcd-0123456789ab
|
32
|
+
Content-Type: text/plain; charset="Windows-1252"
|
33
|
+
Content-Transfer-Encoding: quoted-printable
|
34
|
+
|
35
|
+
Delivery has failed to these recipients or groups:
|
36
|
+
|
37
|
+
kijitora@example.com<mailto:kijitora@example.com>
|
38
|
+
The email address wasn=92t found at the destination domain. It might be mis=
|
39
|
+
spelled or it might not exist any longer. Try retyping the address and rese=
|
40
|
+
nding the message.
|
41
|
+
|
42
|
+
If that doesn=92t work, contact the recipient (by phone or instant messagin=
|
43
|
+
g, for example) to check that the address is correct. If the problem contin=
|
44
|
+
ues, forward this message to your email admin.
|
45
|
+
|
46
|
+
For Email Administrators
|
47
|
+
For more tips to help fix this issue, see DSN 5.1.10 Errors in Exchange Onl=
|
48
|
+
ine and Office 365<http://go.microsoft.com/fwlink/?LinkId=00000000>.
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
Diagnostic information for administrators:
|
58
|
+
|
59
|
+
Generating server: FFFFFFFFFFFF.e0.prod.outlook.com
|
60
|
+
|
61
|
+
kijitora@example.com
|
62
|
+
Remote Server returned '550 5.1.10 RESOLVER.ADR.RecipientNotFound; Recipien=
|
63
|
+
t not found by SMTP address lookup'
|
64
|
+
|
65
|
+
Original message headers:
|
66
|
+
|
67
|
+
Received: from EEEE0000EEEE.e0.prod.outlook.com (192.0.2.3) by
|
68
|
+
FFFFFFFFFFFF.e0.prod.outlook.com (192.0.2.4) with Microsoft SMTP
|
69
|
+
Server (TLS) id 15.1.112.19; Thu, 29 Apr 2015 23:34:45 +0000
|
70
|
+
Received: from neko.home (192.0.2.6) by
|
71
|
+
DDDD2200EEF1.mail.protection.outlook.com (192.0.2.8) with Microsoft S=
|
72
|
+
MTP
|
73
|
+
Server id 11.1.111.11 via Frontend Transport; Thu, 29 Apr 2015 23:34:45 +0=
|
74
|
+
000
|
75
|
+
Received: from [127.0.0.1] ([192.0.2.21]) by home with MailEnable ESMTP=
|
76
|
+
; Thu, 29 Apr 2015 23:34:45 +0900
|
77
|
+
Message-ID: <FFFFFFFF.EEEEEEEE@example.ed.jp>
|
78
|
+
Date: Thu, 29 Apr 2015 23:34:45 +0000
|
79
|
+
From: "Shironeko, Nyaaaan" <sironeko@example.ed.jp>
|
80
|
+
Subject: Nyaan
|
81
|
+
To: "Kijitora" <kijitora@example.com>
|
82
|
+
Content-Transfer-Encoding: quoted-printable
|
83
|
+
Content-Type: text/plain; charset=3D"UTF-8"
|
84
|
+
Return-Path: sironeko@example.ed.jp
|
85
|
+
Received-SPF: None (protection.outlook.com: example.ed.jp does no=
|
86
|
+
t
|
87
|
+
designate permitted sender hosts)
|
88
|
+
Authentication-Results: spf=3Dnone (sender IP is 192.0.2.6)
|
89
|
+
smtp.mailfrom=3Dsironeko@example.ed.jp; example.com; dkim=3Dnone (=
|
90
|
+
message
|
91
|
+
not signed) header.d=3Dnone;example.com; dmarc=3Dnone action=3Dnone
|
92
|
+
header.from=3Dexample.ed.jp;
|
93
|
+
MIME-Version: 1.0
|
94
|
+
|
95
|
+
Nyaan
|
96
|
+
|
97
|
+
--ff002222-2222-2222-bbcd-0123456789ab
|
98
|
+
Content-Type: text/html; charset="Windows-1252"
|
99
|
+
Content-Transfer-Encoding: quoted-printable
|
100
|
+
|
101
|
+
|
102
|
+
--0000ffff-eeee-2222-a0000dddd000--
|