sisimai 5.0.3-java → 5.2.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/codecovio.yml +3 -1
- data/.github/workflows/rake-test.yml +7 -3
- data/ChangeLog.md +136 -0
- data/Makefile +4 -2
- data/README-JA.md +32 -22
- data/README.md +31 -21
- data/lib/sisimai/arf.rb +124 -213
- data/lib/sisimai/fact/json.rb +2 -2
- data/lib/sisimai/fact/yaml.rb +2 -2
- data/lib/sisimai/fact.rb +208 -173
- data/lib/sisimai/lda.rb +98 -0
- data/lib/sisimai/lhost/activehunter.rb +5 -4
- data/lib/sisimai/lhost/amazonses.rb +189 -305
- data/lib/sisimai/lhost/apachejames.rb +52 -55
- data/lib/sisimai/lhost/biglobe.rb +5 -6
- data/lib/sisimai/lhost/courier.rb +14 -12
- data/lib/sisimai/lhost/domino.rb +29 -29
- data/lib/sisimai/lhost/dragonfly.rb +113 -0
- data/lib/sisimai/lhost/einsundeins.rb +7 -8
- data/lib/sisimai/lhost/exchange2003.rb +10 -11
- data/lib/sisimai/lhost/exchange2007.rb +115 -104
- data/lib/sisimai/lhost/exim.rb +236 -246
- data/lib/sisimai/lhost/ezweb.rb +47 -55
- data/lib/sisimai/lhost/fml.rb +6 -7
- data/lib/sisimai/lhost/gmail.rb +36 -32
- data/lib/sisimai/lhost/gmx.rb +8 -20
- data/lib/sisimai/lhost/googlegroups.rb +13 -12
- data/lib/sisimai/lhost/googleworkspace.rb +94 -0
- data/lib/sisimai/lhost/imailserver.rb +11 -19
- data/lib/sisimai/lhost/interscanmss.rb +6 -5
- data/lib/sisimai/lhost/kddi.rb +7 -8
- data/lib/sisimai/lhost/mailfoundry.rb +6 -9
- data/lib/sisimai/lhost/mailmarshalsmtp.rb +6 -6
- data/lib/sisimai/lhost/messagingserver.rb +19 -17
- data/lib/sisimai/lhost/mfilter.rb +8 -7
- data/lib/sisimai/lhost/notes.rb +6 -8
- data/lib/sisimai/lhost/opensmtpd.rb +11 -9
- data/lib/sisimai/lhost/postfix.rb +29 -31
- data/lib/sisimai/lhost/qmail.rb +136 -112
- data/lib/sisimai/lhost/sendmail.rb +23 -22
- data/lib/sisimai/lhost/v5sendmail.rb +93 -64
- data/lib/sisimai/lhost/verizon.rb +6 -6
- data/lib/sisimai/lhost/x1.rb +4 -4
- data/lib/sisimai/lhost/x2.rb +4 -5
- data/lib/sisimai/lhost/x3.rb +5 -5
- data/lib/sisimai/lhost/x6.rb +4 -4
- data/lib/sisimai/lhost/zoho.rb +6 -6
- data/lib/sisimai/lhost.rb +21 -24
- data/lib/sisimai/mail/maildir.rb +1 -1
- data/lib/sisimai/mail/stdin.rb +1 -1
- data/lib/sisimai/message.rb +100 -153
- data/lib/sisimai/order.rb +22 -77
- data/lib/sisimai/reason/authfailure.rb +1 -4
- data/lib/sisimai/reason/badreputation.rb +3 -3
- data/lib/sisimai/reason/blocked.rb +7 -10
- data/lib/sisimai/reason/contenterror.rb +7 -1
- data/lib/sisimai/reason/exceedlimit.rb +1 -4
- data/lib/sisimai/reason/failedstarttls.rb +42 -0
- data/lib/sisimai/reason/filtered.rb +5 -4
- data/lib/sisimai/reason/hasmoved.rb +1 -2
- data/lib/sisimai/reason/hostunknown.rb +3 -3
- data/lib/sisimai/reason/mailboxfull.rb +2 -4
- data/lib/sisimai/reason/mailererror.rb +1 -2
- data/lib/sisimai/reason/mesgtoobig.rb +2 -4
- data/lib/sisimai/reason/norelaying.rb +3 -3
- data/lib/sisimai/reason/notaccept.rb +2 -3
- data/lib/sisimai/reason/notcompliantrfc.rb +10 -4
- data/lib/sisimai/reason/rejected.rb +2 -1
- data/lib/sisimai/reason/requireptr.rb +2 -2
- data/lib/sisimai/reason/securityerror.rb +1 -3
- data/lib/sisimai/reason/spamdetected.rb +6 -8
- data/lib/sisimai/reason/speeding.rb +1 -2
- data/lib/sisimai/reason/suppressed.rb +36 -0
- data/lib/sisimai/reason/suspend.rb +1 -3
- data/lib/sisimai/reason/systemerror.rb +5 -0
- data/lib/sisimai/reason/toomanyconn.rb +1 -2
- data/lib/sisimai/reason/userunknown.rb +1 -1
- data/lib/sisimai/reason/virusdetected.rb +5 -6
- data/lib/sisimai/reason.rb +82 -78
- data/lib/sisimai/rfc1123.rb +152 -0
- data/lib/sisimai/rfc1894.rb +102 -62
- data/lib/sisimai/rfc2045.rb +2 -1
- data/lib/sisimai/rfc3464/thirdparty.rb +102 -0
- data/lib/sisimai/rfc3464.rb +224 -345
- data/lib/sisimai/rfc3834.rb +3 -3
- data/lib/sisimai/rfc5322.rb +7 -17
- data/lib/sisimai/rfc791.rb +69 -0
- data/lib/sisimai/rhost/aol.rb +36 -0
- data/lib/sisimai/rhost/apple.rb +95 -0
- data/lib/sisimai/rhost/cox.rb +84 -34
- data/lib/sisimai/rhost/facebook.rb +100 -0
- data/lib/sisimai/rhost/franceptt.rb +87 -83
- data/lib/sisimai/rhost/godaddy.rb +208 -45
- data/lib/sisimai/rhost/google.rb +22 -22
- data/lib/sisimai/rhost/gsuite.rb +42 -0
- data/lib/sisimai/rhost/iua.rb +5 -5
- data/lib/sisimai/rhost/kddi.rb +9 -7
- data/lib/sisimai/rhost/messagelabs.rb +37 -0
- data/lib/sisimai/rhost/microsoft.rb +60 -54
- data/lib/sisimai/rhost/mimecast.rb +44 -31
- data/lib/sisimai/rhost/nttdocomo.rb +5 -4
- data/lib/sisimai/rhost/outlook.rb +36 -0
- data/lib/sisimai/rhost/spectrum.rb +102 -41
- data/lib/sisimai/rhost/tencent.rb +48 -26
- data/lib/sisimai/rhost/yahooinc.rb +111 -0
- data/lib/sisimai/rhost.rb +65 -42
- data/lib/sisimai/smtp/command.rb +31 -21
- data/lib/sisimai/smtp/failure.rb +103 -0
- data/lib/sisimai/smtp/reply.rb +29 -24
- data/lib/sisimai/smtp/status.rb +36 -19
- data/lib/sisimai/smtp/transcript.rb +18 -18
- data/lib/sisimai/string.rb +0 -46
- data/lib/sisimai/version.rb +1 -1
- data/lib/sisimai.rb +0 -6
- data/set-of-emails/maildir/bsd/lhost-dragonfly-01.eml +36 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-02.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-03.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-04.eml +31 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-05.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-06.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-07.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-08.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-09.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-10.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-11.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-12.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-13.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-14.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-15.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-16.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-17.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-18.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-19.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-20.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-21.eml +33 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-22.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-23.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-24.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-25.eml +33 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-26.eml +33 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-27.eml +47 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-28.eml +47 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-29.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-30.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-10.eml +58 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-11.eml +58 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-12.eml +62 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-13.eml +62 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-14.eml +58 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-15.eml +63 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-16.eml +62 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-17.eml +63 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-30.eml +81 -81
- data/set-of-emails/maildir/bsd/lhost-qmail-11.eml +29 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-12.eml +29 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-13.eml +29 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-14.eml +34 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-15.eml +30 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-16.eml +31 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-17.eml +38 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-18.eml +31 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-19.eml +31 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-20.eml +46 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-21.eml +41 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-22.eml +42 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-23.eml +43 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-24.eml +43 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-25.eml +54 -0
- data/set-of-emails/maildir/bsd/{lhost-aol-03.eml → rhost-aol-03.eml} +1264 -1264
- data/set-of-emails/maildir/bsd/{lhost-aol-04.eml → rhost-aol-04.eml} +1260 -1260
- data/set-of-emails/maildir/bsd/{lhost-aol-05.eml → rhost-aol-05.eml} +105 -105
- data/set-of-emails/maildir/bsd/{lhost-aol-06.eml → rhost-aol-06.eml} +105 -105
- data/set-of-emails/maildir/bsd/rhost-apple-01.eml +79 -0
- data/set-of-emails/maildir/bsd/rhost-apple-02.eml +81 -0
- data/set-of-emails/maildir/bsd/rhost-apple-03.eml +75 -0
- data/set-of-emails/maildir/bsd/rhost-apple-04.eml +74 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-01.eml +189 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-02.eml +180 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-03.eml +251 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-04.eml +211 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-05.eml +226 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-06.eml +257 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-07.eml +289 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-08.eml +231 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-09.eml +231 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-10.eml +254 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-11.eml +228 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-12.eml +271 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-13.eml +261 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-14.eml +273 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-15.eml +229 -0
- data/set-of-emails/maildir/bsd/{lhost-messagelabs-01.eml → rhost-messagelabs-01.eml} +93 -93
- data/set-of-emails/maildir/bsd/rhost-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-09.eml +56 -0
- data/set-of-emails/maildir/bsd/rhost-yahooinc-01.eml +80 -0
- data/set-of-emails/maildir/bsd/rhost-yahooinc-02.eml +83 -0
- data/set-of-emails/maildir/bsd/rhost-yahooinc-03.eml +125 -0
- data/set-of-emails/maildir/tmp/arf-22.eml +49 -0
- data/set-of-emails/maildir/tmp/arf-23.eml +49 -0
- data/set-of-emails/maildir/tmp/arf-24.eml +50 -0
- data/set-of-emails/maildir/tmp/lhost-exim-07.eml +28 -0
- metadata +136 -56
- data/lib/sisimai/lhost/amavis.rb +0 -163
- data/lib/sisimai/lhost/amazonworkmail.rb +0 -127
- data/lib/sisimai/lhost/aol.rb +0 -125
- data/lib/sisimai/lhost/barracuda.rb +0 -92
- data/lib/sisimai/lhost/bigfoot.rb +0 -125
- data/lib/sisimai/lhost/facebook.rb +0 -188
- data/lib/sisimai/lhost/gsuite.rb +0 -194
- data/lib/sisimai/lhost/mailru.rb +0 -214
- data/lib/sisimai/lhost/mcafee.rb +0 -109
- data/lib/sisimai/lhost/messagelabs.rb +0 -119
- data/lib/sisimai/lhost/mxlogic.rb +0 -198
- data/lib/sisimai/lhost/office365.rb +0 -252
- data/lib/sisimai/lhost/outlook.rb +0 -129
- data/lib/sisimai/lhost/powermta.rb +0 -118
- data/lib/sisimai/lhost/receivingses.rb +0 -126
- data/lib/sisimai/lhost/sendgrid.rb +0 -150
- data/lib/sisimai/lhost/surfcontrol.rb +0 -105
- data/lib/sisimai/lhost/x4.rb +0 -269
- data/lib/sisimai/lhost/x5.rb +0 -112
- data/lib/sisimai/lhost/yahoo.rb +0 -102
- data/lib/sisimai/lhost/yandex.rb +0 -118
- data/lib/sisimai/mda.rb +0 -121
- data/lib/sisimai/smtp/error.rb +0 -119
- /data/set-of-emails/maildir/bsd/{lhost-googlegroups-15.eml → lhost-googleworkspace-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-x4-08.eml → lhost-x2-06.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-01.eml → rfc3464-51.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-03.eml → rfc3464-52.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-04.eml → rfc3464-53.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-05.eml → rfc3464-54.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-06.eml → rfc3464-55.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-07.eml → rfc3464-56.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-08.eml → rfc3464-57.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-09.eml → rfc3464-58.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-10.eml → rfc3464-59.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-11.eml → rfc3464-60.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-12.eml → rfc3464-61.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-13.eml → rfc3464-62.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-14.eml → rfc3464-63.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-15.eml → rfc3464-64.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-02.eml → rfc3464-65.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-aol-01.eml → rhost-aol-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-aol-02.eml → rhost-aol-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-facebook-03.eml → rhost-facebook-03.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-facebook-04.eml → rhost-facebook-04.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-messagelabs-02.eml → rhost-messagelabs-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-messagelabs-03.eml → rhost-messagelabs-03.eml} +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-37.eml +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-38.eml +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-39.eml +0 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
x-store-info:D6taffyBScEUZsL+ZXbbDoZx0yi5SZys1eYEToP0rSM/bCVLqYrYYCvSWjNvmELua9FHP+r2G/qC3lXTKg5U/5j7HMg9GTuqcV6lHbw5fgUocJxvj1i8PLlMqIGjqOxM80Nep68NNIw=
|
2
|
+
Authentication-Results: o.example.com; spf=none (sender IP is 65.55.116.95; identity alignment result is pass and alignment mode is relaxed) smtp.helo=BLU004-OMC3S20.o.example.com; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=mail.o.example.com; x-hmca=none header.id=postmaster@mail.o.example.com
|
3
|
+
X-SID-PRA: postmaster@mail.o.example.com
|
4
|
+
X-AUTH-Result: NONE
|
5
|
+
X-SID-Result: NONE
|
6
|
+
X-Message-Delivery: Vj0xLjE7RD0wO0dEPTA7U0NMPTk7bD0xO3VzPTE=
|
7
|
+
X-Message-Info: AuEzbeVr9u5fkDpn2vR5iCu5wb6HBeY4iruBjnutBzpStnUabbM/X3OHG1tkHI7a3kMiU15mwZkdItk0fkPUd26iJME4hbgAI/g6pso0Zyh7O0XVOq5g8hCf8Efy9J5lKkdwprP9EhP7RM0PyiUzXHkNE5r5dNzX
|
8
|
+
Received: from BLU004-OMC3S20.o.hotmail.com ([65.55.116.95]) by COL004-MC4F26.o.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
9
|
+
Fri, 21 Nov 2014 14:24:52 -0800
|
10
|
+
From: postmaster@mail.o.hotmail.com
|
11
|
+
To: shironeko@o.example.com
|
12
|
+
Date: Fri, 21 Nov 2014 14:24:36 -0800
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
15
|
+
boundary="9B095B5ADSN=_01D00055350EF16E0005FAABBLU004?OMC3S20.h"
|
16
|
+
X-DSNContext: 7ce717b1 - 1196 - 00000002 - 00000000
|
17
|
+
Message-ID: <Z4xo1MfFN0000cf93@BLU004-OMC3S20.o.example.com>
|
18
|
+
Subject: Delivery Status Notification (Failure)
|
19
|
+
Return-Path: <>
|
20
|
+
X-OriginalArrivalTime: 21 Nov 2014 22:24:52.0596 (UTC) FILETIME=[F852C340:01D005D9]
|
21
|
+
|
22
|
+
This is a MIME-formatted message.
|
23
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
24
|
+
|
25
|
+
--9B095B5ADSN=_01D00055350EF16E0005FAABBLU004?OMC3S20.h
|
26
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
27
|
+
|
28
|
+
This is an automatically generated Delivery Status Notification.
|
29
|
+
|
30
|
+
Delivery to the following recipients failed.
|
31
|
+
|
32
|
+
sabineko@example.co.jp
|
33
|
+
mikeneko@example.co.jp
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
--9B095B5ADSN=_01D00055350EF16E0005FAABBLU004?OMC3S20.h
|
39
|
+
Content-Type: message/delivery-status
|
40
|
+
|
41
|
+
Reporting-MTA: dns;BLU004-OMC3S20.o.hotmail.com
|
42
|
+
Received-From-MTA: dns;BLU436-SMTP69
|
43
|
+
Arrival-Date: Fri, 21 Nov 2014 14:24:35 -0800
|
44
|
+
|
45
|
+
Final-Recipient: rfc822;sabineko@example.co.jp
|
46
|
+
Action: failed
|
47
|
+
Status: 5.1.1
|
48
|
+
Diagnostic-Code: smtp;550 5.1.1 <sabineko@example.co.jp>... User Unknown
|
49
|
+
|
50
|
+
Final-Recipient: rfc822;mikeneko@example.co.jp
|
51
|
+
Action: failed
|
52
|
+
Status: 5.2.2
|
53
|
+
Diagnostic-Code: smtp;550 5.2.2 <mikeneko@example.co.jp>... Mailbox Full
|
54
|
+
|
55
|
+
--9B095B5ADSN=_01D00055350EF16E0005FAABBLU004?OMC3S20.h
|
56
|
+
Content-Type: message/rfc822
|
57
|
+
|
58
|
+
Received: from BLU436-SMTP69 ([65.55.116.74]) by BLU004-OMC3S20.o.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
59
|
+
Fri, 21 Nov 2014 14:24:35 -0800
|
60
|
+
X-TMN: [oH1G/6zXyVMAvS7zD2GWcRzEacA0QkU5]
|
61
|
+
X-Originating-Email: [shironeko@o.example.com]
|
62
|
+
Message-ID: <BLU436-SMTP695D62048105F50EF3A1B8BA770@phx.gbl>
|
63
|
+
Return-Path: shironeko@o.hotmail.com
|
64
|
+
From: "Shironeko, Nyanko" <shironeko@o.example.com>
|
65
|
+
Content-Type: text/plain; charset="us-ascii"
|
66
|
+
Content-Transfer-Encoding: 7bit
|
67
|
+
Date: Sat, 22 Nov 2014 07:24:29 +0900
|
68
|
+
To: sabineko@example.co.jp,
|
69
|
+
mikeneko@example.co.jp
|
70
|
+
MIME-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
|
71
|
+
X-Mailer: Apple Mail (2.1878.6)
|
72
|
+
X-OriginalArrivalTime: 21 Nov 2014 22:24:34.0505 (UTC) FILETIME=[ED8A4B90:01D005D9]
|
73
|
+
Subject: Nyaaaaaa
|
74
|
+
|
75
|
+
Nyaaaaaaa
|
76
|
+
|
77
|
+
|
78
|
+
--9B095B5ADSN=_01D00055350EF16E0005FAABBLU004?OMC3S20.h--
|
79
|
+
|
@@ -0,0 +1,75 @@
|
|
1
|
+
x-store-info:D6taffyBScEUZsL+ZXbbDoZx0yi5SZysd05Gjmb7XOhXk1SB5akXHDyLx8r517LQWsV2XeFJdQuWYy/4+FknpqPF1KoGQGBk+Tq/rJV+ldcdXQsCzNmu+g7B6AWQV1KIkVNze2jt5dw=
|
2
|
+
Authentication-Results: hotmail.com; spf=none (sender IP is 65.54.190.29; identity alignment result is pass and alignment mode is relaxed) smtp.helo=BAY004-OMC1S18.hotmail.com; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=mail.hotmail.com; x-hmca=none header.id=postmaster@mail.hotmail.com
|
3
|
+
X-SID-PRA: postmaster@mail.hotmail.com
|
4
|
+
X-AUTH-Result: NONE
|
5
|
+
X-SID-Result: NONE
|
6
|
+
X-Message-Delivery: Vj0xLjE7RD0wO0dEPTA7U0NMPTk7bD0xO3VzPTE=
|
7
|
+
X-Message-Info: AuEzbeVr9u5fkDpn2vR5iCu5wb6HBeY4iruBjnutBzpStnUabbM/X3OHG1tkHI7a3kMiU15mwZkdItk0fkPUd26iJME4hbgAI/g6pso0Zyh7O0XVOq5g8hCf8Efy9J5lKkdwprP9EhP7RM0PyiUzXHkNE5r5dNzX
|
8
|
+
Received: from BAY004-OMC1S18.hotmail.com ([65.54.190.29]) by COL004-MC3F10.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
9
|
+
Thu, 29 Jan 2015 09:31:28 -0800
|
10
|
+
From: postmaster@mail.hotmail.com
|
11
|
+
To: shironeko@outlook.example.com
|
12
|
+
Date: Thu, 29 Jan 2015 09:31:27 -0800
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
15
|
+
boundary="9B095B5ADSN=_01D03A62B009E3D80002F5D9BAY004?OMC1S18.h"
|
16
|
+
X-DSNContext: 7ce717b1 - 1413 - 00000004 - C00402D1
|
17
|
+
Message-ID: <ix4A2DreB00015f8e@BAY004-OMC1S18.hotmail.com>
|
18
|
+
Subject: Delivery Status Notification (Delay)
|
19
|
+
Return-Path: <>
|
20
|
+
X-OriginalArrivalTime: 29 Jan 2015 17:31:28.0363 (UTC) FILETIME=[69E2BBB0:01D03BE9]
|
21
|
+
|
22
|
+
This is a MIME-formatted message.
|
23
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
24
|
+
|
25
|
+
--9B095B5ADSN=_01D03A62B009E3D80002F5D9BAY004?OMC1S18.h
|
26
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
27
|
+
|
28
|
+
This is an automatically generated Delivery Status Notification.
|
29
|
+
|
30
|
+
THIS IS A WARNING MESSAGE ONLY.
|
31
|
+
|
32
|
+
YOU DO NOT NEED TO RESEND YOUR MESSAGE.
|
33
|
+
|
34
|
+
Delivery to the following recipients has been delayed.
|
35
|
+
|
36
|
+
kijitora@example.com
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
--9B095B5ADSN=_01D03A62B009E3D80002F5D9BAY004?OMC1S18.h
|
42
|
+
Content-Type: message/delivery-status
|
43
|
+
|
44
|
+
Reporting-MTA: dns;BAY004-OMC1S18.hotmail.com
|
45
|
+
Received-From-MTA: dns;BAY182-W41
|
46
|
+
Arrival-Date: Wed, 28 Jan 2015 21:29:14 -0800
|
47
|
+
|
48
|
+
Final-Recipient: rfc822;kijitora@example.com
|
49
|
+
Action: delayed
|
50
|
+
Status: 4.4.7
|
51
|
+
Will-Retry-Until: Fri, 30 Jan 2015 21:28:58 -0800
|
52
|
+
|
53
|
+
--9B095B5ADSN=_01D03A62B009E3D80002F5D9BAY004?OMC1S18.h
|
54
|
+
Content-Type: message/rfc822
|
55
|
+
|
56
|
+
Received: from BAY182-W41 ([65.54.190.61]) by BAY004-OMC1S18.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
57
|
+
Wed, 28 Jan 2015 21:29:14 -0800
|
58
|
+
X-TMN: [CfZrePAD+kDGS4nnafN9F0pJfUe9RyO1]
|
59
|
+
X-Originating-Email: [shironeko@outlook.example.com]
|
60
|
+
Message-ID: <BAY182-W4180385B0DABF89EB94B34A9300@phx.gbl>
|
61
|
+
Return-Path: shironeko@outlook.example.com
|
62
|
+
From: Neko <shironeko@outlook.example.com>
|
63
|
+
To: "kijitora@example.com" <kijitora@example.com>
|
64
|
+
Subject: Nyaaaan
|
65
|
+
Date: Thu, 29 Jan 2015 14:29:13 +0900
|
66
|
+
Importance: Normal
|
67
|
+
Content-Type: text/plain; charset="iso-2022-jp"
|
68
|
+
Content-Transfer-Encoding: base64
|
69
|
+
MIME-Version: 1.0
|
70
|
+
X-OriginalArrivalTime: 29 Jan 2015 05:29:14.0272 (UTC) FILETIME=[84C13200:01D03B84]
|
71
|
+
|
72
|
+
TnlhYWFuIAkJIAkgICAJCSAg
|
73
|
+
|
74
|
+
|
75
|
+
--9B095B5ADSN=_01D03A62B009E3D80002F5D9BAY004?OMC1S18.h--
|
@@ -0,0 +1,70 @@
|
|
1
|
+
x-store-info:D6taffyBScEUZsL+ZXbbDoZx0yi5SZysJlOAjqd2NAnWhtIVF75rguSDzkwBo9UqNxU8PYiOul3dsQSVuxy3WLhAzg39f+mnket4qHptoyw6gX94U6QhpFxCbC4t05tekN1gIEvZP68=
|
2
|
+
Authentication-Results: hotmail.com; spf=none (sender IP is 65.54.190.29; identity alignment result is pass and alignment mode is relaxed) smtp.helo=BAY004-OMC1S18.hotmail.com; dkim=none (identity alignment result is pass and alignment mode is relaxed) header.d=mail.hotmail.com; x-hmca=none header.id=postmaster@mail.hotmail.com
|
3
|
+
X-SID-PRA: postmaster@mail.hotmail.com
|
4
|
+
X-AUTH-Result: NONE
|
5
|
+
X-SID-Result: NONE
|
6
|
+
X-Message-Delivery: Vj0xLjE7RD0wO0dEPTA7U0NMPTk7bD0xO3VzPTE=
|
7
|
+
X-Message-Info: AuEzbeVr9u5fkDpn2vR5iCu5wb6HBeY4iruBjnutBzpStnUabbM/X3OHG1tkHI7a3kMiU15mwZkdItk0fkPUd26iJME4hbgAI/g6pso0Zyh7O0XVOq5g8hCf8Efy9J5lKkdwprP9EhP7RM0PyiUzXHkNE5r5dNzX
|
8
|
+
Received: from BAY004-OMC1S18.hotmail.com ([65.54.190.29]) by BAY004-MC4F56.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
9
|
+
Fri, 30 Jan 2015 21:29:41 -0800
|
10
|
+
From: postmaster@mail.hotmail.com
|
11
|
+
To: shironeko@outlook.example.com
|
12
|
+
Date: Fri, 30 Jan 2015 21:29:41 -0800
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
15
|
+
boundary="9B095B5ADSN=_01D03A62B009E3D8000522C4BAY004?OMC1S18.h"
|
16
|
+
X-DSNContext: 7ce717b1 - 1386 - 00000002 - C00402D1
|
17
|
+
Message-ID: <A1XvpFVjC000256d1@BAY004-OMC1S18.hotmail.com>
|
18
|
+
Subject: Delivery Status Notification (Failure)
|
19
|
+
Return-Path: <>
|
20
|
+
X-OriginalArrivalTime: 31 Jan 2015 05:29:41.0564 (UTC) FILETIME=[E9D91FC0:01D03D16]
|
21
|
+
|
22
|
+
This is a MIME-formatted message.
|
23
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
24
|
+
|
25
|
+
--9B095B5ADSN=_01D03A62B009E3D8000522C4BAY004?OMC1S18.h
|
26
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
27
|
+
|
28
|
+
This is an automatically generated Delivery Status Notification.
|
29
|
+
|
30
|
+
Unable to deliver message to the following recipients, due to being unable to connect successfully to the destination mail server.
|
31
|
+
|
32
|
+
kijitora@example.com
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
--9B095B5ADSN=_01D03A62B009E3D8000522C4BAY004?OMC1S18.h
|
38
|
+
Content-Type: message/delivery-status
|
39
|
+
|
40
|
+
Reporting-MTA: dns;BAY004-OMC1S18.hotmail.com
|
41
|
+
Received-From-MTA: dns;BAY182-W41
|
42
|
+
Arrival-Date: Wed, 28 Jan 2015 21:29:14 -0800
|
43
|
+
|
44
|
+
Final-Recipient: rfc822;kijitora@example.com
|
45
|
+
Action: failed
|
46
|
+
Status: 4.4.7
|
47
|
+
|
48
|
+
--9B095B5ADSN=_01D03A62B009E3D8000522C4BAY004?OMC1S18.h
|
49
|
+
Content-Type: message/rfc822
|
50
|
+
|
51
|
+
Received: from BAY182-W41 ([65.54.190.61]) by BAY004-OMC1S18.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
52
|
+
Wed, 28 Jan 2015 21:29:14 -0800
|
53
|
+
X-TMN: [CfZrePAD+kDGS4nnafN9F0pJfUe9RyO1]
|
54
|
+
X-Originating-Email: [shironeko@outlook.example.com]
|
55
|
+
Message-ID: <BAY182-W4180385B0DABF89EB94B34A9300@phx.gbl>
|
56
|
+
Return-Path: shironeko@outlook.example.com
|
57
|
+
From: Shironeko <shironeko@outlook.example.com>
|
58
|
+
To: "kijitora@example.com" <kijitora@example.com>
|
59
|
+
Subject: Nyaaaan
|
60
|
+
Date: Thu, 29 Jan 2015 14:29:13 +0900
|
61
|
+
Importance: Normal
|
62
|
+
Content-Type: text/plain; charset="iso-2022-jp"
|
63
|
+
Content-Transfer-Encoding: base64
|
64
|
+
MIME-Version: 1.0
|
65
|
+
X-OriginalArrivalTime: 29 Jan 2015 05:29:14.0272 (UTC) FILETIME=[84C13200:01D03B84]
|
66
|
+
|
67
|
+
TnlhYWFuIAkJIAkgICAJCSAg
|
68
|
+
|
69
|
+
|
70
|
+
--9B095B5ADSN=_01D03A62B009E3D8000522C4BAY004?OMC1S18.h--
|
@@ -0,0 +1,70 @@
|
|
1
|
+
Received: from CAT000-NEKO222.hotmail.com (cat000-neko222.hotmail.com [198.51.100.22])
|
2
|
+
(using TLSv1 with cipher AES256-SHA (256/256 bits))
|
3
|
+
(No client certificate requested)
|
4
|
+
by neko1.example.co.jp (Postfix) with ESMTPS id FFFFFFFF000
|
5
|
+
for <sironeko@example.co.jp>; Thu, 29 Apr 2015 23:34:45 +0000 (UTC)
|
6
|
+
Received: from CAT004-NEKO200.hotmail.com ([198.51.100.12]) by CAT004-NEKO222.hotmail.com
|
7
|
+
over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
8
|
+
Thu, 29 Apr 2015 23:34:45 -0800
|
9
|
+
From: postmaster@hotmail.com
|
10
|
+
To: sironeko@example.co.jp
|
11
|
+
Date: Thu, 29 Apr 2015 23:34:45 -0800
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22"
|
15
|
+
Message-ID: <0000000000000000f@BAY004-NEKO22.hotmail.com>
|
16
|
+
Subject: Delivery Status Notification (Failure)
|
17
|
+
X-OriginalArrivalTime: 29 Apr 2015 23:34:45.0000 (UTC) FILETIME=[00000000:00000000]
|
18
|
+
|
19
|
+
This is a MIME-formatted message.
|
20
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
21
|
+
|
22
|
+
--0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22
|
23
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
24
|
+
|
25
|
+
This is an automatically generated Delivery Status Notification.
|
26
|
+
|
27
|
+
Delivery to the following recipients failed.
|
28
|
+
|
29
|
+
kijitora@hotmail.example.com
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
--0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22
|
35
|
+
Content-Type: message/delivery-status
|
36
|
+
|
37
|
+
Reporting-MTA: dns;BAY004-NEKO22.hotmail.com
|
38
|
+
Received-From-MTA: dns;CAT004-NEKO22.hotmail.com
|
39
|
+
Arrival-Date: Thu, 29 Apr 2015 23:34:45 -0800
|
40
|
+
|
41
|
+
Final-Recipient: rfc822;kijitora@hotmail.example.com
|
42
|
+
Action: failed
|
43
|
+
Status: 5.5.0
|
44
|
+
Diagnostic-Code: smtp;550 Requested action not taken: mailbox unavailable (-0000000022:2222:-0000000022)
|
45
|
+
|
46
|
+
--0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22
|
47
|
+
Content-Type: message/rfc822
|
48
|
+
|
49
|
+
Received: from CAT004-NEKO0002.hotmail.com ([192.0.2.89]) by BAY004-NEKO22.hotmail.com
|
50
|
+
over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
51
|
+
Thu, 29 Apr 2015 23:34:45 -0800
|
52
|
+
Received: from CAT004-NYAAN22.hotmail.com ([192.0.2.66]) by CAT004-NEKO0R02.hotmail.com
|
53
|
+
over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
54
|
+
Thu, 29 Apr 2015 23:34:45 -0800
|
55
|
+
Received: from r091.example.org (neko.example.co.jp [203.0.113.31])
|
56
|
+
(Authenticated sender: sironeko-nyaan)
|
57
|
+
by r1.example.co.jp (Postfix) with ESMTPA id EEEEEEEE000
|
58
|
+
for <kijitora@hotmail.com>; Thu, 29 Apr 2015 23:34:45 +0000 (UTC)
|
59
|
+
From: "Neko, Nyaan" <sironeko@example.co.jp>
|
60
|
+
To: Kijitora <kijitora@hotmail.com>
|
61
|
+
Subject: Nyaan
|
62
|
+
Date: Thu, 29 Apr 2015 23:34:45 -0000
|
63
|
+
Message-ID: <000000222220000000000000fffffff@example.co.jp>
|
64
|
+
MIME-Version: 1.0
|
65
|
+
Content-Type: text/plain
|
66
|
+
Return-Path: sironeko@example.co.jp
|
67
|
+
|
68
|
+
Nyaan
|
69
|
+
|
70
|
+
--0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22--
|
@@ -0,0 +1,56 @@
|
|
1
|
+
Received: from blu2-omc4-s22.blu2.hotmail.com ([192.0.2.225]) by bay2-pamc4-f2.Bay2.hotmail.com with Microsoft SMTPSVC(6.0.3300.4400);
|
2
|
+
Thu, 29 Apr 2012 23:34:45 -0700
|
3
|
+
From: postmaster@mail.hotmail.com
|
4
|
+
To: sironeko@example.com
|
5
|
+
Date: Thu, 29 Apr 2012 23:34:45 -0700
|
6
|
+
MIME-Version: 1.0
|
7
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
8
|
+
boundary="0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats"
|
9
|
+
Message-ID: <4073f71390419fb17139ca00cf1100b1@blu2-omc4-s22.blu2.hotmail.com>
|
10
|
+
Subject: Delivery Status Notification (Failure)
|
11
|
+
Return-Path: <>
|
12
|
+
|
13
|
+
This is a MIME-formatted message.
|
14
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
15
|
+
|
16
|
+
--0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats
|
17
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
18
|
+
|
19
|
+
This is an automatically generated Delivery Status Notification.
|
20
|
+
|
21
|
+
Delivery to the following recipients failed.
|
22
|
+
|
23
|
+
kijitora@example.org
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
--0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats
|
29
|
+
Content-Type: message/delivery-status
|
30
|
+
|
31
|
+
Reporting-MTA: dns;blu2-omc4-s22.blu2.hotmail.com
|
32
|
+
Received-From-MTA: dns;BLU222-CR22
|
33
|
+
Arrival-Date: Thu, 29 Apr 2012 23:34:45 -0700
|
34
|
+
|
35
|
+
Final-Recipient: rfc822;kijitora@example.org
|
36
|
+
Action: failed
|
37
|
+
Status: 5.5.0
|
38
|
+
Diagnostic-Code: smtp;550 domain [example.com] mismatches client ip 192.0.2.225.
|
39
|
+
|
40
|
+
--0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats
|
41
|
+
Content-Type: message/rfc822
|
42
|
+
|
43
|
+
Received: from BLU222-CR22 ([203.0.113.2]) by blu2-omc4-s22.blu2.hotmail.com with Microsoft SMTPSVC(6.0.3300.4400);
|
44
|
+
Thu, 29 Apr 2012 23:34:45 -0700
|
45
|
+
Message-ID: <BLU222-CR22FC17FE7748FA3ABB087581BC0@phx.gbl>
|
46
|
+
Return-Path: sironeko@example.com
|
47
|
+
From: "Neko, Nyaan" <sironeko@example.com>
|
48
|
+
To: "Kijitorajanus" <kijitora@example.org>
|
49
|
+
Subject: Nyaan
|
50
|
+
Date: Thu, 29 Apr 2012 23:34:45 +0800
|
51
|
+
MIME-Version: 1.0
|
52
|
+
Content-Type: text/plain;
|
53
|
+
|
54
|
+
Nyaan
|
55
|
+
|
56
|
+
--0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats--
|
@@ -0,0 +1,80 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mbox.example.jp (mail.example.jp [192.0.2.48])
|
3
|
+
by mx.example.jp (V8/cf) with ESMTP id 0AD0mYaG000334
|
4
|
+
for <postmaster@example.jp>; Fri, 13 Nov 2020 09:48:34 +0900
|
5
|
+
Received: from mbox.example.jp (localhost [127.0.0.1])
|
6
|
+
by mbox.example.jp (Postfix) with ESMTP id 4CXKb61hkLz22xZY
|
7
|
+
for <postmaster@sisimai.example.com>; Fri, 13 Nov 2020 09:48:34 +0900 (JST)
|
8
|
+
Received: from smtp.example.jp (smtp.example.jp [203.0.113.113])
|
9
|
+
by mbox.example.jp (Postfix) with ESMTP id 4CXKb61FPyz1yM4D
|
10
|
+
for <postmaster@sisimai.example.com>; Fri, 13 Nov 2020 09:48:34 +0900 (JST)
|
11
|
+
Received: by smtp.example.jp (Postfix)
|
12
|
+
id 056C3D244EC; Fri, 13 Nov 2020 09:48:34 +0900 (JST)
|
13
|
+
Date: Fri, 13 Nov 2020 09:48:34 +0900 (JST)
|
14
|
+
From: MAILER-DAEMON@smtp.example.jp (Mail Delivery System)
|
15
|
+
Subject: Undelivered Mail Returned to Sender
|
16
|
+
To: postmaster@sisimai.example.com
|
17
|
+
Auto-Submitted: auto-replied
|
18
|
+
MIME-Version: 1.0
|
19
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
20
|
+
boundary="08513C0196A.1605228514/smtp.example.jp"
|
21
|
+
Message-Id: <20201113004834.056C3D244EC@smtp.example.jp>
|
22
|
+
X-Virus-Scanned: ClamAV using ClamSMTP
|
23
|
+
|
24
|
+
This is a MIME-encapsulated message.
|
25
|
+
|
26
|
+
--08513C0196A.1605228514/smtp.example.jp
|
27
|
+
Content-Description: Notification
|
28
|
+
Content-Type: text/plain; charset=us-ascii
|
29
|
+
|
30
|
+
This is the mail system at host smtp.example.jp.
|
31
|
+
|
32
|
+
I'm sorry to have to inform you that your message could not
|
33
|
+
be delivered to one or more recipients. It's attached below.
|
34
|
+
|
35
|
+
For further assistance, please send mail to postmaster.
|
36
|
+
|
37
|
+
If you do so, please include this problem report. You can
|
38
|
+
delete your own text from the attached returned message.
|
39
|
+
|
40
|
+
The mail system
|
41
|
+
|
42
|
+
<kijitora@aol.example.jp>: host mx-aol.mail.gm0.yahoodns.net[67.195.204.80] said:
|
43
|
+
554 5.7.9 Message not accepted for policy reasons. See
|
44
|
+
https://postmaster.verizonmedia.com/error-codes (in reply to end of DATA
|
45
|
+
command)
|
46
|
+
|
47
|
+
--08513C0196A.1605228514/smtp.example.jp
|
48
|
+
Content-Description: Delivery report
|
49
|
+
Content-Type: message/delivery-status
|
50
|
+
|
51
|
+
Reporting-MTA: dns; smtp.example.jp
|
52
|
+
X-Postfix-Queue-ID: 08513C0196A
|
53
|
+
X-Postfix-Sender: rfc822; postmaster@sisimai.example.com
|
54
|
+
Arrival-Date: Fri, 13 Nov 2020 09:47:59 +0900 (JST)
|
55
|
+
|
56
|
+
Final-Recipient: rfc822; kijitora@aol.example.jp
|
57
|
+
Original-Recipient: rfc822;kijitora@aol.example.jp
|
58
|
+
Action: failed
|
59
|
+
Status: 5.7.9
|
60
|
+
Remote-MTA: dns; mx-aol.mail.gm0.yahoodns.net
|
61
|
+
Diagnostic-Code: smtp; 554 5.7.9 Message not accepted for policy reasons. See
|
62
|
+
https://postmaster.verizonmedia.com/error-codes
|
63
|
+
|
64
|
+
--08513C0196A.1605228514/smtp.example.jp
|
65
|
+
Content-Description: Undelivered Message
|
66
|
+
Content-Type: message/rfc822
|
67
|
+
|
68
|
+
Return-Path: <postmaster@sisimai.example.com>
|
69
|
+
Received: from [127.0.0.1] (localhost [127.0.0.1])
|
70
|
+
by smtp.example.jp (Postfix) with ESMTP id 08513C0196A
|
71
|
+
for <kijitora@aol.example.jp>; Fri, 13 Nov 2020 09:47:59 +0900 (JST)
|
72
|
+
From: postmaster@libsisimai.org
|
73
|
+
Subject: TEST FOR DMARC #7
|
74
|
+
To: kijitora@aol.example.jp
|
75
|
+
Message-Id: <20201113004812.08513C0196A@smtp.example.jp>
|
76
|
+
Date: Fri, 13 Nov 2020 09:47:59 +0900 (JST)
|
77
|
+
|
78
|
+
Nyaan
|
79
|
+
|
80
|
+
--08513C0196A.1605228514/smtp.example.jp--
|
@@ -0,0 +1,83 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Delivered-To: deadbeef@mailmagazine.example.com
|
3
|
+
Received: from u1.em.example.jp
|
4
|
+
by mbox3.em.example.jp with LMTP id pRi6D904298QQXvAukD22R
|
5
|
+
for <deadbeef@mailmagazine.example.com>; Tue, 17 Nov 2020 23:34:45 +0900
|
6
|
+
Received: by u1.em.example.jp (Postfix)
|
7
|
+
id 9UKnCx1J50z3ZQ2; Tue, 17 Nov 2020 23:34:45 +0900 (JST)
|
8
|
+
Date: Tue, 17 Nov 2020 23:34:45 +0900 (JST)
|
9
|
+
From: MAILER-DAEMON@u1.em.example.jp (Mail Delivery System)
|
10
|
+
Subject: Undelivered Mail Returned to Sender
|
11
|
+
To: deadbeef@mailmagazine.example.com
|
12
|
+
Auto-Submitted: auto-replied
|
13
|
+
MIME-Version: 1.0
|
14
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
15
|
+
boundary="9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp"
|
16
|
+
Message-Id: <9UKnCx1J50z3ZQ2@u1.em.example.jp>
|
17
|
+
|
18
|
+
This is a MIME-encapsulated message.
|
19
|
+
|
20
|
+
--9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp
|
21
|
+
Content-Description: Notification
|
22
|
+
Content-Type: text/plain; charset=us-ascii
|
23
|
+
|
24
|
+
This is the mail system at host u1.em.example.jp.
|
25
|
+
|
26
|
+
I'm sorry to have to inform you that your message could not
|
27
|
+
be delivered to one or more recipients. It's attached below.
|
28
|
+
|
29
|
+
For further assistance, please send mail to postmaster.
|
30
|
+
|
31
|
+
If you do so, please include this problem report. You can
|
32
|
+
delete your own text from the attached returned message.
|
33
|
+
|
34
|
+
The mail system
|
35
|
+
|
36
|
+
<kijitora@y.example.ca>: host mta6.am0.yahoodns.net[67.195.204.72] said: 421
|
37
|
+
4.7.0 [TSS04] Messages from 192.0.2.192 temporarily deferred due to
|
38
|
+
unexpected volume or user complaints - 4.16.55.1; see
|
39
|
+
https://postmaster.verizonmedia.com/error-codes (in reply to MAIL FROM
|
40
|
+
command)
|
41
|
+
|
42
|
+
--9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp
|
43
|
+
Content-Description: Delivery report
|
44
|
+
Content-Type: message/delivery-status
|
45
|
+
|
46
|
+
Reporting-MTA: dns; u1.em.example.jp
|
47
|
+
X-Postfix-Queue-ID: 9UK8Prr4eZzSPQR
|
48
|
+
X-Postfix-Sender: rfc822; deadbeef@mailmagazine.example.com
|
49
|
+
Arrival-Date: Mon, 16 Nov 2020 23:34:45 +0900 (JST)
|
50
|
+
|
51
|
+
Final-Recipient: rfc822; kijitora@y.example.ca
|
52
|
+
Original-Recipient: rfc822;kijitora@y.example.ca
|
53
|
+
Action: failed
|
54
|
+
Status: 4.7.0
|
55
|
+
Remote-MTA: dns; mta6.am0.yahoodns.net
|
56
|
+
Diagnostic-Code: smtp; 421 4.7.0 [TSS04] Messages from 192.0.2.192
|
57
|
+
temporarily deferred due to unexpected volume or user complaints -
|
58
|
+
4.16.55.1; see https://postmaster.verizonmedia.com/error-codes
|
59
|
+
|
60
|
+
--9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp
|
61
|
+
Content-Description: Undelivered Message
|
62
|
+
Content-Type: message/rfc822
|
63
|
+
|
64
|
+
Return-Path: <deadbeef@mailmagazine.example.com>
|
65
|
+
Received: from u1.em.example.jp (localhost [127.0.0.1])
|
66
|
+
by u1.em.example.jp (Postfix) with ESMTP id 9UK8Prr4eZzSPQR
|
67
|
+
for <kijitora@y.example.ca>; Mon, 16 Nov 2020 23:34:45 +0900 (JST)
|
68
|
+
Received: from localhost (localhost [127.0.0.1])
|
69
|
+
by u1.em.example.jp (Postfix) with ESMTP id 9UK8P757b8z3ZQM
|
70
|
+
for <kijitora@y.example.ca>; Mon, 16 Nov 2020 23:34:45 +0900 (JST)
|
71
|
+
MIME-Version: 1.0
|
72
|
+
Content-Type: text/plain; charset=ISO-2022-JP
|
73
|
+
Content-Transfer-Encoding: quoted-printable
|
74
|
+
From: <neko@mailmagazine.example.com>
|
75
|
+
To: "Kijitora" <kijitora@y.example.ca>
|
76
|
+
Subject: Nyaan
|
77
|
+
Message-Id: <9UK8P757b8z3ZQM@u1.em.example.jp>
|
78
|
+
Date: Mon, 16 Nov 2020 23:34:45 +0900 (JST)
|
79
|
+
X-Virus-Scanned: ClamAV using ClamSMTP
|
80
|
+
|
81
|
+
Nyaan
|
82
|
+
|
83
|
+
--9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp--
|
@@ -0,0 +1,125 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mx2.example.jp (mx2.example.jp [192.0.2.222])
|
3
|
+
by aneyakoji.example.co.jp (V8/cf) with ESMTP id u8CJoVRB027731
|
4
|
+
for <postmaster@example.co.jp>; Tue, 13 Sep 2016 04:50:33 +0900
|
5
|
+
X-SenderID: Sendmail Sender-ID Filter v1.0.0 aneyakoji.example.co.jp u8CJoVRB027731
|
6
|
+
Authentication-Results: aneyakoji.example.co.jp; sender-id=none header.from=MAILER-DAEMON@mx2.example.jp
|
7
|
+
Received: from localhost (localhost)
|
8
|
+
by mx2.example.jp (V8/cf) id u8CJoQN4016081;
|
9
|
+
Tue, 13 Sep 2016 04:50:33 +0900
|
10
|
+
Date: Tue, 13 Sep 2016 04:50:33 +0900
|
11
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON@mx2.example.jp>
|
12
|
+
Message-Id: <201609121950.u8CJoQN4016081@mx2.example.jp>
|
13
|
+
To: postmaster@mx2.example.jp
|
14
|
+
MIME-Version: 1.0
|
15
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
16
|
+
boundary="u8CJoQN4016081.1473709833/mx2.example.jp"
|
17
|
+
Subject: Postmaster notify: see transcript for details
|
18
|
+
Auto-Submitted: auto-generated (postmaster-notification)
|
19
|
+
|
20
|
+
This is a MIME-encapsulated message
|
21
|
+
|
22
|
+
--u8CJoQN4016081.1473709833/mx2.example.jp
|
23
|
+
|
24
|
+
The original message was received at Tue, 13 Sep 2016 04:50:26 +0900
|
25
|
+
from localhost
|
26
|
+
with id u8CJoQN3016081
|
27
|
+
|
28
|
+
----- The following addresses had permanent fatal errors -----
|
29
|
+
<this-local-part-does-not-exist@yahoo.com>
|
30
|
+
(reason: 554 delivery error: dd This user doesn't have a yahoo.com account (this-local-part-does-not-exist@yahoo.com) [0] - mta1061.mail.ne1.yahoo.com)
|
31
|
+
|
32
|
+
----- Transcript of session follows -----
|
33
|
+
... while talking to mta6.am0.yahoodns.net.:
|
34
|
+
>>> DATA
|
35
|
+
<<< 554 delivery error: dd This user doesn't have a yahoo.com account (this-local-part-does-not-exist@yahoo.com) [0] - mta1061.mail.ne1.yahoo.com
|
36
|
+
554 5.0.0 Service unavailable
|
37
|
+
|
38
|
+
--u8CJoQN4016081.1473709833/mx2.example.jp
|
39
|
+
Content-Type: message/delivery-status
|
40
|
+
|
41
|
+
Reporting-MTA: dns; mx2.example.jp
|
42
|
+
Received-From-MTA: DNS; FF00FFFF.static.example.org
|
43
|
+
Arrival-Date: Tue, 13 Sep 2016 04:50:26 +0900
|
44
|
+
|
45
|
+
Final-Recipient: RFC822; this-local-part-does-not-exist@yahoo.com
|
46
|
+
Action: failed
|
47
|
+
Status: 5.0.0
|
48
|
+
Remote-MTA: DNS; mta6.am0.yahoodns.net
|
49
|
+
Diagnostic-Code: SMTP; 554 delivery error: dd This user doesn't have a yahoo.com account (this-local-part-does-not-exist@yahoo.com) [0] - mta1061.mail.ne1.yahoo.com
|
50
|
+
Last-Attempt-Date: Tue, 13 Sep 2016 04:50:30 +0900
|
51
|
+
|
52
|
+
--u8CJoQN4016081.1473709833/mx2.example.jp
|
53
|
+
Content-Type: message/rfc822
|
54
|
+
|
55
|
+
Return-Path: <MAILER-DAEMON>
|
56
|
+
Received: from localhost (localhost)
|
57
|
+
by mx2.example.jp (V8/cf) id u8CJoQN3016081;
|
58
|
+
Tue, 13 Sep 2016 04:50:26 +0900
|
59
|
+
Date: Tue, 13 Sep 2016 04:50:26 +0900
|
60
|
+
From: Mail Delivery Subsystem <MAILER-DAEMON>
|
61
|
+
Message-Id: <201609121950.u8CJoQN3016081@mx2.example.jp>
|
62
|
+
To: <this-local-part-does-not-exist@yahoo.com>
|
63
|
+
To: postmaster
|
64
|
+
MIME-Version: 1.0
|
65
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
66
|
+
boundary="u8CJoQN3016081.1473709826/mx2.example.jp"
|
67
|
+
Subject: Returned mail: see transcript for details
|
68
|
+
Auto-Submitted: auto-generated (failure)
|
69
|
+
|
70
|
+
This is a MIME-encapsulated message
|
71
|
+
|
72
|
+
--u8CJoQN3016081.1473709826/mx2.example.jp
|
73
|
+
|
74
|
+
...
|
75
|
+
|
76
|
+
--u8CJoQN3016081.1473709826/mx2.example.jp
|
77
|
+
Content-Type: message/delivery-status
|
78
|
+
|
79
|
+
Reporting-MTA: dns; mx2.example.jp
|
80
|
+
Received-From-MTA: DNS; FF00FFFF.static.example.org
|
81
|
+
Arrival-Date: Tue, 13 Sep 2016 04:50:25 +0900
|
82
|
+
|
83
|
+
Original-Recipient: rfc822;kijitora@neko.example.com
|
84
|
+
Final-Recipient: RFC822; kijitora@neko.example.com
|
85
|
+
Action: failed
|
86
|
+
Status: 5.3.5
|
87
|
+
Diagnostic-Code: SMTP; 553 5.3.5 system config error
|
88
|
+
Last-Attempt-Date: Tue, 13 Sep 2016 04:50:26 +0900
|
89
|
+
|
90
|
+
--u8CJoQN3016081.1473709826/mx2.example.jp
|
91
|
+
Content-Type: message/rfc822
|
92
|
+
|
93
|
+
Return-Path: <this-local-part-does-not-exist@yahoo.com>
|
94
|
+
Received: from mx.smtp.example.net (FF00FFFF.static.example.org [198.51.100.22])
|
95
|
+
by mx2.example.jp (V8/cf) with ESMTP id u8CJoPN3016079
|
96
|
+
for <kijitora@neko.example.com>; Tue, 13 Sep 2016 04:50:25 +0900
|
97
|
+
Message-Id: <201609121950.u8CJoPN3016079@mx2.example.jp>
|
98
|
+
Received: from User (unknown [203.0.113.2])
|
99
|
+
(Authenticated sender: server)
|
100
|
+
by mx.smtp.example.net (Postfix) with ESMTPA id 23EC336A7E;
|
101
|
+
Mon, 12 Sep 2016 13:35:38 +0200 (CEST)
|
102
|
+
Reply-To: <sironeko@example.ad.jp>
|
103
|
+
From: "NON-EXISTENT" <this-local-part-does-not-exist@yahoo.com>
|
104
|
+
Subject: Nyaan
|
105
|
+
Date: Mon, 12 Sep 2016 13:35:46 +0200
|
106
|
+
MIME-Version: 1.0
|
107
|
+
Content-Type: text/html;
|
108
|
+
charset="Windows-1251"
|
109
|
+
Content-Transfer-Encoding: 7bit
|
110
|
+
X-Priority: 3
|
111
|
+
X-MSMail-Priority: Normal
|
112
|
+
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
|
113
|
+
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
|
114
|
+
To: undisclosed-recipients:;
|
115
|
+
|
116
|
+
<HTML><HEAD><TITLE></TITLE>
|
117
|
+
</HEAD>
|
118
|
+
<BODY bgcolor=#FFFFFF leftmargin=5 topmargin=5 rightmargin=5 bottommargin=5>
|
119
|
+
</BODY></HTML>
|
120
|
+
|
121
|
+
--u8CJoQN3016081.1473709826/mx2.example.jp--
|
122
|
+
|
123
|
+
|
124
|
+
--u8CJoQN4016081.1473709833/mx2.example.jp--
|
125
|
+
|