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,333 @@
|
|
1
|
+
Received: by mx-001.sjc1.sendgrid.net with SMTP id HxfYc64lwJ
|
2
|
+
Thu, 27 Mar 2014 01:23:13 +0000 (GMT)
|
3
|
+
Received: from mail-ob0-f200.google.com (mail-ob0-f200.google.com [209.85.214.200])
|
4
|
+
by mx-001.sjc1.sendgrid.net (Postfix) with ESMTPS id F37074C0927
|
5
|
+
for <foobar@reports.dmarctools.com>; Thu, 27 Mar 2014 01:23:12 +0000 (GMT)
|
6
|
+
Received: by mail-ob0-f200.google.com with SMTP id gq1sf10210481obb.7
|
7
|
+
for <foobar@reports.dmarctools.com>; Wed, 26 Mar 2014 18:23:12 -0700 (PDT)
|
8
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
9
|
+
d=sendgrid.com; s=ga1;
|
10
|
+
h=sender:date:from:subject:to:mime-version:message-id
|
11
|
+
:x-original-sender:x-original-authentication-results:precedence
|
12
|
+
:mailing-list:list-id:list-post:list-help:list-archive
|
13
|
+
:list-unsubscribe:content-type;
|
14
|
+
bh=9SZHt2AfH/zlOr1nKjAROSfwLC4+usPSgqQCCWjDiCU=;
|
15
|
+
b=guFbNBvuLCDKqoZYaM+QpA5fZ1+6UnaAeBUQRAOdcTBzOSMPSYufEbk0zNC6kk3NJm
|
16
|
+
ai9EQPZgyAZDEiDb4yDMYZNBmxNwnDD1AtZGr/rz62CV6D8Kc3JMNAJwTnxdqXci9xHN
|
17
|
+
yMvpNv9yzZVAA18v789/gmudSh5DPZS4QJ4JI=
|
18
|
+
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
19
|
+
d=1e100.net; s=20130820;
|
20
|
+
h=sender:x-gm-message-state:date:from:subject:to:mime-version
|
21
|
+
:message-id:x-original-sender:x-original-authentication-results
|
22
|
+
:precedence:mailing-list:list-id:list-post:list-help:list-archive
|
23
|
+
:list-unsubscribe:content-type;
|
24
|
+
bh=9SZHt2AfH/zlOr1nKjAROSfwLC4+usPSgqQCCWjDiCU=;
|
25
|
+
b=m4oXCtnU656lS9K8L/vGqPkVUMprHY18VjMpDfwku/bHYdYNHHZ/SSN+Z1I3/9C1j6
|
26
|
+
7Q3udybD0Sfv1G+KrD4RHVRathJQEIMU4qBTx6Ji6uOZyruh4rB9A8hZvedVvslOU+Z6
|
27
|
+
BXLQekgOJQR406sTOmW8DnCsrWTGEyNnzf2K72RbL/k81f8x4HbRZuJz8ct+oyDqpcfD
|
28
|
+
Eh7AZUj2IPblwVbQcVf53yeEcZfPJ0fy/W1Hrir7U+OariSGSYtxCTvl5YCIr5Bc4W/S
|
29
|
+
lo9Q41QOKrqfaXkVrKOTgHzvmd+Mr1mXKOBatouqDwaV7ms8vZ0D57WxMgz6RYbrcxSy
|
30
|
+
F//g==
|
31
|
+
Sender: foobar@sendgrid.com
|
32
|
+
X-Gm-Message-State: ALoCoQmQeAzYS6IydGUkps1xn2BXDMqVc8goLKkxJsaL25IRo2YAtbfEjOpQcfiltO7UYx+CYSTm
|
33
|
+
X-Received: by 10.43.75.198 with SMTP id zb6mr27907410icb.22.1395883392306;
|
34
|
+
Wed, 26 Mar 2014 18:23:12 -0700 (PDT)
|
35
|
+
X-BeenThere: foobar@sendgrid.com
|
36
|
+
Received: by 10.50.6.38 with SMTP id x6ls1332990igx.23.gmail; Wed, 26 Mar 2014
|
37
|
+
18:23:12 -0700 (PDT)
|
38
|
+
X-Received: by 10.66.151.205 with SMTP id us13mr8228271pab.93.1395883392036;
|
39
|
+
Wed, 26 Mar 2014 18:23:12 -0700 (PDT)
|
40
|
+
Received: from bay0-omc2-s22.bay0.hotmail.com (bay0-omc2-s22.bay0.hotmail.com. [65.54.190.97])
|
41
|
+
by mx.google.com with ESMTP id yj1si221711pac.361.2014.03.26.18.23.11
|
42
|
+
for <foobar@sendgrid.com>;
|
43
|
+
Wed, 26 Mar 2014 18:23:12 -0700 (PDT)
|
44
|
+
Received-SPF: pass (google.com: domain of staff@hotmail.com designates 65.54.190.97 as permitted sender) client-ip=65.54.190.97;
|
45
|
+
Received: from BAY0-XMR-012.phx.gbl ([65.54.190.124]) by bay0-omc2-s22.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675);
|
46
|
+
Wed, 26 Mar 2014 18:23:11 -0700
|
47
|
+
Received: from mail pickup service by BAY0-XMR-012.phx.gbl with Microsoft SMTPSVC;
|
48
|
+
Wed, 26 Mar 2014 18:23:11 -0700
|
49
|
+
Date: Wed, 26 Mar 2014 18:23:11 -0700
|
50
|
+
From: staff@hotmail.com
|
51
|
+
Subject: Yessica Ibarra just followed one of your playlists.
|
52
|
+
To: foobar@sendgrid.com
|
53
|
+
MIME-Version: 1.0
|
54
|
+
Message-ID: <BAY0-XMR-012wxnGKen00fd0b8b@BAY0-XMR-012.phx.gbl>
|
55
|
+
X-OriginalArrivalTime: 27 Mar 2014 01:23:11.0392 (UTC) FILETIME=[1E297A00:01CF495B]
|
56
|
+
X-Original-Sender: staff@hotmail.com
|
57
|
+
X-Original-Authentication-Results: mx.google.com; spf=pass (google.com:
|
58
|
+
domain of staff@hotmail.com designates 65.54.190.97 as permitted sender) smtp.mail=staff@hotmail.com
|
59
|
+
Precedence: list
|
60
|
+
Mailing-list: list foobar@sendgrid.com; contact foobar@sendgrid.com
|
61
|
+
List-ID: <dmarc.sendgrid.com>
|
62
|
+
X-Google-Group-Id: 678617953105
|
63
|
+
List-Post: <http://groups.google.com/a/sendgrid.com/group/dmarc/post>, <mailto:foobar@sendgrid.com>
|
64
|
+
List-Help: <http://support.google.com/a/sendgrid.com/bin/topic.py?topic=25838>,
|
65
|
+
<mailto:dmarc+help@sendgrid.com>
|
66
|
+
List-Archive: <http://groups.google.com/a/sendgrid.com/group/dmarc/>
|
67
|
+
List-Unsubscribe: <http://groups.google.com/a/sendgrid.com/group/dmarc/subscribe>,
|
68
|
+
<mailto:googlegroups-manage+678617953105+unsubscribe@googlegroups.com>
|
69
|
+
Content-Type: multipart/report; report-type=feedback-report; boundary="CB8CA718-73BC-48A2-B19F-CCB8D0A5FBA0"
|
70
|
+
|
71
|
+
--CB8CA718-73BC-48A2-B19F-CCB8D0A5FBA0
|
72
|
+
Content-Type: text/plain; charset="US-ASCII"
|
73
|
+
Content-Transfer-Encoding: 7bit
|
74
|
+
|
75
|
+
This is an email abuse report for an email message received from IP 128.91.234.50 on Wed, 26 Mar 2014 18:23:11 -0700.
|
76
|
+
The message below did not meet the sending domain's authentication policy.
|
77
|
+
For more information about this format please see http://www.ietf.org/rfc/rfc5965.txt.
|
78
|
+
|
79
|
+
--CB8CA718-73BC-48A2-B19F-CCB8D0A5FBA0
|
80
|
+
Content-Type: message/feedback-report
|
81
|
+
|
82
|
+
Feedback-Type: auth-failure
|
83
|
+
User-Agent: XMR/2.2
|
84
|
+
Version: 1.0
|
85
|
+
Original-Mail-From: <bounces+898596-fd77-foobar=sas.upenn.edu@sendgrid.net>
|
86
|
+
Arrival-Date: Wed, 26 Mar 2014 18:23:11 -0700
|
87
|
+
Message-ID: <14501221e39.19ac.61b0b8@ismtpd-030>
|
88
|
+
Authentication-Results: hotmail.com; spf=softfail (sender IP is 128.91.234.50; identity alignment result is pass and alignment mode is relaxed) smtp.mailfrom=bounces+898596-fd77-foobar=sas.upenn.edu@sendgrid.net; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=sendgrid.net; x-hmca=fail header.id=no-reply@sendgrid.net
|
89
|
+
Source-IP: 128.91.234.50
|
90
|
+
Auth-Failure: spf
|
91
|
+
Reported-Domain: sendgrid.net
|
92
|
+
DKIM-Domain: sendgrid.net
|
93
|
+
|
94
|
+
|
95
|
+
--CB8CA718-73BC-48A2-B19F-CCB8D0A5FBA0
|
96
|
+
Content-Type: message/rfc822
|
97
|
+
Content-Disposition: inline
|
98
|
+
|
99
|
+
Authentication-Results: hotmail.com; spf=softfail (sender IP is 128.91.234.50; identity alignment result is pass and alignment mode is relaxed) smtp.mailfrom=bounces+898596-fd77-foobar=sas.upenn.edu@sendgrid.net; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=sendgrid.net; x-hmca=fail header.id=no-reply@sendgrid.net
|
100
|
+
X-Envelope-Sender: bounces+898596-fd77-foobar=sas.upenn.edu@sendgrid.net
|
101
|
+
X-SID-PRA: no-reply@sendgrid.net
|
102
|
+
X-AUTH-Result: FAIL
|
103
|
+
X-SID-Result: FAIL
|
104
|
+
Received: from gx1.sas.upenn.edu ([128.91.234.50]) by BAY0-PAMC2-F9.Bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4900);
|
105
|
+
Wed, 26 Mar 2014 18:23:11 -0700
|
106
|
+
Received: from o8.email.news.spotifymail.com (o8.email.news.spotifymail.com [208.117.50.136])
|
107
|
+
by gx1.sas.upenn.edu (8.13.8/8.13.8) with SMTP id s2R1N5og015947
|
108
|
+
for <foobar@sas.upenn.edu>; Wed, 26 Mar 2014 21:23:10 -0400
|
109
|
+
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=news.spotifymail.com;
|
110
|
+
h=content-type:mime-version:subject:from:to; s=smtpapi;
|
111
|
+
bh=XtjWixEObqvsmy5Y76WQyd9ENZc=; b=cCb0NxBJlyolXXO9i4dYg/ePtp4EP
|
112
|
+
/g+P50K54AbKraGBdjXLuXJ5+XT+lEEW4X5O/7HzUHdOfTiUQ3tDiu6uDW81g8FI
|
113
|
+
XWS65Z4bu6fhpmw5lafiWbbHxYPG6v6w0VmEp7OqbLZsE95WlkcBSiAaUNWiYehm
|
114
|
+
dy/RGtR6VghlpY=
|
115
|
+
Received: by mf162.sendgrid.net with SMTP id mf162.33705.53337D78A
|
116
|
+
Thu, 27 Mar 2014 01:23:04 +0000 (UTC)
|
117
|
+
Received: from lon3-batchemailer-a1.lon3.spotify.net (lon3-batchemailer-a1.lon3.spotify.net [194.132.177.167])
|
118
|
+
by ismtpd-030 (SG) with ESMTP id 14501221e39.19ac.61b0b8
|
119
|
+
for <foobar@sas.upenn.edu>; Thu, 27 Mar 2014 01:23:04 +0000 (GMT)
|
120
|
+
Content-Type: multipart/alternative;
|
121
|
+
boundary="===============7538230829199531295=="
|
122
|
+
MIME-Version: 1.0
|
123
|
+
Subject: Yessica Ibarra just followed one of your playlists.
|
124
|
+
From: Spotify <no-reply@sendgrid.net>
|
125
|
+
To: "REDACTED" <postmaster@outlook.com>
|
126
|
+
Message-ID: <14501221e39.19ac.61b0b8@ismtpd-030>
|
127
|
+
Date: Thu, 27 Mar 2014 01:23:04 +0000 (UTC)
|
128
|
+
X-SG-EID: n1LZzxbo6lcYdt/WcBW3vD0Z08k3krFY/jKxe9BIfyYy+lJMqEDgKokos9QSIa4I2k60eBQLt3K0vFtzpT05yRKeETUG41OEiwJKegnl8j7P4P4mk1zMYqOMFhOwZ87WgfzT9Ih6FPYFtoln8Hueqpo02hi/mE1ClHv0sBS8E2A=
|
129
|
+
X-SG-ID: uOxTN6Jqow9h+jFMu5fkHWNJoJ1gsqkFpL5CryZHabajspjyWuEm+6uhU2KJnYlj
|
130
|
+
X-Spam-Status: No, hits=-1.471 tests=BAYES_00,HTML_MESSAGE,MIME_HTML_MOSTLY,T_DKIM_INVALID,T_RP_MATCHES_RCVD
|
131
|
+
X-Spam-Level:
|
132
|
+
X-Scanned-By-SAS: ScannedBySAS
|
133
|
+
X-Scanned-By: MIMEDefang 2.73 on 128.91.234.50
|
134
|
+
Return-Path: bounces+898596-fd77-foobar=sas.upenn.edu@sendgrid.net
|
135
|
+
X-OriginalArrivalTime: 27 Mar 2014 01:23:11.0574 (UTC) FILETIME=[1E453F60:01CF495B]
|
136
|
+
|
137
|
+
--===============7538230829199531295==
|
138
|
+
Content-Type: text/plain; charset="utf-8"
|
139
|
+
MIME-Version: 1.0
|
140
|
+
Content-Transfer-Encoding: base64
|
141
|
+
|
142
|
+
WWVzc2ljYSBJYmFycmEganVzdCBmb2xsb3dlZCBvbmUgb2YgeW91ciBwbGF5
|
143
|
+
bGlzdHMu
|
144
|
+
|
145
|
+
--===============7538230829199531295==
|
146
|
+
Content-Type: text/html; charset="utf-8"
|
147
|
+
MIME-Version: 1.0
|
148
|
+
Content-Transfer-Encoding: base64
|
149
|
+
|
150
|
+
DQoNCg0KDQo8bWV0YSBuYW1lPSJ2aWV3cG9ydCIgY29udGVudD0id2lkdGg9ZGV2aWNlLX
|
151
|
+
dpZHRoIj4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtVHlwZSIgY29udGVudD0idGV4
|
152
|
+
dC9odG1sOyBjaGFyc2V0PVVURi04Ij4NCjx0aXRsZT5TcG90aWZ5PC90aXRsZT4NCg0KDQ
|
153
|
+
oNCg0KDQoNCg0KDQo8IS0tIEhFQURFUiAtLT4NCjx0YWJsZSBiZ2NvbG9yPSIjMzMzIiBz
|
154
|
+
dHlsZT0id2lkdGg6MTAwJSIgd2lkdGg9IjEwMCUiPjx0cj4NCjx0ZD48L3RkPg0KPHRkIH
|
155
|
+
N0eWxlPSJkaXNwbGF5OmJsb2NrOyBtYXgtd2lkdGg6NjAwcHg7IG1hcmdpbjowIGF1dG87
|
156
|
+
IGNsZWFyOmJvdGgiPg0KPGRpdiBzdHlsZT0iYm9yZGVyOjBweCBzb2xpZCAjMDAwOyBwYW
|
157
|
+
RkaW5nOjEwcHggMTBweCA1cHggMTBweDsgbWF4LXdpZHRoOjYwMHB4OyBtYXJnaW46MCBh
|
158
|
+
dXRvOyBkaXNwbGF5OmJsb2NrOyBtYXJnaW4tYm90dG9tOjBweCI+DQo8dGFibGUgYmdjb2
|
159
|
+
xvcj0iIzMzMyIgc3R5bGU9IndpZHRoOjEwMCUiIHdpZHRoPSIxMDAlIj48dHI+DQo8dGQg
|
160
|
+
c3R5bGU9InBhZGRpbmc6M3B4IDEwcHggM3B4IDEwcHgiPg0KPGEgaHJlZj0iaHR0cDovL2
|
161
|
+
5ld3Muc3BvdGlmeW1haWwuY29tL3dmL2NsaWNrP3Vwbj04b05zaUs0MUtNd1lVdVhTYXpp
|
162
|
+
bE8wQ1U5cERBOGx6NS0yRnBYbjVCdTdyckUtM0RfVGpCLTJGdjRCWkphWEk2dW05SGZ4ak
|
163
|
+
9MNWxYUzZXY0JlcU56YWE2U0RJa2tNdW5TNC0yRjdLbXFIb3pySlJ6T1ZXbGh2R2tma0RX
|
164
|
+
cWpuRmxodDh4NW1oWE9VZjU4eHl4UmZ3VnNVR3JUa2JBZnBmYnQxejlXaVZHWks2a1NMdk
|
165
|
+
5jUWxyTXVZS0JtNWFqTlFuNzBvaFdybVZPWlRuZHBlYWRqeHcyT3o2VXdMa1hmeEJjcXpz
|
166
|
+
eWtwVm4tMkZ2RG9sckJOVElQM2QtMkZFNzhJMWg3NmZsSVdHcTdzWlUtMkZNbE9nRm1HN2
|
167
|
+
85djg0bVdBSjd0WTZOS0hZTEpxZzBNeGtYS3pjNjkwLTJCZyIgc3R5bGU9ImNvbG9yOiMw
|
168
|
+
MDA7IHRleHQtZGVjb3JhdGlvbjpub25lOyBmb250LXdlaWdodDo1MDAiPg0KPGltZyB3aW
|
169
|
+
R0aD0iMTAwcHgiIHNyYz0iaHR0cDovL2Fyby5zcG90aWZ5LnMzLmFtYXpvbmF3cy5jb20v
|
170
|
+
bmV3c2xldHRlci9pbWFnZXMvbG9nby5wbmciIHN0eWxlPSJtYXgtd2lkdGg6MTAwJTsgYm
|
171
|
+
9yZGVyOm5vbmUiPjwvYT4NCjwvdGQ+DQo8dGQgYWxpZ249InJpZ2h0Ij48aDYgc3R5bGU9
|
172
|
+
J2ZvbnQtZmFtaWx5OiJIZWx2ZXRpY2FOZXVlLUxpZ2h0IiwgIkhlbHZldGljYSBOZXVlIE
|
173
|
+
xpZ2h0IiwgIkhlbHZldGljYSBOZXVlIiwgSGVsdmV0aWNhLCBBcmlhbCwgIkx1Y2lkYSBH
|
174
|
+
cmFuZGUiLCBzYW5zLXNlcmlmOyBsaW5lLWhlaWdodDoxLjE7IG1hcmdpbi1ib3R0b206MT
|
175
|
+
VweDsgZm9udC13ZWlnaHQ6OTAwOyBmb250LXNpemU6MTRweDsgdGV4dC10cmFuc2Zvcm06
|
176
|
+
dXBwZXJjYXNlOyBjb2xvcjojZWVlOyBwYWRkaW5nOjA7IG1hcmdpbjowJz48L2g2PjwvdG
|
177
|
+
Q+DQo8L3RyPjwvdGFibGU+DQo8L2Rpdj4NCjwvdGQ+DQo8dGQ+PC90ZD4NCjwvdHI+PC90
|
178
|
+
YWJsZT4NCjwhLS0gL0hFQURFUiAtLT4NCjx0YWJsZSBzdHlsZT0id2lkdGg6MTAwJSIgd2
|
179
|
+
lkdGg9IjEwMCUiPjx0cj4NCjx0ZD48L3RkPg0KPHRkIGJnY29sb3I9IiNGRkZGRkYiIHN0
|
180
|
+
eWxlPSJkaXNwbGF5OmJsb2NrOyBtYXgtd2lkdGg6NjAwcHg7IG1hcmdpbjowIGF1dG87IG
|
181
|
+
NsZWFyOmJvdGgiPg0KPGRpdiBzdHlsZT0iYm9yZGVyOjBweCBzb2xpZCAjMDAwOyBwYWRk
|
182
|
+
aW5nOjEwcHggMTBweCA1cHggMTBweDsgbWF4LXdpZHRoOjYwMHB4OyBtYXJnaW46MCBhdX
|
183
|
+
RvOyBkaXNwbGF5OmJsb2NrOyBtYXJnaW4tYm90dG9tOjBweCI+DQo8dGFibGUgc3R5bGU9
|
184
|
+
IndpZHRoOjEwMCUiIHdpZHRoPSIxMDAlIj48dHI+DQo8dGQ+DQo8ZGl2IHN0eWxlPSJib3
|
185
|
+
JkZXI6MHB4IHNvbGlkICMwMDA7IHBhZGRpbmc6MTBweCAxMHB4IDVweCAxMHB4OyBtYXgt
|
186
|
+
d2lkdGg6NjAwcHg7IG1hcmdpbjowIGF1dG87IGRpc3BsYXk6YmxvY2s7IG1hcmdpbi1ib3
|
187
|
+
R0b206MHB4Ij4NCjx0YWJsZSBib3JkZXI9IjAiIGJnY29sb3I9IiIgc3R5bGU9IndpZHRo
|
188
|
+
OjEwMCUiIHdpZHRoPSIxMDAlIj48dHI+DQo8dGQ+DQoNCg0KPHAgc3R5bGU9ImZvbnQtd2
|
189
|
+
VpZ2h0Om5vcm1hbDsgbGluZS1oZWlnaHQ6MS4wOyBjb2xvcjojNjY2OyBmb250LXNpemU6
|
190
|
+
MTRweDsgbWFyZ2luLWJvdHRvbTo0cHgiPg0KSGkgZm9vYmFyLA0KPC9wPg0KPHAgc3R5bG
|
191
|
+
U9Im1hcmdpbi1ib3R0b206MTBweDsgZm9udC13ZWlnaHQ6bm9ybWFsOyBjb2xvcjojMDAw
|
192
|
+
OyBmb250LXNpemU6MTRweDsgbGluZS1oZWlnaHQ6MS4yOyBtYXJnaW46MCAwIDE1cHggMC
|
193
|
+
I+DQpZZXNzaWNhIEliYXJyYSBqdXN0IGZvbGxvd2VkIG9uZSBvZiB5b3VyIHBsYXlsaXN0
|
194
|
+
cy4NCjwvcD4NCg0KDQo8ZGl2IHN0eWxlPSJwYWRkaW5nOjNweDsgYm9yZGVyLXRvcDoxcH
|
195
|
+
ggc29saWQgI2NjYzsgYm9yZGVyLXJpZ2h0OjFweCBzb2xpZCAjY2NjOyBib3JkZXItbGVm
|
196
|
+
dDoxcHggc29saWQgI2NjYzsgYm9yZGVyLWJvdHRvbToxcHggc29saWQgIzk5OSI+DQo8dG
|
197
|
+
FibGUgYm9yZGVyPSIwIiBiZ2NvbG9yPSIiPjx0cj4NCjx0ZCB3aWR0aD0iODBweCIgc3R5
|
198
|
+
bGU9InZlcnRpY2FsLWFsaWduOiB0b3A7Ij4NCjxhIGhyZWY9Imh0dHA6Ly9uZXdzLnNwb3
|
199
|
+
RpZnltYWlsLmNvbS93Zi9jbGljaz91cG49djBpbGh6Skw1VWZXeXZkVHFQTUdOQUZyb3Zu
|
200
|
+
ai0yQlBYVlg1cUVEZHU3NFRPb2JOcnFIMGUtMkJsVTRXUmMzbUhDeXZwVlNra1RSU21Fcn
|
201
|
+
NNOHJ3QzlZeFBQRnFuRi0yQklMekVFT29tVWQ4MXQtMkJmTzBveVNDdWRrbTl0VUJ3UXlI
|
202
|
+
dzM0UWt0clpWeHAtMkZTdGxhM3JQbnktMkZERVA1eURGVktiSjMwQTJ0YkQ0VHRHR29len
|
203
|
+
pHY2xYZWFKZFVQa1ZIMGctMkZPbjFLdTJwZ1NLSUNscHRZeTNacFlJNXgyWW1odzhabnlZ
|
204
|
+
Mlh6YjFZQVlGQVNvLTJGQnZCakh1S3Q4MklwLTJCZm93aDhwel9UakItMkZ2NEJaSmFYST
|
205
|
+
Z1bTlIZnhqT0w1bFhTNldjQmVxTnphYTZTRElra011blM0LTJGN0ttcUhvenJKUnpPVlds
|
206
|
+
aDdEMk9uSkpHS1lkZEtFU2dMaFlKekJOeXIyeDNtNzlQY3FDRGVGSU5nUFNnZFk3bklwdT
|
207
|
+
VsOVQ1czc2cTBXQWxZdGNBWWFQd2hSWlZSaURkeWpnMy0yQmhKNk5ObC0yQjhhRXBwY2E3
|
208
|
+
NXJYWTB4M1RGS1V1R2dCRVVYSi0yRjk2TGNHRG1ucUpZdk15bi0yQkpsbEJkNjZLbjBhTX
|
209
|
+
EyVE9WTzdXc0J5ZjVWWENEMWowZjEzSGl0Z0otMkJEZ0txNW1GUktSTldVMlIiIHN0eWxl
|
210
|
+
PSJjb2xvcjojMDAwOyB0ZXh0LWRlY29yYXRpb246bm9uZTsgZm9udC13ZWlnaHQ6NTAwIj
|
211
|
+
4NCjxpbWcgc3JjPSJodHRwOi8vZ3JhcGguZmFjZWJvb2suY29tLzE0NjA0MTczMjIvcGlj
|
212
|
+
dHVyZT93aWR0aD04MCIgc3R5bGU9Im1heC13aWR0aDoxMDAlOyBib3JkZXI6bm9uZSI+PC
|
213
|
+
9hPg0KPC90ZD4NCg0KPHRkIHdpZHRoPSI1cHgiPjwvdGQ+DQo8dGQ+DQoNCjxwIHN0eWxl
|
214
|
+
PSJtYXJnaW4tYm90dG9tOjEwcHg7IGxpbmUtaGVpZ2h0OjEuMDsgY29sb3I6IzAwMDsgZm
|
215
|
+
9udC1zaXplOjE1cHg7IGZvbnQtd2VpZ2h0OjYwMDsgZm9udC1hbGlnbjpjZW50ZXI7IG1h
|
216
|
+
cmdpbi10b3A6NXB4Ij4NCjxhIGhyZWY9Imh0dHA6Ly9uZXdzLnNwb3RpZnltYWlsLmNvbS
|
217
|
+
93Zi9jbGljaz91cG49djBpbGh6Skw1VWZXeXZkVHFQTUdOQUZyb3Zuai0yQlBYVlg1cUVE
|
218
|
+
ZHU3NFRPb2JOcnFIMGUtMkJsVTRXUmMzbUhDeXZwVlNra1RSU21FcnNNOHJ3QzlZeFBQRn
|
219
|
+
FuRi0yQklMekVFT29tVWQ4MXQtMkJmTzBveVNDdWRrbTl0VUJ3UXlIdzM0UWt0clpWeHAt
|
220
|
+
MkZTdGxhM3JQbnktMkZERVA1eURGVktiSjMwQTJ0YkQ0VHRHR29lenpHY2xYZWFKZFVQa1
|
221
|
+
ZIMGctMkZPbjFLdTJwZ1NLSUNscHRZeTNacFlJNXgyWW1odzhabnlZMlh6YjFZQVlGQVNv
|
222
|
+
LTJGQnZCakh1S3Q4MklwLTJCZm93aDhwel9UakItMkZ2NEJaSmFYSTZ1bTlIZnhqT0w1bF
|
223
|
+
hTNldjQmVxTnphYTZTRElra011blM0LTJGN0ttcUhvenJKUnpPVldsaHNUdC0yQmoxdDVN
|
224
|
+
QUR1Qy0yQmJEOEFnS1M1Nmk5ektvRzY2QTA5RXlvLTJCangweDRmbXZXU2J0TEFIMHVBME
|
225
|
+
tJOTJZdDU4TnRQSDgzVlZHQjJHUy0yQmt3dTNjQ0NNbnlncmgtMkZWMHRMZW1sMjBGUkRs
|
226
|
+
alMyNGZZTG5Na096SzNCaE9GOEpMeUR2eFpUTWhQRXc2UzcxUEw4OExDcDJlWi0yQnFqc2
|
227
|
+
dWeUJPaU9ZendOSWVxVXBBcnBQLTJGOUhBYjRvTlJ4RUFhOEdiIiBzdHlsZT0iY29sb3I6
|
228
|
+
IzAwMDsgdGV4dC1kZWNvcmF0aW9uOm5vbmU7IGZvbnQtd2VpZ2h0OjUwMCI+DQpZZXNzaW
|
229
|
+
NhIEliYXJyYQ0KPC9hPg0KPC9wPg0KaXMgbm93IGZvbGxvd2luZyB5b3VyIHBsYXlsaXN0
|
230
|
+
LCA8YSBocmVmPSJodHRwOi8vbmV3cy5zcG90aWZ5bWFpbC5jb20vd2YvY2xpY2s/dXBuPX
|
231
|
+
YwaWxoekpMNVVmV3l2ZFRxUE1HTkFGcm92bmotMkJQWFZYNXFFRGR1NzRUT29iTnJxSDBl
|
232
|
+
LTJCbFU0V1JjM21IQ3l2cFZTa2tUUlNtRXJzTThyd0M5WXhQUEZxbkYtMkJJTHpFRU9vbV
|
233
|
+
VkODF0LTJCZk8wb3lTQ3Vka205dFVCd1F5SHczNFFrdHJaVnhwLTJGU3RsYTNyUG55LTJG
|
234
|
+
REVQNXlERlZLYkozMEEydGJENFR0R0dvZXp6R2NsWGVhSmRVUGtWSDBnLTJGT24xS3UycG
|
235
|
+
dTS0lDbHB0WXkzWnBZSTV4MlltaHc4Wm55WTJYemIxWUFZRkFTcWZ1V1U1Y1FlUXZzLTJC
|
236
|
+
VWxIcWU0NE9XbHVNeGdNWlhoODctMkIyOHZrYS0yRm0yUEpjQUNKTnN5ZXBaajQtMkJ5QU
|
237
|
+
1zNjctMkZBLTNEX1RqQi0yRnY0QlpKYVhJNnVtOUhmeGpPTDVsWFM2V2NCZXFOemFhNlNE
|
238
|
+
SWtrTXVuUzQtMkY3S21xSG96ckpSek9WV2xoeFFsUExLVks3VmFsQmlmRWhGZlVTRzl5Sm
|
239
|
+
hNY1ZVWjVWbWNRYjdQalYtMkJMbTFQZndEVnlrNmN4eUFWUG4wbUF0STA5OS0yQlVqTXMw
|
240
|
+
UGlzR0NBWjF5VC0yRnRmZ3R1Mi0yQk96bHRmRkNTYmxLbnpEUHZSczJUM25hMDl3bnVzTl
|
241
|
+
hMTnNCVlRnLTJCbkNOT09ha2N1LTJCWE9FVnQzVE05SS0yQlAtMkJvRmMtMkZhUXNXUVR1
|
242
|
+
ekx0UEFmLTJGVFRUMlFtazFDQTdOZVBVeC0yQnVBWiI+JiMzNDtIZXImIzM0OyBTb3VuZH
|
243
|
+
RyYWNrPC9hPi4NCjwvdGQ+DQo8L3RyPjwvdGFibGU+DQo8L2Rpdj4NCjwvdGQ+DQoNCjwv
|
244
|
+
dHI+PC90YWJsZT4NCjwvZGl2Pg0KPC90ZD4NCjwvdHI+PC90YWJsZT4NCjwvZGl2Pg0KPC
|
245
|
+
90ZD4NCjx0ZD48L3RkPg0KPC90cj48L3RhYmxlPg0KDQoNCg0KPGRpdiBzdHlsZT0icGFk
|
246
|
+
ZGluZzowcHg7IG1hcmdpbjowIGF1dG87IGRpc3BsYXk6YmxvY2s7IG1hcmdpbi1ib3R0b2
|
247
|
+
06MHB4OyBtYXgtd2lkdGg6NTU3cHg7IGJvcmRlci1ib3R0b206MXB4IHNvbGlkICNlM2Uz
|
248
|
+
ZTMiPjwvZGl2Pg0KDQoNCg0KDQo8dGFibGUgc3R5bGU9IndpZHRoOjEwMCUiIHdpZHRoPS
|
249
|
+
IxMDAlIj48dHI+DQo8dGQ+PC90ZD4NCjx0ZCBiZ2NvbG9yPSIjRkZGRkZGIiBzdHlsZT0i
|
250
|
+
ZGlzcGxheTpibG9jazsgbWF4LXdpZHRoOjYwMHB4OyBtYXJnaW46MCBhdXRvOyBjbGVhcj
|
251
|
+
pib3RoIj4NCjxkaXYgc3R5bGU9ImJvcmRlcjowcHggc29saWQgIzAwMDsgcGFkZGluZzox
|
252
|
+
MHB4IDEwcHggNXB4IDEwcHg7IG1heC13aWR0aDo2MDBweDsgbWFyZ2luOjAgYXV0bzsgZG
|
253
|
+
lzcGxheTpibG9jazsgbWFyZ2luLWJvdHRvbTowcHgiPg0KPHRhYmxlIHN0eWxlPSJ3aWR0
|
254
|
+
aDoxMDAlIiB3aWR0aD0iMTAwJSI+PHRyPg0KPHRkPg0KPGRpdiBzdHlsZT0iYm9yZGVyOj
|
255
|
+
BweCBzb2xpZCAjMDAwOyBwYWRkaW5nOjEwcHggMTBweCA1cHggMTBweDsgbWF4LXdpZHRo
|
256
|
+
OjYwMHB4OyBtYXJnaW46MCBhdXRvOyBkaXNwbGF5OmJsb2NrOyBtYXJnaW4tYm90dG9tOj
|
257
|
+
BweCI+DQo8dGFibGUgYm9yZGVyPSIwIiBiZ2NvbG9yPSIiIHN0eWxlPSJ3aWR0aDoxMDAl
|
258
|
+
IiB3aWR0aD0iMTAwJSI+PHRyPg0KDQo8YSBocmVmPSJodHRwOi8vbmV3cy5zcG90aWZ5bW
|
259
|
+
FpbC5jb20vd2YvY2xpY2s/dXBuPXYwaWxoekpMNVVmV3l2ZFRxUE1HTkFGcm92bmotMkJQ
|
260
|
+
WFZYNXFFRGR1NzRUT29iTnJxSDBlLTJCbFU0V1JjM21IQ3l2cFZTa2tUUlNtRXJzTThyd0
|
261
|
+
M5WXhQUEZxbkYtMkJJTHpFRU9vbVVkODF0LTJCZk8wb3lTQ3Vka205dFVCd1F5SHczNFFr
|
262
|
+
dHJaVnhwLTJGU3RsYTNyUG55LTJGREVQNXlERlZLYkozMEEydGJENFR0R0dvZXp6R2NsWG
|
263
|
+
VhSmRVUGtWSDBnLTJGT24xS3UycGdTS0lDbHB0WXkzWnBZSTV4MlltaHc4Wm55WTJYemIx
|
264
|
+
WUFZRkFTby0yRkJ2QmpIdUt0ODJJcC0yQmZvd2g4cHpfVGpCLTJGdjRCWkphWEk2dW05SG
|
265
|
+
Z4ak9MNWxYUzZXY0JlcU56YWE2U0RJa2tNdW5TNC0yRjdLbXFIb3pySlJ6T1ZXbGhsR2hN
|
266
|
+
NXJrRWZCUVRLWXkzR0h3VlZ0bzB0OUo5dTN0TjNUTndoMVM1OHl1NW1jLTJCNUNmQThORk
|
267
|
+
o5UklNLTJCOXN6YTdqbU5welllemJqQ2lqcE1mTnA5Rzk4cVItMkZHQXEyT0pIcm81MU1O
|
268
|
+
T0RzaXk2MExmVXROZW9Ba01HZmhmOWJrYXd2NEprNVdjY1dMMXRNZklLdEZjREY3Rjh0TH
|
269
|
+
hRc2hDUDUtMkJzLTJCQzJpQzBCdzNaZ0V4b0JUTXktMkZmOXBlaHFXeVYiIHN0eWxlPSJj
|
270
|
+
b2xvcjojMDAwOyB0ZXh0LWRlY29yYXRpb246bm9uZTsgZm9udC13ZWlnaHQ6NTAwIj4NCj
|
271
|
+
xkaXYgdHlwZT0iYnV0dG9uIiBzdHlsZT0ndGV4dC1kZWNvcmF0aW9uOm5vbmU7IHZlcnRp
|
272
|
+
Y2FsLWFsaWduOmJhc2VsaW5lOyBib3JkZXItcmFkaXVzOjRweDsgZGlzcGxheTpibG9jaz
|
273
|
+
sgcGFkZGluZzowIDExcHg7IGZvbnQ6Ym9sZCAxM3B4LzI2cHggIkx1Y2lkYSBHcmFuZGUi
|
274
|
+
LFRhaG9tYSxzYW5zLXNlcmlmOyAtd2Via2l0LXRhcC1oaWdobGlnaHQtY29sb3I6dHJhbn
|
275
|
+
NwYXJlbnQ7IC13ZWJraXQtZm9udC1zbW9vdGhpbmc6YW50aWFsaWFzZWQ7IHRleHQtYWxp
|
276
|
+
Z246Y2VudGVyOyB3aGl0ZS1zcGFjZTpub3dyYXA7IGJvcmRlcjoxcHggc29saWQgI2E4YT
|
277
|
+
hhODsgcGFkZGluZzowIDE2cHg7IGZvbnQtc2l6ZToxM3B4OyBsaW5lLWhlaWdodDo0NXB4
|
278
|
+
OyBjb2xvcjojZmZmOyB3aGl0ZS1zcGFjZTpub3dyYXA7IGJvcmRlcjoxcHggc29saWQgIz
|
279
|
+
Y0OTcwMDsgdGV4dC1zaGFkb3c6MCAtMXB4IDAgIzRkN2YwMDsgYmFja2dyb3VuZDojNzdi
|
280
|
+
OTAwOyBiYWNrZ3JvdW5kLWNvbG9yOiM3N2I5MDA7IGJhY2tncm91bmQ6LW1vei1saW5lYX
|
281
|
+
ItZ3JhZGllbnQodG9wLCAjOTBiNTAwIDAlLCAjNzI5OTAwIDEwMCUpOyBiYWNrZ3JvdW5k
|
282
|
+
Oi13ZWJraXQtZ3JhZGllbnQobGluZWFyLCBsZWZ0IHRvcCwgbGVmdCBib3R0b20sIGNvbG
|
283
|
+
9yLXN0b3AoMCUsIzkwYjUwMCksIGNvbG9yLXN0b3AoMTAwJSwgIzcyOTkwMCkpOyBiYWNr
|
284
|
+
Z3JvdW5kOi13ZWJraXQtbGluZWFyLWdyYWRpZW50KHRvcCwgIzkwYjUwMCAwJSwgIzcyOT
|
285
|
+
kwMCAxMDAlKTsgYmFja2dyb3VuZDotby1saW5lYXItZ3JhZGllbnQodG9wLCAjOTBiNTAw
|
286
|
+
IDAlLCAjNzI5OTAwIDEwMCUpOyBiYWNrZ3JvdW5kOi1tcy1saW5lYXItZ3JhZGllbnQodG
|
287
|
+
9wLCAjOTBiNTAwIDAlLCAjNzI5OTAwIDEwMCUpOyBiYWNrZ3JvdW5kOmxpbmVhci1ncmFk
|
288
|
+
aWVudCh0byBib3R0b20sICM5MGI1MDAgMCUsICM3Mjk5MDAgMTAwJSknIGJnY29sb3I9Ii
|
289
|
+
M3N2I5MDAiIGFsaWduPSJjZW50ZXIiPg0KPHNwYW4+VmlldyBQcm9maWxlPC9zcGFuPg0K
|
290
|
+
PC9kaXY+DQo8L2E+DQoNCjwvdHI+PC90YWJsZT4NCjwvZGl2Pg0KPC90ZD4NCjwvdHI+PC
|
291
|
+
90YWJsZT4NCjwvZGl2Pg0KPC90ZD4NCjx0ZD48L3RkPg0KPC90cj48L3RhYmxlPg0KDQoN
|
292
|
+
Cg0KPHRhYmxlIHN0eWxlPSJ3aWR0aDoxMDAlOyBjbGVhcjpib3RoIiB3aWR0aD0iMTAwJS
|
293
|
+
I+PHRyPg0KPHRkPjwvdGQ+DQo8dGQgc3R5bGU9ImRpc3BsYXk6YmxvY2s7IG1heC13aWR0
|
294
|
+
aDo2MDBweDsgbWFyZ2luOjAgYXV0bzsgY2xlYXI6Ym90aCI+DQo8ZGl2IHN0eWxlPSJib3
|
295
|
+
JkZXI6MHB4IHNvbGlkICMwMDA7IHBhZGRpbmc6MTBweCAxMHB4IDVweCAxMHB4OyBtYXgt
|
296
|
+
d2lkdGg6NjAwcHg7IG1hcmdpbjowIGF1dG87IGRpc3BsYXk6YmxvY2s7IG1hcmdpbi1ib3
|
297
|
+
R0b206MHB4Ij4NCjx0YWJsZSBzdHlsZT0id2lkdGg6MTAwJSIgd2lkdGg9IjEwMCUiPjx0
|
298
|
+
cj4NCjx0ZCBhbGlnbj0iY2VudGVyIj4NCg0KDQo8cCBzdHlsZT0ibWFyZ2luLWJvdHRvbT
|
299
|
+
oxMHB4OyBmb250LXdlaWdodDpub3JtYWw7IGxpbmUtaGVpZ2h0OjIwcHg7IGZvbnQtc2l6
|
300
|
+
ZToxM3B4OyBjb2xvcjojOTk5Ij4NClNlbnQgdG8gZm9vYmFyckBzYXMudXBlbm4uZWR1Lg
|
301
|
+
0KPGEgaHJlZj0iaHR0cDovL25ld3Muc3BvdGlmeW1haWwuY29tL3dmL2NsaWNrP3Vwbj12
|
302
|
+
MGlsaHpKTDVVZld5dmRUcVBNR05MU0lValJEUlJscG9BZUItMkZLWk0tMkZGSkdIY3V3N2
|
303
|
+
12d1YxVk1QM3hra09xUjd3UlJTVENvWGpNemlKazgzdHJoZmR4M2pCZHIyVklhMlpjZmFn
|
304
|
+
c25VTkZvcENkdzBkZm83OThnS0lNelBlSWRTODFDbUxVb1RsRjl4cHdUNTUtMkZrZ2pPRn
|
305
|
+
JFWk4wMnlSZVYtMkZIdXpOMk4zT3JXMy0yRkVCQXhLLTJCWGx0TXQyUzh0S1VRNDEtMkJM
|
306
|
+
ZmZnbm1CUjc3RkZteXFsNkNEWHFsUlpPZWtsZkhzM2E3WGQtMkZFSjk4dFBmUTcwTUpnUU
|
307
|
+
lqWDMxMTRpZ19UakItMkZ2NEJaSmFYSTZ1bTlIZnhqT0w1bFhTNldjQmVxTnphYTZTRElr
|
308
|
+
a011blM0LTJGN0ttcUhvenJKUnpPVldsaE9mOGZYbjJXUlczQk0wb0dvUDBqNXA3OWE3YW
|
309
|
+
RFUU9EOHBpMEVkLTJCM2FzdTBQUXhTVlhJT3EzbEJyMGhQOS0yQllPd05jcUpMLTJGcmJP
|
310
|
+
UTFmVGhGdkg2YWpzelRxT1ZLVDJOc0hqQmR5M3g4MmtNemV5TC0yRkUtMkJYLTJCUGw0TW
|
311
|
+
JybXB3UXQ1OEFteW5YRzBRQjVkRDU5REJTVUl6aHp6V2gtMkZGbUsxZ2tvamxlWnhPS2N2
|
312
|
+
b2l1MC0yRm0xVnlESkRabXNjUnJOeUUiIHN0eWxlPSJ0ZXh0LWRlY29yYXRpb246bm9uZT
|
313
|
+
sgZm9udC13ZWlnaHQ6NTAwOyBjb2xvcjojNzdiOTAwIj4NCjx1bnN1YnNjcmliZT5EZWFj
|
314
|
+
dGl2YXRlIG5vdGlmaWNhdGlvbjwvdW5zdWJzY3JpYmU+PC9hPg0KPGJyPlNwb3RpZnkgTH
|
315
|
+
RkLiAzMCBHcmVhdCBQdWx0ZW5leSBTdHJlZXQsDQo8YnI+TG9uZG9uIFcxRiA5Tk4sIFVL
|
316
|
+
DQo8L3A+DQoNCg0KPC90ZD4NCjwvdHI+PC90YWJsZT4NCjwvZGl2Pg0KPC90ZD4NCjx0ZD
|
317
|
+
48L3RkPg0KPC90cj48L3RhYmxlPg0KDQoNCg0KPGltZyBzcmM9Imh0dHA6Ly9uZXdzLnNw
|
318
|
+
b3RpZnltYWlsLmNvbS93Zi9vcGVuP3Vwbj1UakItMkZ2NEJaSmFYSTZ1bTlIZnhqT0w1bF
|
319
|
+
hTNldjQmVxTnphYTZTRElra011blM0LTJGN0ttcUhvenJKUnpPVldsaFlhZEdDRnBvVFhU
|
320
|
+
dkR2VHotMkJCeHFuTXpjNVdibGNuR0pJdEF3Y3YxTFBLMkNuY0NSeWQ4czVPTk9xQ2tjSn
|
321
|
+
VQR1Fqai0yQmNaVEktMkJoenlwSElZcDV4RHFVUUZpSldwLTJCamNWU2VLeFNNVkJGVzR5
|
322
|
+
dVo2UkwwdU9nZmZPLTJCVXNTTktEU1lIY1dSdXdOdVBMbkMzeWYxTTlSUUlDV3JCOE45aW
|
323
|
+
ZIR2VOTHl5SzNDaUFNRC0yRjNSaWd4V3UtMkZXV04tMkJtdS0yRnNZUSIgYWx0PSIiIHdp
|
324
|
+
ZHRoPSIxIiBoZWlnaHQ9IjEiIGJvcmRlcj0iMCIgc3R5bGU9ImhlaWdodDoxcHggIWltcG
|
325
|
+
9ydGFudDt3aWR0aDoxcHggIWltcG9ydGFudDtib3JkZXItd2lkdGg6MCAhaW1wb3J0YW50
|
326
|
+
O21hcmdpbi10b3A6MCAhaW1wb3J0YW50O21hcmdpbi1ib3R0b206MCAhaW1wb3J0YW50O2
|
327
|
+
1hcmdpbi1yaWdodDowICFpbXBvcnRhbnQ7bWFyZ2luLWxlZnQ6MCAhaW1wb3J0YW50O3Bh
|
328
|
+
ZGRpbmctdG9wOjAgIWltcG9ydGFudDtwYWRkaW5nLWJvdHRvbTowICFpbXBvcnRhbnQ7cG
|
329
|
+
FkZGluZy1yaWdodDowICFpbXBvcnRhbnQ7cGFkZGluZy1sZWZ0OjAgIWltcG9ydGFudDsi
|
330
|
+
Lz4NCg==
|
331
|
+
|
332
|
+
--===============7538230829199531295==--
|
333
|
+
--CB8CA718-73BC-48A2-B19F-CCB8D0A5FBA0--
|
@@ -0,0 +1,66 @@
|
|
1
|
+
Received: (qmail 16743 invoked from network); 30 Dec 2010 18:37:33 -0000
|
2
|
+
Received: from unknown (HELO ourmailserver.com) (10.1.0.252)
|
3
|
+
by ourmailserver.com with SMTP; 30 Dec 2010 18:37:33 -0000
|
4
|
+
Received: from bay0-omc2-s15.bay0.hotmail.com ([65.54.190.90])
|
5
|
+
by ourmailserver.com with ESMTP; 30 Dec 2010 10:37:17 -0800
|
6
|
+
Received: from BAY0-JMR-DB02 ([65.54.190.125]) by bay0-omc2-s15.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675);
|
7
|
+
Thu, 30 Dec 2010 10:37:16 -0800
|
8
|
+
Date: Thu, 30 Dec 10 10:37:16 -0800
|
9
|
+
From: staff@hotmail.com
|
10
|
+
Subject: complaint about message from 24.64.1.1
|
11
|
+
To: fbl-abuse@ourdomain.com
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/mixed; boundary="A80427F4-B4F2-4D64-BECA-12CAD20DE5F5"
|
14
|
+
Return-Path: staff@hotmail.com
|
15
|
+
Message-ID: <BAY0-OMC2-S15EXxt5B0006c5b9@bay0-omc2-s15.bay0.hotmail.com>
|
16
|
+
X-OriginalArrivalTime: 30 Dec 2010 18:37:16.0535 (UTC) FILETIME=[9544B870:01CBA850]
|
17
|
+
|
18
|
+
--A80427F4-B4F2-4D64-BECA-12CAD20DE5F5
|
19
|
+
Content-Type: message/rfc822
|
20
|
+
Content-Disposition: inline
|
21
|
+
|
22
|
+
X-HmXmrOriginalRecipient: somerecipient@hotmail.com
|
23
|
+
X-Reporter-IP: 96.23.88.208
|
24
|
+
X-Message-Delivery: Vj0xLjE7dXM9MDtsPTE7YT0xO0Q9MTtTQ0w9MA==
|
25
|
+
X-Message-Status: n
|
26
|
+
X-SID-PRA: Our Domain <support@ourdomain.com>
|
27
|
+
X-AUTH-Result: NONE
|
28
|
+
X-Message-Info: /Afko6AgMSzYW0lYpZQpJ1fX1hpBS7ZsGpYQz72u0pGUrNVnYB55cCmtxJMioyRUp4kBLVmh5ORjL/cKELk+Un2AYg/2pHDlTSy4Jebte06vpiO+vUgPLA==
|
29
|
+
Received: from ourdomain.com ([24.64.1.1]) by snt0-mc2-f47.Snt0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675);
|
30
|
+
Thu, 30 Dec 2010 06:50:29 -0800
|
31
|
+
Received: (qmail 7488 invoked from network); 30 Dec 2010 14:50:29 -0000
|
32
|
+
Received: from web.local (10.1.0.252)
|
33
|
+
by ourmailserver.com with SMTP; 30 Dec 2010 14:50:29 -0000
|
34
|
+
Received: from mail pickup service by WEB.local with Microsoft SMTPSVC;
|
35
|
+
Thu, 30 Dec 2010 06:50:29 -0800
|
36
|
+
From: "Our Domain" <support@ourdomain.com>
|
37
|
+
To: "someuser@hotmail.com" <someuser@hotmail.com>
|
38
|
+
Date: Thu, 30 Dec 2010 06:50:29 -0800
|
39
|
+
Subject: Some Subject Line
|
40
|
+
MIME-Version: 1.0
|
41
|
+
Content-Type: multipart/alternative;
|
42
|
+
boundary="_=aspNetEmail=_7d2331908aec4efe9b55fe9f27355434"
|
43
|
+
X-Mailer: aspNetEmail ver 2.5.0.0
|
44
|
+
X-RCPT-TO: <someuser@hotmail.com>
|
45
|
+
MIME-Version: 1.0
|
46
|
+
Message-ID: <WEBfb154d7a03bb483591c696782382d12e@WEB>
|
47
|
+
X-OriginalArrivalTime: 30 Dec 2010 14:50:29.0339 (UTC) FILETIME=[E6BF62B0:01CBA830]
|
48
|
+
Return-Path: support@ourdomain.com
|
49
|
+
|
50
|
+
--_=aspNetEmail=_7d2331908aec4efe9b55fe9f27355434
|
51
|
+
Content-Type: text/plain;
|
52
|
+
charset="utf-8"
|
53
|
+
Content-Transfer-Encoding: quoted-printable
|
54
|
+
|
55
|
+
Season's Greetings
|
56
|
+
|
57
|
+
--_=aspNetEmail=_7d2331908aec4efe9b55fe9f27355434
|
58
|
+
Content-Type: text/html;
|
59
|
+
charset="utf-8"
|
60
|
+
Content-Transfer-Encoding: quoted-printable
|
61
|
+
|
62
|
+
<p>Season's Greetings</p>
|
63
|
+
|
64
|
+
--_=aspNetEmail=_7d2331908aec4efe9b55fe9f27355434--
|
65
|
+
|
66
|
+
--A80427F4-B4F2-4D64-BECA-12CAD20DE5F5--
|
@@ -0,0 +1,79 @@
|
|
1
|
+
Received: from mx.example.org (c182128.example.net [192.0.2.128])
|
2
|
+
by mx.example.jp (8.14.4/8.14.4) with ESMTP id oBB3JxRJ022484
|
3
|
+
for <shironeko@example.jp>; Sat, 11 Dec 2010 12:20:00 +0900 (JST)
|
4
|
+
X-Virus-Status: Clean
|
5
|
+
X-Virus-Scanned: clamav-milter 0.96 at 6kaku.example.jp
|
6
|
+
X-SenderID: Sendmail Sender-ID Filter v1.0.0 mx.example.jp oBB3JxRJ022484
|
7
|
+
Authentication-Results: mx.example.jp; sender-id=pass header.from=postmaster@example.org
|
8
|
+
Received: from localhost (localhost [127.0.0.1])
|
9
|
+
(ftp://ftp.isi.edu/in-notes/rfc1894.txt)
|
10
|
+
by marutamachi.example.org with dsn; Sat, 11 Dec 2010 12:19:59 +0900
|
11
|
+
id 0EFECD52.4D02EDDF.0000C65A
|
12
|
+
From: postmaster@example.org
|
13
|
+
To: shironeko@example.jp
|
14
|
+
Subject: NOTICE: mail delivery status.
|
15
|
+
Mime-Version: 1.0
|
16
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
17
|
+
boundary="=_courier_0"
|
18
|
+
Content-Transfer-Encoding: 7bit
|
19
|
+
Message-ID: <courier.4D02EDDF.0000C65A@marutamachi.example.org>
|
20
|
+
Date: Sat, 11 Dec 2010 12:19:59 +0900
|
21
|
+
|
22
|
+
This is a MIME-formatted message. If you see this text it means that your
|
23
|
+
E-mail software does not support MIME-formatted messages.
|
24
|
+
|
25
|
+
--=_courier_0
|
26
|
+
Content-Transfer-Encoding: 7bit
|
27
|
+
Content-Type: text/plain; charset=us-ascii
|
28
|
+
|
29
|
+
|
30
|
+
This is a delivery status notification from marutamachi.example.org,
|
31
|
+
running the Courier mail server, version 0.65.2.
|
32
|
+
|
33
|
+
The original message was received on Sat, 11 Dec 2010 12:19:57 +0900
|
34
|
+
from [127.0.0.1] (c10920.example.com [192.0.2.20])
|
35
|
+
|
36
|
+
---------------------------------------------------------------------------
|
37
|
+
|
38
|
+
UNDELIVERABLE MAIL
|
39
|
+
|
40
|
+
Your message to the following recipients cannot be delivered:
|
41
|
+
|
42
|
+
<kijitora@example.co.jp>:
|
43
|
+
mx.example.co.jp [74.207.247.95]:
|
44
|
+
>>> RCPT TO:<kijitora@example.co.jp>
|
45
|
+
<<< 550 5.1.1 <kijitora@example.co.jp>... User Unknown
|
46
|
+
|
47
|
+
---------------------------------------------------------------------------
|
48
|
+
|
49
|
+
If your message was also sent to additional recipients, their delivery
|
50
|
+
status is not included in this report. You may or may not receive
|
51
|
+
other delivery status notifications for additional recipients.
|
52
|
+
|
53
|
+
The original message follows as a separate attachment.
|
54
|
+
|
55
|
+
|
56
|
+
--=_courier_0
|
57
|
+
Content-Type: message/delivery-status
|
58
|
+
Content-Transfer-Encoding: 7bit
|
59
|
+
|
60
|
+
Reporting-MTA: dns; marutamachi.example.org
|
61
|
+
Arrival-Date: Sat, 11 Dec 2010 12:19:57 +0900
|
62
|
+
Received-From-MTA: dns; [127.0.0.1] (c10920.example.com [192.0.2.20])
|
63
|
+
|
64
|
+
Final-Recipient: rfc822; kijitora@example.co.jp
|
65
|
+
Action: failed
|
66
|
+
Status: 5.0.0
|
67
|
+
Remote-MTA: dns; mx.example.co.jp [192.0.2.95]
|
68
|
+
Diagnostic-Code: smtp; 550 5.1.1 <kijitora@example.co.jp>... User Unknown
|
69
|
+
|
70
|
+
--=_courier_0
|
71
|
+
Content-Type: message/rfc822
|
72
|
+
Content-Transfer-Encoding: 7bit
|
73
|
+
|
74
|
+
Received: from [127.0.0.1] (c10920.example.com [192.0.2.20])
|
75
|
+
by marutamachi.example.org with SMTP; Sat, 11 Dec 2010 12:19:17 +0900
|
76
|
+
id 0EFECD4E.4D02EDD9.0000C5BA
|
77
|
+
To: undisclosed-recipients: ;
|
78
|
+
|
79
|
+
--=_courier_0--
|