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,59 @@
|
|
1
|
+
Received: from [127.0.0.1] ([local])
|
2
|
+
by server.local (envelope-from <dmarc-noreply@example.com>)
|
3
|
+
(ecelerity 3.6.5.1 r(Core:3.6.5.0)) with UNKNOWN
|
4
|
+
id 66/91-22781-03645555; Wed, 12 Nov 2014 12:40:48 +0000
|
5
|
+
Date: Wed, 12 Nov 2014 12:40:48 +0000
|
6
|
+
Message-ID: <66.321423.4234.05553645@server.local>
|
7
|
+
Subject: DMARC Forensic report for example.net Mail-From:mail-handler@example.org IP:192.0.2.45
|
8
|
+
To: dmarc-noreply@example.com
|
9
|
+
From: dmarc-noreply@example.com
|
10
|
+
Content-Type: multipart/report; report-type=feedback-report;
|
11
|
+
boundary="_----WnVe0eRhhldi/asdEdak3f===_66/91-22781-03645555"
|
12
|
+
|
13
|
+
--_----WnVe0eRhhldi/asdEdak3f===_66/91-22781-03645555
|
14
|
+
Content-Type: text/plain; charset="US-ASCII"
|
15
|
+
Content-Transfer-Encoding: 7bit
|
16
|
+
|
17
|
+
This is an email abuse report for an email message received from IP 192.0.2.45 on Wed, 12 Nov 2014 12:40:48 +0000.
|
18
|
+
The message below did not meet the sending domain's dmarc policy.
|
19
|
+
For more information about this format please see http://tools.ietf.org/html/rfc6591 .
|
20
|
+
|
21
|
+
--_----WnVe0eRhhldi/asdEdak3f===_66/91-22781-03645555
|
22
|
+
Content-Type: message/feedback-report
|
23
|
+
|
24
|
+
Feedback-Type: auth-failure
|
25
|
+
User-Agent: Lua/1.0
|
26
|
+
Version: 1.0
|
27
|
+
Original-Mail-From: mail-handler@example.org
|
28
|
+
Original-Rcpt-To: fake.rcpt@example.com
|
29
|
+
Arrival-Date: Wed, 12 Nov 2014 12:40:48 +0000
|
30
|
+
Message-ID: <105855309.1523556.1415796020873@example.net>
|
31
|
+
Authentication-Results: dmarc=fail (p=none; dis=none) header.from=example.net
|
32
|
+
Source-IP: 192.0.2.45
|
33
|
+
Delivery-Result: delivered
|
34
|
+
Auth-Failure: dmarc
|
35
|
+
Reported-Domain: example.net
|
36
|
+
|
37
|
+
--_----WnVe0eRhhldi/asdEdak3f===_66/91-22781-03645555
|
38
|
+
Content-Type: message/rfc822
|
39
|
+
Content-Disposition: inline
|
40
|
+
|
41
|
+
Received: from [192.0.2.45] ([192.0.2.45:521] helo=portal.example.org)
|
42
|
+
by server.local (envelope-from <mail-handler@example.org>)
|
43
|
+
(ecelerity 3.6.5.1 r(Core:3.6.5.0)) with ESMTPS (cipher=AES256-GCM-SHA384
|
44
|
+
id 62/91-21827-F3645455; Wed, 12 Nov 2014 12:40:47 +0000
|
45
|
+
Received: from main (localhost [127.0.0.1])
|
46
|
+
by portal.example.org (Postfix) with ESMTP id DC1DC918001;
|
47
|
+
Wed, 12 Nov 2014 12:40:35 +0000 (UTC)
|
48
|
+
Date: Wed, 12 Nov 2014 12:40:20 +0000 (WET)
|
49
|
+
From: Fake User <fake.sender@example.net>
|
50
|
+
To: mailling.list@example.org
|
51
|
+
Message-ID: <105855309.1523556.1415796020873@example.net>
|
52
|
+
Subject: [mailling list] this is a test message
|
53
|
+
MIME-Version: 1.0
|
54
|
+
Content-Type: text/plain
|
55
|
+
|
56
|
+
Message failure example
|
57
|
+
|
58
|
+
--_----WnVe0eRhhldi/asdEdak3f===_66/91-22781-03645555--
|
59
|
+
|
@@ -0,0 +1,103 @@
|
|
1
|
+
Return-Path: abuse@126.com
|
2
|
+
Received: from 163.com (unknown [192.168.201.142])
|
3
|
+
by mfast1 (Coremail) with SMTP id dDqxCodaS4S5sHdaS6etw6ntUlvz3--.2340S1;
|
4
|
+
Mon, 01 Dec 2014 12:12:28 +0800 (CST)
|
5
|
+
MIME-Version: 1.0
|
6
|
+
Content-Type: multipart/report; report-type="feedback-report";
|
7
|
+
boundary="===============8693109903873658895=="
|
8
|
+
From: <abuse@126.com>
|
9
|
+
Subject: [dmarc-ietf] DMARC test message
|
10
|
+
Date: Mon, 01 Dec 2014 12:12:27 +0800
|
11
|
+
To: dmarc@example.net
|
12
|
+
X-Originating-IP: [192.0.2.142]
|
13
|
+
Message-Id: <BEA75470.8674AA.09393@m12-181.163.com>
|
14
|
+
|
15
|
+
--===============8693109903873658895==
|
16
|
+
Content-Type: text/plain; charset="us-ascii"
|
17
|
+
MIME-Version: 1.0
|
18
|
+
Content-Transfer-Encoding: 7bit
|
19
|
+
|
20
|
+
This is a spf/dkim authentication-failure report for an email message received from IP 192.0.2.45 on Mon, 01 Dec 2014 12:12:27 +0800.
|
21
|
+
Below is some detail information about this message:
|
22
|
+
1. SPF-authenticated Identifiers: corp.netease.com;
|
23
|
+
2. DKIM-authenticated Identifiers: none;
|
24
|
+
3. DMARC Mechanism Check Result: Identifier non-aligned, DMARC mechanism check failures;
|
25
|
+
|
26
|
+
For more information please check Aggregate Reports or mail to abuse@126.com.
|
27
|
+
--===============8693109903873658895==
|
28
|
+
Content-Type: message/feedback-report
|
29
|
+
MIME-Version: 1.0
|
30
|
+
|
31
|
+
Feedback-Type: auth-failure
|
32
|
+
User-Agent: NtesDmarcReporter/1.0
|
33
|
+
Version: 1
|
34
|
+
Original-Mail-From: <fake.reciver@corp.example.com>
|
35
|
+
Arrival-Date: Mon, 01 Dec 2014 12:12:27 +0800
|
36
|
+
Source-IP: 220.181.31.109
|
37
|
+
Reported-Domain: example.net
|
38
|
+
Original-Envelope-Id: tUfMisMOWL0VebPp6n2+AA--.90702S
|
39
|
+
Authentication-Results: 126.com; dkim=fail (signature error: RSA verify failed) header.d=ietf.org; dkim=permerror (signature verify error: message body does not hash to bh value) header.d=example.net; spf=pass smtp.mailfrom=fake.reciver@corp.example.com
|
40
|
+
DKIM-Domain: ietf.org; example.net
|
41
|
+
Delivery-Result: delivered
|
42
|
+
--===============8693109903873658895==
|
43
|
+
Content-Type: text/rfc822-headers; charset="us-ascii"
|
44
|
+
MIME-Version: 1.0
|
45
|
+
Content-Transfer-Encoding: 7bit
|
46
|
+
|
47
|
+
Received: from mail.ietf.org (unknown [4.31.198.44])
|
48
|
+
by telecommail (Coremail) with SMTP id bR+13ADn6Lxj6ntU2iwEAA--.1516S3;
|
49
|
+
Mon, 01 Dec 2014 12:12:20 +0800 (CST)
|
50
|
+
Received: from ietfa.amsl.com (localhost [IPv6:::1])
|
51
|
+
by ietfa.amsl.com (Postfix) with ESMTP id 6A2EE1A03C7;
|
52
|
+
Sun, 30 Nov 2014 20:11:13 -0800 (PST)
|
53
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ietf.org; s=ietf1;
|
54
|
+
t=1417407073; bh=n74biqrwzEv/voK2V9k+nkaI6RYB9FpjTlCZ2Vb0bBA=;
|
55
|
+
h=Date:From:To:Message-ID:In-Reply-To:References:MIME-Version:Cc:
|
56
|
+
Subject:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:
|
57
|
+
List-Subscribe:Content-Type:Content-Transfer-Encoding:Sender;
|
58
|
+
b=Fbl7fiRzVOFKO27Zq+EwSB6gFIuoVkdgEgTuSd1G8C266mscOFrAQkxUieTxj1Raf
|
59
|
+
SVG+0B5sMEdJ537qWTxHEEqVe8v+b5vRZEFGX4SnUjeHhAoh3zr8BmCiQvXhoXc+By
|
60
|
+
O+O0x+JsZ0yKqvG/XPsgpMMef1mV2WxYzsbQZyEU=
|
61
|
+
X-Original-To: dmarc@ietfa.amsl.com
|
62
|
+
Delivered-To: dmarc@ietfa.amsl.com
|
63
|
+
Received: from localhost (ietfa.amsl.com [127.0.0.1])
|
64
|
+
by ietfa.amsl.com (Postfix) with ESMTP id 751A07EE39C
|
65
|
+
for <dmarc@ietfa.amsl.com>; Sun, 30 Nov 2014 20:11:10 -0800 (PST)
|
66
|
+
X-Virus-Scanned: amavisd-new at amsl.com
|
67
|
+
X-Spam-Flag: NO
|
68
|
+
X-Spam-Score: -4.011
|
69
|
+
X-Spam-Level:
|
70
|
+
X-Spam-Status: No, score=-4.011 tagged_above=-999 required=5
|
71
|
+
tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
|
72
|
+
DKIM_VALID_AU=-0.1, MIME_8BIT_HEADER=0.3, RCVD_IN_DNSWL_MED=-2.3,
|
73
|
+
SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=ham
|
74
|
+
Received: from mail.ietf.org ([4.31.198.44])
|
75
|
+
by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024)
|
76
|
+
with ESMTP id zeGkJauI7NZX for <dmarc@ietfa.amsl.com>;
|
77
|
+
Sun, 30 Nov 2014 20:11:08 -0800 (PST)
|
78
|
+
Date: Mon, 1 Dec 2014 04:11:05 +0000 (WET)
|
79
|
+
From: <fake.sender@example.net>
|
80
|
+
To: <dmarc@ietf.org>
|
81
|
+
Message-ID: <753885954.2173275.1417407065874@example.net>
|
82
|
+
MIME-Version: 1.0
|
83
|
+
Archived-At: http://mailarchive.ietf.org/arch/msg/dmarc/
|
84
|
+
Cc: dmarc@ietf.org
|
85
|
+
Subject: [dmarc-ietf] DMARC test message
|
86
|
+
X-BeenThere: dmarc@ietf.org
|
87
|
+
X-Mailman-Version: 2.1.15
|
88
|
+
Precedence: list
|
89
|
+
List-Id: "Domain-based Message Authentication, Reporting,
|
90
|
+
and Compliance \(DMARC\)" <dmarc.ietf.org>
|
91
|
+
List-Unsubscribe: <https://www.ietf.org/mailman/options/dmarc>,
|
92
|
+
<mailto:dmarc-request@ietf.org?subject=unsubscribe>
|
93
|
+
List-Archive: <http://www.ietf.org/mail-archive/web/dmarc/>
|
94
|
+
List-Post: <mailto:dmarc@ietf.org>
|
95
|
+
List-Help: <mailto:dmarc-request@ietf.org?subject=help>
|
96
|
+
List-Subscribe: <https://www.ietf.org/mailman/listinfo/dmarc>,
|
97
|
+
<mailto:dmarc-request@ietf.org?subject=subscribe>
|
98
|
+
Content-Type: text/plain; charset="utf-8"
|
99
|
+
Content-Transfer-Encoding: base64
|
100
|
+
X-CM-Forward-Sender: dmarc-bounces@ietf.org
|
101
|
+
|
102
|
+
--===============8693109903873658895==--
|
103
|
+
|
@@ -0,0 +1,104 @@
|
|
1
|
+
Return-Path: opendmarc@example.net
|
2
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=example.net;
|
3
|
+
s=2012a; t=1417117584;
|
4
|
+
bh=OmIu7fPEeyCSLPTfQWDKssJb3/N/TZKNFufWVbkO2C8=;
|
5
|
+
h=From:To:Date:Subject:From;
|
6
|
+
b=BRBH3Dd7eXnoVHRLFocqggjBUluUBGhc0/FTHFUYXL/V/6c08y5ASsN9zW9UuGItF
|
7
|
+
YUG6HxPiX/TRkswkrHE68ZBikrbmjjNUcRGWwZozll2aAdpZ6Dz6xslaW0t8BMTy2z
|
8
|
+
NkzSbM+t6Q5iHqbaFBkjkqbEmhZWifX6XcB0BbiQ=
|
9
|
+
From: OpenDMARC Filter <opendmarc@example.net>
|
10
|
+
To: dmarc@example.net
|
11
|
+
Date: Thu, 27 Nov 2014 14:46:24 -0500 (EST)
|
12
|
+
Subject: [dmarc-ietf] DMARC test message
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report;
|
15
|
+
report-type=feedback-report;
|
16
|
+
boundary="example.net:435FE40094"
|
17
|
+
Message-Id: <20141127194624.B23F74011C@example.net>
|
18
|
+
|
19
|
+
--example.net:435FE40094
|
20
|
+
Content-Type: text/plain
|
21
|
+
|
22
|
+
This is an authentication failure report for an email message received from IP
|
23
|
+
192.168.0.255 on Thu, 27 Nov 2014 14:46:24 -0500 (EST).
|
24
|
+
|
25
|
+
--example.net:435FE40094
|
26
|
+
Content-Type: message/feedback-report
|
27
|
+
|
28
|
+
Feedback-Type: auth-failure
|
29
|
+
Version: 1
|
30
|
+
User-Agent: OpenDMARC-Filter/1.3.0
|
31
|
+
Auth-Failure: dmarc
|
32
|
+
Authentication-Results: example.net; dmarc=fail header.from=example.net
|
33
|
+
Original-Envelope-Id: 435FE40094
|
34
|
+
Original-Mail-From: dmarc-bounces@ietf.org
|
35
|
+
Source-IP: 192.168.0.255
|
36
|
+
Reported-Domain: example.net
|
37
|
+
|
38
|
+
--example.net:435FE40094
|
39
|
+
Content-Type: text/rfc822-headers
|
40
|
+
|
41
|
+
Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.168.0.255; helo=mail.ietf.org; envelope-from=dmarc-bounces@ietf.org; receiver=ietf@example.net
|
42
|
+
Authentication-Results: example.net;
|
43
|
+
dkim=pass (1024-bit key; unprotected) header.d=ietf.org header.i=@ietf.org header.b=HfqPrYPz;
|
44
|
+
dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=example.net header.i=@example.net header.b=i3stzaeS;
|
45
|
+
dkim-adsp=none (unprotected policy); dkim-atps=neutral
|
46
|
+
Received: from ietfa.amsl.com (localhost [IPv6:::1])
|
47
|
+
by ietfa.amsl.com (Postfix) with ESMTP id 2FD1A1A013B;
|
48
|
+
Thu, 27 Nov 2014 11:46:22 -0800 (PST)
|
49
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ietf.org; s=ietf1;
|
50
|
+
t=1417117582; bh=NAF7FpoPrpNGZwiH91hktlqr+vG3t6XRtXZ4cjPPG1w=;
|
51
|
+
h=Date:From:To:Message-ID:In-Reply-To:References:MIME-Version:Cc:
|
52
|
+
Subject:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:
|
53
|
+
List-Subscribe:Content-Type:Sender;
|
54
|
+
b=HfqPrYPzHNMYib9SY5qVdr9//vWEy4OTOhhtsWV8pLH+MeCxWIwIo4RViipbYUUo3
|
55
|
+
TTG+t3xUPxHPHLNJoD87RFp7QFt77oavpmtUnuFB5IbadiFMg5x+6wF/PzamsWaAW6
|
56
|
+
V00RLpoSKZ8uxmQ5tQowk44d34FK/CMSWJuv4H2Q=
|
57
|
+
X-Original-To: dmarc@ietfa.amsl.com
|
58
|
+
Delivered-To: dmarc@ietfa.amsl.com
|
59
|
+
Received: from localhost (ietfa.amsl.com [127.0.0.1])
|
60
|
+
by ietfa.amsl.com (Postfix) with ESMTP id 670801A00A9
|
61
|
+
for <dmarc@ietfa.amsl.com>; Thu, 27 Nov 2014 11:46:20 -0800 (PST)
|
62
|
+
X-Virus-Scanned: amavisd-new at amsl.com
|
63
|
+
X-Spam-Flag: NO
|
64
|
+
X-Spam-Score: -3.41
|
65
|
+
X-Spam-Level:
|
66
|
+
X-Spam-Status: No, score=-3.41 tagged_above=-999 required=5
|
67
|
+
tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
|
68
|
+
DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, J_CHICKENPOX_44=0.6,
|
69
|
+
MIME_8BIT_HEADER=0.3, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001,
|
70
|
+
T_RP_MATCHES_RCVD=-0.01] autolearn=ham
|
71
|
+
Received: from mail.ietf.org ([192.168.0.255])
|
72
|
+
by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024)
|
73
|
+
with ESMTP id ssc4T2PBR Wg1for <dmarc@ietfa.amsl.com>;
|
74
|
+
Thu, 27 Nov 2014 11:46:17 -0800 (PST)
|
75
|
+
Received: from smtp.example.net (smtp.example.net [192.0.2.45])
|
76
|
+
(using TLSv1.1 with cipher AECDH-AES256-SHA (256/256 bits))
|
77
|
+
(No client certificate requested)
|
78
|
+
by ietfa.amsl.com (Postfix) with ESMTPS id 04FEF1A013B
|
79
|
+
for <dmarc@ietf.org>; Thu, 27 Nov 2014 11:46:16 -0800 (PST)
|
80
|
+
Date: Thu, 27 Nov 2014 19:46:13 +0000 (WET)
|
81
|
+
From: <fake.sender@example.net>
|
82
|
+
To: <fake.recipient@example.org>
|
83
|
+
Message-ID: <asdjhi9ldn14@example.net>
|
84
|
+
MIME-Version: 1.0
|
85
|
+
Archived-At: http://mailarchive.ietf.org/arch/msg/dmarc/
|
86
|
+
Cc: dmarc@ietf.org
|
87
|
+
Subject: [dmarc-ietf] DMARC test message
|
88
|
+
X-BeenThere: dmarc@ietf.org
|
89
|
+
X-Mailman-Version: 2.1.15
|
90
|
+
Precedence: list
|
91
|
+
List-Id: "Domain-based Message Authentication, Reporting,
|
92
|
+
and Compliance \(DMARC\)" <dmarc.ietf.org>
|
93
|
+
List-Unsubscribe: <https://www.ietf.org/mailman/options/dmarc>,
|
94
|
+
<mailto:dmarc-request@ietf.org?subject=unsubscribe>
|
95
|
+
List-Archive: <http://www.ietf.org/mail-archive/web/dmarc/>
|
96
|
+
List-Post: <mailto:dmarc@ietf.org>
|
97
|
+
List-Help: <mailto:dmarc-request@ietf.org?subject=help>
|
98
|
+
List-Subscribe: <https://www.ietf.org/mailman/listinfo/dmarc>,
|
99
|
+
<mailto:dmarc-request@ietf.org?subject=subscribe>
|
100
|
+
Content-Type: multipart/mixed; boundary="===============9204957237915899297=="
|
101
|
+
Errors-To: dmarc-bounces@ietf.org
|
102
|
+
Sender: "dmarc" <dmarc-bounces@ietf.org>
|
103
|
+
|
104
|
+
--example.net:435FE40094--
|
@@ -0,0 +1,56 @@
|
|
1
|
+
Received: from mra-fbl.returnpath.net (mra-fbl.returnpath.net [66.45.29.178])
|
2
|
+
by mta3.eu.example.net (Postfix) with ESMTP id 3k1ytn3g6jzGqvp
|
3
|
+
for <fbl@example.com>; Tue, 16 Dec 2014 12:09:02 +0000 (UTC)
|
4
|
+
Received: from poma02.lan.returnpath.net (poma02.lan.returnpath.net [10.2.0.110])
|
5
|
+
by mra-fbl.returnpath.net (Postfix) with ESMTP id 1DBFB627E4
|
6
|
+
for <fbl@example.com>; Tue, 16 Dec 2014 05:08:59 -0700 (MST)
|
7
|
+
Received: by poma02.lan.returnpath.net (Postfix, from userid 106706)
|
8
|
+
id 0222E605FA; Tue, 16 Dec 2014 05:08:59 -0700 (MST)
|
9
|
+
Content-Transfer-Encoding: binary
|
10
|
+
Content-Type: multipart/report; boundary="_----------=_14187317381958992959"; report-type="feedback-report"
|
11
|
+
MIME-Version: 1.0
|
12
|
+
X-Mailer: MIME::Lite 3.029 (F2.84; T2.02; A2.12; B3.13; Q3.13)
|
13
|
+
Date: Tue, 16 Dec 2014 05:08:58 -0700
|
14
|
+
Subject: Terra Abuse Report
|
15
|
+
To: fbl@example.com
|
16
|
+
From: feedbackloop@feedback.terra.com
|
17
|
+
Message-Id: <20141216120859.0222E605FA@poma02.lan.returnpath.net>
|
18
|
+
|
19
|
+
This is a multi-part message in MIME format.
|
20
|
+
|
21
|
+
--_----------=_14187317381958992959
|
22
|
+
Content-Disposition: inline
|
23
|
+
Content-Transfer-Encoding: 7bit
|
24
|
+
Content-Type: text/plain
|
25
|
+
|
26
|
+
This is a Terra email abuse report for an email message received from IP 192.0.2.8 on Fri, 12 Dec 2014 13:09:00 +0000
|
27
|
+
|
28
|
+
|
29
|
+
--_----------=_14187317381958992959
|
30
|
+
Content-Disposition: inline
|
31
|
+
Content-Transfer-Encoding: 7bit
|
32
|
+
Content-Type: message/feedback-report
|
33
|
+
|
34
|
+
User-Agent: ReturnPathFBL/1.0
|
35
|
+
Abuse-Type: complaint
|
36
|
+
Arrival-Date: Fri, 12 Dec 2014 13:09:00 +0000
|
37
|
+
Feedback-Type: abuse
|
38
|
+
Version: 1
|
39
|
+
Source-IP: 192.0.2.8
|
40
|
+
Original-Mail-From: fake.sender@example.net
|
41
|
+
|
42
|
+
--_----------=_14187317381958992959
|
43
|
+
Content-Disposition: inline
|
44
|
+
Content-Transfer-Encoding: 8bit
|
45
|
+
Content-Type: message/rfc822
|
46
|
+
|
47
|
+
Return-Path: <fake.sender@example.net>
|
48
|
+
Received: from [10.235.200.102] by mail-lmtp03-mia.tpn.terra.com (LMTP);
|
49
|
+
Fri, 12 Dec 2014 13:09:01 +0000 (UTC)
|
50
|
+
Date: Fri, 12 Dec 2014 13:09:00 +0000
|
51
|
+
To: "undisclosed Terra recipient"
|
52
|
+
From: Colunex <fake.sender@example.net>
|
53
|
+
Subject: Pronta Entrega
|
54
|
+
Message-ID: <f6fbba8a761ce682e1b00a323a21b372@example.net>
|
55
|
+
|
56
|
+
bla bla
|
@@ -0,0 +1,37 @@
|
|
1
|
+
From: <neko@example.com>
|
2
|
+
Date: Thu, 9 Apr 2006 23:34:45 JST
|
3
|
+
Subject: FW: Nyaaan
|
4
|
+
To: <abuse@example.net>
|
5
|
+
MIME-Version: 1.0
|
6
|
+
Content-Type: multipart/report; report-type=feedback-report; boundary="fffffff_000.000000000_b"
|
7
|
+
|
8
|
+
--fffffff_000.000000000_b
|
9
|
+
Content-Type: text/plain; charset="US-ASCII"
|
10
|
+
Content-Transfer-Encoding: 7bit
|
11
|
+
|
12
|
+
This is an email abuse report for an email message received from IP 192.0.2.2 on Thu, 9 Apr 2006 23:34:45 JST.
|
13
|
+
For more information about this format please see http://www.example.org/arf/.
|
14
|
+
|
15
|
+
--fffffff_000.000000000_b
|
16
|
+
Content-Type: message/feedback-report
|
17
|
+
|
18
|
+
Feedback-Type: abuse
|
19
|
+
User-Agent: ARF-Agent/1.0
|
20
|
+
Version: 0.1
|
21
|
+
|
22
|
+
--fffffff_000.000000000_b
|
23
|
+
Content-Type: message/rfc822
|
24
|
+
Content-Disposition: inline
|
25
|
+
|
26
|
+
From: <shironeko@example.net>
|
27
|
+
Received: from mx53.example.net (mx53.example.net [192.0.2.2])
|
28
|
+
by example.com with ESMTP id 00000000000fff; Thu, 09 Apr 2006 23:34:45 +0900
|
29
|
+
To: <Undisclosed Recipients>
|
30
|
+
Subject: Nyaaan
|
31
|
+
MIME-Version: 1.0
|
32
|
+
Content-type: text/plain
|
33
|
+
Message-ID: ffffffffffffffffffffffffff0000000000@example.net
|
34
|
+
Date: Thu, 09 Apr 2006 23:34:45 +0900
|
35
|
+
|
36
|
+
Nyaaaaaaaaan
|
37
|
+
--fffffff_000.000000000_b--
|
@@ -0,0 +1,40 @@
|
|
1
|
+
From: <kijitora@example.com>
|
2
|
+
Date: Thu, 9 Apr 2006 23:34:45 JST
|
3
|
+
Subject: FW: Nyaaan
|
4
|
+
To: <abuse@example.net>
|
5
|
+
MIME-Version: 1.0
|
6
|
+
Content-Type: multipart/report; report-type=feedback-report;
|
7
|
+
boundary="bx1111_00.ffffffffffff"
|
8
|
+
|
9
|
+
--bx1111_00.ffffffffffff
|
10
|
+
Content-Type: text/plain; charset="US-ASCII"
|
11
|
+
Content-Transfer-Encoding: 7bit
|
12
|
+
|
13
|
+
This is an opt-out report for an email message received from IP
|
14
|
+
192.0.2.89 on Thu, 9 Apr 2006 23:34:45 JST. For more information
|
15
|
+
about this format please see http://www.example.org/arf/.
|
16
|
+
|
17
|
+
--bx1111_00.ffffffffffff
|
18
|
+
Content-Type: message/feedback-report
|
19
|
+
|
20
|
+
Feedback-Type: opt-out
|
21
|
+
User-Agent: ARF-Agent/1.0
|
22
|
+
Version: 0.1
|
23
|
+
Removal-Recipient: user@example.com
|
24
|
+
|
25
|
+
--bx1111_00.ffffffffffff
|
26
|
+
Content-Type: text/rfc822-header
|
27
|
+
|
28
|
+
From: <shironeko@example.net>
|
29
|
+
Received: from mx90.example.net (mx90.example.net [192.0.2.89])
|
30
|
+
by example.com with ESMTP id ffffffffffff00; Thu, 09 Apr 2006 23:34:45 +0900
|
31
|
+
To: <Undisclosed Recipients>
|
32
|
+
Subject: Nyaaan
|
33
|
+
MIME-Version: 1.0
|
34
|
+
Content-type: text/plain
|
35
|
+
Message-ID: 0000000000000000000000000@example.net
|
36
|
+
Date: Thu, 02 Sep 2006 23:34:45 +0900
|
37
|
+
|
38
|
+
Nyaaaan
|
39
|
+
--bx1111_00.ffffffffffff--
|
40
|
+
|
@@ -0,0 +1,76 @@
|
|
1
|
+
Delivered-To: arf@example.com
|
2
|
+
Received: by 10.182.89.225 with SMTP id br1csp740877obb;
|
3
|
+
Tue, 21 Apr 2015 09:22:16 -0700 (PDT)
|
4
|
+
X-Received: by 10.67.3.195 with SMTP id by3mr38900527pad.109.1429633335303;
|
5
|
+
Tue, 21 Apr 2015 09:22:15 -0700 (PDT)
|
6
|
+
Return-Path: <staff@hotmail.com>
|
7
|
+
Received: from BAY004-OMC3S6.hotmail.com (bay004-omc3s6.hotmail.com. [65.54.190.144])
|
8
|
+
by mx.example.com with ESMTPS id t2si3581725pdh.156.2015.04.21.09.22.14
|
9
|
+
for <arf@example.com>
|
10
|
+
(version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
|
11
|
+
Tue, 21 Apr 2015 09:22:15 -0700 (PDT)
|
12
|
+
Received: from BAY0-XMR-027.phx.gbl ([65.54.190.187]) by BAY004-OMC3S6.hotmail.com with Microsoft SMTPSVC(7.5.7601.22751);
|
13
|
+
Tue, 21 Apr 2015 09:22:14 -0700
|
14
|
+
Received: from mail pickup service by BAY0-XMR-027.phx.gbl with Microsoft SMTPSVC;
|
15
|
+
Tue, 21 Apr 2015 09:22:14 -0700
|
16
|
+
Date: Tue, 21 Apr 2015 09:22:13 -0700
|
17
|
+
From: staff@hotmail.com
|
18
|
+
Subject: complaint about message from 123.123.123.123
|
19
|
+
To: arf@example.com
|
20
|
+
MIME-Version: 1.0
|
21
|
+
Content-Type: multipart/mixed; boundary="B2E4395D-05AB-4EAF-8557-699F69427353"
|
22
|
+
Message-ID: <BAY0-XMR-027Y1mfKb000f565d4@BAY0-XMR-027.phx.gbl>
|
23
|
+
X-OriginalArrivalTime: 21 Apr 2015 16:22:14.0182 (UTC) FILETIME=[53AC8460:01D07C4F]
|
24
|
+
Return-Path: staff@hotmail.com
|
25
|
+
|
26
|
+
--B2E4395D-05AB-4EAF-8557-699F69427353
|
27
|
+
Content-Type: message/rfc822
|
28
|
+
Content-Disposition: inline
|
29
|
+
|
30
|
+
X-HmXmrOriginalRecipient: recipient@hotmail.com
|
31
|
+
X-Reporter-IP: 123.123.123.124
|
32
|
+
X-Message-Guid: ebfba2c7-e82b-11e4-be08-002264c15484
|
33
|
+
x-store-info:J++/JTCzmObr++wNraA4Pa4f5Xd6uensqBPWJv3GwGE7aUR5jJQTkPrgUUBlc7+CY+WY7UEuW6SMFsHHYZFIJgBtuL8CSIF+YE1T+EJsu/qunn9dJ/+DQN2V2BN4xF7gzV9vefMymd8=
|
34
|
+
Authentication-Results: hotmail.com; spf=pass (sender IP is 123.123.123.123; identity alignment result is pass and alignment mode is relaxed) smtp.mailfrom=sender@example.com; dkim=pass (identity alignment result is pass and alignment mode is relaxed) header.d=example.com; x-hmca=pass header.id=sender@example.com
|
35
|
+
X-SID-PRA: sender@example.com
|
36
|
+
X-AUTH-Result: PASS
|
37
|
+
X-SID-Result: PASS
|
38
|
+
X-Message-Status: n:n
|
39
|
+
X-Message-Delivery: Vj0xLjE7dXM9MDtsPTE7YT0xO0Q9MTtHRD0xO1NDTD0w
|
40
|
+
X-Message-Info: NhFq/7gR1vSNR7oR+vyPYQjkMnWBEu9uyBw1y9eFMXUE+Eyh/YdM5MkBsA9YADpYPRNX1QD8N61UwtG4ltHmCELHKCRVqF4G3Sz3ixJ1EjQx6m20O44Ef284ZptMLJGyU+Bw4W/7t5swJDxQ3qFJwjuq2Qc+7JUknVKshE25gNICB6zDUjfrdnByg4nnuDCkK/ZwF0H/IuMZpI0p3nLisKim1TM33aZ9
|
41
|
+
Received: from smtp.example.com ([123.123.123.123]) by SNT004-MC2F52.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008);
|
42
|
+
Tue, 21 Apr 2015 06:40:12 -0700
|
43
|
+
Date: Tue, 21 Apr 2015 15:40:10 +0200
|
44
|
+
To: recipient@hotmail.com
|
45
|
+
From: ACME Corp. <sender@example.com>
|
46
|
+
Reply-To: ACME Corp.
|
47
|
+
<sender@example.com>
|
48
|
+
Subject: Example message
|
49
|
+
MIME-Version: 1.0
|
50
|
+
Content-Transfer-Encoding: 8bit
|
51
|
+
Content-Type: text/html; charset="utf-8"
|
52
|
+
Message-ID: <d4cb0d6593464552a34f4429b3e7f92f@example.com>
|
53
|
+
Precedence: bulk
|
54
|
+
List-Unsubscribe: <mailto:unsubscribe@example.com?subject=Unsubscription%20request>
|
55
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=example.com;
|
56
|
+
i=@example.com; q=dns/txt; s=dkim1; t=1429623611; h=Date :
|
57
|
+
To : From : Reply-To : Subject : MIME-Version :
|
58
|
+
Content-Transfer-Encoding : Content-Type : Message-ID :
|
59
|
+
List-Unsubscribe : Date : From : Subject;
|
60
|
+
bh=obgp51Mvvcje/wo8zRJINx38SUn5XdM/wyyihBckJUI=;
|
61
|
+
b=X5Qc/ZimMAGP0NNDCIwwTaE35ru7CmsqR1xexARA9TnnKGDzFBiiuDSs6p+SAtcIkU2i0n
|
62
|
+
zSJlkGgRo0fEQ4dcc99hmR3XO46SIo8kNWfHZdsuXSt+Iqahb5HhOz9bBJ0rBiPdiLC0GG+H
|
63
|
+
Lhk287RLSSQDdvNBVDg28HBuQuiy4=
|
64
|
+
Return-Path: sender@example.com
|
65
|
+
X-OriginalArrivalTime: 21 Apr 2015 13:40:13.0168 (UTC) FILETIME=[B17F7F00:01D07C38]
|
66
|
+
|
67
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
68
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
69
|
+
<html xmlns="http://www.w3.org/1999/xhtml"
|
70
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
71
|
+
xmlns:o="urn:schemas-microsoft-com:office:office">
|
72
|
+
[...]
|
73
|
+
</html>
|
74
|
+
|
75
|
+
|
76
|
+
--B2E4395D-05AB-4EAF-8557-699F69427353--
|