sisimai 5.1.0 → 5.2.1
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/rake-test.yml +1 -1
- data/ChangeLog.md +112 -0
- data/Makefile +4 -2
- data/README-JA.md +28 -21
- data/README.md +30 -23
- data/lib/sisimai/arf.rb +121 -210
- data/lib/sisimai/fact.rb +208 -158
- data/lib/sisimai/lda.rb +98 -0
- data/lib/sisimai/lhost/activehunter.rb +1 -1
- data/lib/sisimai/lhost/amazonses.rb +185 -301
- data/lib/sisimai/lhost/apachejames.rb +48 -51
- data/lib/sisimai/lhost/biglobe.rb +1 -2
- data/lib/sisimai/lhost/courier.rb +10 -8
- data/lib/sisimai/lhost/domino.rb +25 -25
- data/lib/sisimai/lhost/dragonfly.rb +3 -4
- data/lib/sisimai/lhost/einsundeins.rb +3 -4
- data/lib/sisimai/lhost/exchange2003.rb +6 -8
- data/lib/sisimai/lhost/exchange2007.rb +111 -101
- data/lib/sisimai/lhost/exim.rb +232 -242
- data/lib/sisimai/lhost/ezweb.rb +43 -51
- data/lib/sisimai/lhost/fml.rb +2 -3
- data/lib/sisimai/lhost/gmail.rb +32 -28
- data/lib/sisimai/lhost/gmx.rb +4 -16
- data/lib/sisimai/lhost/googlegroups.rb +9 -8
- data/lib/sisimai/lhost/googleworkspace.rb +94 -0
- data/lib/sisimai/lhost/imailserver.rb +7 -16
- data/lib/sisimai/lhost/interscanmss.rb +1 -1
- data/lib/sisimai/lhost/kddi.rb +3 -4
- data/lib/sisimai/lhost/mailfoundry.rb +2 -5
- data/lib/sisimai/lhost/mailmarshalsmtp.rb +1 -2
- data/lib/sisimai/lhost/messagingserver.rb +14 -13
- data/lib/sisimai/lhost/mfilter.rb +4 -3
- data/lib/sisimai/lhost/notes.rb +2 -4
- data/lib/sisimai/lhost/opensmtpd.rb +2 -2
- data/lib/sisimai/lhost/postfix.rb +25 -27
- data/lib/sisimai/lhost/qmail.rb +130 -106
- data/lib/sisimai/lhost/sendmail.rb +19 -18
- data/lib/sisimai/lhost/v5sendmail.rb +88 -60
- data/lib/sisimai/lhost/verizon.rb +2 -2
- data/lib/sisimai/lhost/x1.rb +1 -1
- data/lib/sisimai/lhost/x2.rb +1 -2
- data/lib/sisimai/lhost/x3.rb +2 -2
- data/lib/sisimai/lhost/x6.rb +1 -1
- data/lib/sisimai/lhost/zoho.rb +2 -2
- data/lib/sisimai/lhost.rb +18 -21
- data/lib/sisimai/message.rb +93 -146
- data/lib/sisimai/order.rb +21 -77
- data/lib/sisimai/reason/authfailure.rb +1 -4
- data/lib/sisimai/reason/badreputation.rb +2 -2
- 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 +2 -3
- data/lib/sisimai/reason/notaccept.rb +2 -3
- data/lib/sisimai/reason/notcompliantrfc.rb +10 -4
- data/lib/sisimai/reason/rejected.rb +1 -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 +77 -73
- 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 +222 -343
- data/lib/sisimai/rfc3834.rb +1 -1
- 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 +5 -2
- data/lib/sisimai/rhost/cloudflare.rb +31 -0
- data/lib/sisimai/rhost/cox.rb +3 -2
- data/lib/sisimai/rhost/facebook.rb +100 -0
- data/lib/sisimai/rhost/franceptt.rb +3 -2
- data/lib/sisimai/rhost/godaddy.rb +3 -2
- data/lib/sisimai/rhost/google.rb +19 -17
- data/lib/sisimai/rhost/gsuite.rb +42 -0
- data/lib/sisimai/rhost/iua.rb +3 -3
- data/lib/sisimai/rhost/kddi.rb +3 -2
- data/lib/sisimai/rhost/messagelabs.rb +37 -0
- data/lib/sisimai/rhost/microsoft.rb +56 -49
- data/lib/sisimai/rhost/mimecast.rb +29 -27
- data/lib/sisimai/rhost/nttdocomo.rb +12 -5
- data/lib/sisimai/rhost/outlook.rb +36 -0
- data/lib/sisimai/rhost/spectrum.rb +3 -2
- data/lib/sisimai/rhost/tencent.rb +3 -2
- data/lib/sisimai/rhost/yahooinc.rb +4 -3
- data/lib/sisimai/rhost.rb +70 -39
- data/lib/sisimai/smtp/command.rb +31 -21
- data/lib/sisimai/smtp/failure.rb +103 -0
- data/lib/sisimai/smtp/reply.rb +29 -25
- data/lib/sisimai/smtp/status.rb +37 -20
- data/lib/sisimai/smtp/transcript.rb +15 -15
- data/lib/sisimai/string.rb +0 -46
- data/lib/sisimai/version.rb +1 -1
- data/set-of-emails/maildir/bsd/lhost-postfix-30.eml +81 -81
- 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-cloudflare-01.eml +75 -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/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 +75 -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 -120
- 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
@@ -1,105 +1,105 @@
|
|
1
|
-
Return-Path: <null>
|
2
|
-
Received: from imb-m02e.mx.aol.example.com (imb-m02.mx.aol.example.com [10.74.122.177])
|
3
|
-
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
|
4
|
-
(No client certificate requested)
|
5
|
-
by mtaiw-mbe01.mx.aol.example.com (Internet Inbound) with ESMTPS id 4C64E70000088
|
6
|
-
for <kijitora@aol.example.com>; Tue, 2 May 2017 01:16:02 -0400 (EDT)
|
7
|
-
Received: from omr-m013e.mx.aol.example.com (omr-m013.mx.aol.example.com [10.74.117.72])
|
8
|
-
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
|
9
|
-
(No client certificate requested)
|
10
|
-
by imb-m02e.mx.aol.example.com (AOL Mail Bouncer) with ESMTPS id 1DC2B38000A3
|
11
|
-
for <kijitora@aol.example.com>; Tue, 2 May 2017 01:16:02 -0400 (EDT)
|
12
|
-
Received: by omr-m013e.mx.aol.example.com (Outbound Mail Relay)
|
13
|
-
id 05BAF38000A2; Tue, 2 May 2017 01:16:02 -0400 (EDT)
|
14
|
-
Date: Tue, 2 May 2017 01:16:02 -0400 (EDT)
|
15
|
-
From: MAILER-DAEMON@AOL.com (Mail Delivery System)
|
16
|
-
Subject: Undelivered Mail Returned to Sender
|
17
|
-
To: kijitora@aol.example.com
|
18
|
-
Auto-Submitted: auto-replied
|
19
|
-
MIME-Version: 1.0
|
20
|
-
Content-Type: multipart/report; report-type=delivery-status;
|
21
|
-
boundary="F209A380008E.1493702162/omr-m013e.mx.aol.example.com"
|
22
|
-
Message-Id: <20170502051602.05BAF38000A2@omr-m013e.mx.aol.example.com>
|
23
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.example.com;
|
24
|
-
s=20150623; t=1493702162;
|
25
|
-
bh=EM4Muy1q7hmimNEN3/oGGsqaJFefya98SOuL0QHMp6s=;
|
26
|
-
h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
|
27
|
-
b=idE4OS3iKKKDHGJ2sQo0mYXhdtrZyRj3vr6xlpSl5EpaFD94QUFGrpuAGpNQ8FEW/
|
28
|
-
2xsmrncOgtUAAT/VCirh0oI1yI+OCdD3GS28jZWOMI69/k27oHt5smT1Es9Ea4YsFr
|
29
|
-
zOiwaA9T5lK4wLa/AfR03/Ta9eV9CoOMAtG9MOGw=
|
30
|
-
x-aol-global-disposition: G
|
31
|
-
x-aol-sid: 3039ac1afea7590816126e54
|
32
|
-
X-AOL-IP: 10.74.122.177
|
33
|
-
|
34
|
-
This is a MIME-encapsulated message.
|
35
|
-
|
36
|
-
--F209A380008E.1493702162/omr-m013e.mx.aol.example.com
|
37
|
-
Content-Description: Notification
|
38
|
-
Content-Type: text/plain; charset=us-ascii
|
39
|
-
|
40
|
-
This is the mail system at host omr-m013e.mx.aol.example.com.
|
41
|
-
|
42
|
-
I'm sorry to have to inform you that your message could not
|
43
|
-
be delivered to one or more recipients. It's attached below.
|
44
|
-
|
45
|
-
For further assistance, please send mail to postmaster.
|
46
|
-
|
47
|
-
If you do so, please include this problem report. You can
|
48
|
-
delete your own text from the attached returned message.
|
49
|
-
|
50
|
-
The mail system
|
51
|
-
|
52
|
-
<nyan@haineko.org>: Host or domain name not found. Name service error for
|
53
|
-
name=haineko.org type=A: Host not found
|
54
|
-
|
55
|
-
--F209A380008E.1493702162/omr-m013e.mx.aol.example.com
|
56
|
-
Content-Description: Delivery report
|
57
|
-
Content-Type: message/delivery-status
|
58
|
-
|
59
|
-
Reporting-MTA: dns; omr-m013e.mx.aol.
|
60
|
-
X-Outbound-Mail-Relay-Queue-ID: F209A380008E
|
61
|
-
X-Outbound-Mail-Relay-Sender: rfc822; kijitora@aol.example.com
|
62
|
-
Arrival-Date: Tue, 2 May 2017 01:16:01 -0400 (EDT)
|
63
|
-
|
64
|
-
Final-Recipient: rfc822; nyan@haineko.org
|
65
|
-
Original-Recipient: rfc822;nyan@haineko.org
|
66
|
-
Action: failed
|
67
|
-
Status: 5.4.4
|
68
|
-
Diagnostic-Code: X-Outbound-Mail-Relay; Host or domain name not found. Name
|
69
|
-
service error for name=haineko.org type=A: Host not found
|
70
|
-
|
71
|
-
--F209A380008E.1493702162/omr-m013e.mx.aol.example.com
|
72
|
-
Content-Description: Undelivered Message Headers
|
73
|
-
Content-Type: text/rfc822-headers
|
74
|
-
|
75
|
-
Return-Path: <kijitora@aol.example.com>
|
76
|
-
Received: from mtaomg-mae01.mx.aol.example.com (mtaomg-mae01.mx.aol.example.com [172.26.254.143])
|
77
|
-
by omr-m013e.mx.aol.example.com (Outbound Mail Relay) with ESMTP id F209A380008E
|
78
|
-
for <nyan@haineko.org>; Tue, 2 May 2017 01:16:01 -0400 (EDT)
|
79
|
-
Received: from core-aaa03a.mail.aol.example.com (core-aaa03.mail.aol.example.com [172.26.125.3])
|
80
|
-
by mtaomg-mae01.mx.aol.example.com (OMAG/Core Interface) with ESMTP id 9D1EF38000081
|
81
|
-
for <nyan@haineko.org>; Tue, 2 May 2017 01:16:01 -0400 (EDT)
|
82
|
-
Received: from 153.156.254.67 by webprd-m12.mail.aol.example.com (10.74.58.176) with HTTP (WebMailUI); Tue, 02 May 2017 01:16:01 -0400
|
83
|
-
Date: Tue, 2 May 2017 01:16:01 -0400
|
84
|
-
From: kijitora <kijitora@aol.example.com>
|
85
|
-
To: nyan@haineko.org
|
86
|
-
Message-Id: <15bc79632bf-5852-14fcf@webprd-m12.mail.aol.example.com>
|
87
|
-
Subject: Nyaan
|
88
|
-
MIME-Version: 1.0
|
89
|
-
Content-Type: text/plain; charset=utf-8
|
90
|
-
Content-Transfer-Encoding: 7bit
|
91
|
-
X-MB-Message-Source: WebUI
|
92
|
-
X-MB-Message-Type: User
|
93
|
-
X-Mailer: JAS STD
|
94
|
-
X-Originating-IP: [153.156.254.67]
|
95
|
-
x-aol-global-disposition: G
|
96
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.example.com;
|
97
|
-
s=20150623; t=1493702161;
|
98
|
-
bh=ZIzoLxkO6DTsSDI/+AFKxpWxCMR2TOMCWjxgPIUzUQY=;
|
99
|
-
h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
|
100
|
-
b=44E5GcdTTQ/360MhjyaY+XQsSG4/e6Py2qYkwNMJIDC8tgFkbOIA0AhcNtIiyBzun
|
101
|
-
+Cwm/gfZ73dubqoz+yR+kvYKHBB8uZ3UQDoMY2I2AvUgdPtmvxlrx/Fgzqp55lSlsN
|
102
|
-
V9nw25a8VHOjT7ejkmv+diBq905ZxgKUSP0ursYo=
|
103
|
-
x-aol-sid: 3039ac1afe8f5908161148be
|
104
|
-
|
105
|
-
--F209A380008E.1493702162/omr-m013e.mx.aol.example.com--
|
1
|
+
Return-Path: <null>
|
2
|
+
Received: from imb-m02e.mx.aol.example.com (imb-m02.mx.aol.example.com [10.74.122.177])
|
3
|
+
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
|
4
|
+
(No client certificate requested)
|
5
|
+
by mtaiw-mbe01.mx.aol.example.com (Internet Inbound) with ESMTPS id 4C64E70000088
|
6
|
+
for <kijitora@aol.example.com>; Tue, 2 May 2017 01:16:02 -0400 (EDT)
|
7
|
+
Received: from omr-m013e.mx.aol.example.com (omr-m013.mx.aol.example.com [10.74.117.72])
|
8
|
+
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
|
9
|
+
(No client certificate requested)
|
10
|
+
by imb-m02e.mx.aol.example.com (AOL Mail Bouncer) with ESMTPS id 1DC2B38000A3
|
11
|
+
for <kijitora@aol.example.com>; Tue, 2 May 2017 01:16:02 -0400 (EDT)
|
12
|
+
Received: by omr-m013e.mx.aol.example.com (Outbound Mail Relay)
|
13
|
+
id 05BAF38000A2; Tue, 2 May 2017 01:16:02 -0400 (EDT)
|
14
|
+
Date: Tue, 2 May 2017 01:16:02 -0400 (EDT)
|
15
|
+
From: MAILER-DAEMON@AOL.com (Mail Delivery System)
|
16
|
+
Subject: Undelivered Mail Returned to Sender
|
17
|
+
To: kijitora@aol.example.com
|
18
|
+
Auto-Submitted: auto-replied
|
19
|
+
MIME-Version: 1.0
|
20
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
21
|
+
boundary="F209A380008E.1493702162/omr-m013e.mx.aol.example.com"
|
22
|
+
Message-Id: <20170502051602.05BAF38000A2@omr-m013e.mx.aol.example.com>
|
23
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.example.com;
|
24
|
+
s=20150623; t=1493702162;
|
25
|
+
bh=EM4Muy1q7hmimNEN3/oGGsqaJFefya98SOuL0QHMp6s=;
|
26
|
+
h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
|
27
|
+
b=idE4OS3iKKKDHGJ2sQo0mYXhdtrZyRj3vr6xlpSl5EpaFD94QUFGrpuAGpNQ8FEW/
|
28
|
+
2xsmrncOgtUAAT/VCirh0oI1yI+OCdD3GS28jZWOMI69/k27oHt5smT1Es9Ea4YsFr
|
29
|
+
zOiwaA9T5lK4wLa/AfR03/Ta9eV9CoOMAtG9MOGw=
|
30
|
+
x-aol-global-disposition: G
|
31
|
+
x-aol-sid: 3039ac1afea7590816126e54
|
32
|
+
X-AOL-IP: 10.74.122.177
|
33
|
+
|
34
|
+
This is a MIME-encapsulated message.
|
35
|
+
|
36
|
+
--F209A380008E.1493702162/omr-m013e.mx.aol.example.com
|
37
|
+
Content-Description: Notification
|
38
|
+
Content-Type: text/plain; charset=us-ascii
|
39
|
+
|
40
|
+
This is the mail system at host omr-m013e.mx.aol.example.com.
|
41
|
+
|
42
|
+
I'm sorry to have to inform you that your message could not
|
43
|
+
be delivered to one or more recipients. It's attached below.
|
44
|
+
|
45
|
+
For further assistance, please send mail to postmaster.
|
46
|
+
|
47
|
+
If you do so, please include this problem report. You can
|
48
|
+
delete your own text from the attached returned message.
|
49
|
+
|
50
|
+
The mail system
|
51
|
+
|
52
|
+
<nyan@haineko.org>: Host or domain name not found. Name service error for
|
53
|
+
name=haineko.org type=A: Host not found
|
54
|
+
|
55
|
+
--F209A380008E.1493702162/omr-m013e.mx.aol.example.com
|
56
|
+
Content-Description: Delivery report
|
57
|
+
Content-Type: message/delivery-status
|
58
|
+
|
59
|
+
Reporting-MTA: dns; omr-m013e.mx.aol.com
|
60
|
+
X-Outbound-Mail-Relay-Queue-ID: F209A380008E
|
61
|
+
X-Outbound-Mail-Relay-Sender: rfc822; kijitora@aol.example.com
|
62
|
+
Arrival-Date: Tue, 2 May 2017 01:16:01 -0400 (EDT)
|
63
|
+
|
64
|
+
Final-Recipient: rfc822; nyan@haineko.org
|
65
|
+
Original-Recipient: rfc822;nyan@haineko.org
|
66
|
+
Action: failed
|
67
|
+
Status: 5.4.4
|
68
|
+
Diagnostic-Code: X-Outbound-Mail-Relay; Host or domain name not found. Name
|
69
|
+
service error for name=haineko.org type=A: Host not found
|
70
|
+
|
71
|
+
--F209A380008E.1493702162/omr-m013e.mx.aol.example.com
|
72
|
+
Content-Description: Undelivered Message Headers
|
73
|
+
Content-Type: text/rfc822-headers
|
74
|
+
|
75
|
+
Return-Path: <kijitora@aol.example.com>
|
76
|
+
Received: from mtaomg-mae01.mx.aol.example.com (mtaomg-mae01.mx.aol.example.com [172.26.254.143])
|
77
|
+
by omr-m013e.mx.aol.example.com (Outbound Mail Relay) with ESMTP id F209A380008E
|
78
|
+
for <nyan@haineko.org>; Tue, 2 May 2017 01:16:01 -0400 (EDT)
|
79
|
+
Received: from core-aaa03a.mail.aol.example.com (core-aaa03.mail.aol.example.com [172.26.125.3])
|
80
|
+
by mtaomg-mae01.mx.aol.example.com (OMAG/Core Interface) with ESMTP id 9D1EF38000081
|
81
|
+
for <nyan@haineko.org>; Tue, 2 May 2017 01:16:01 -0400 (EDT)
|
82
|
+
Received: from 153.156.254.67 by webprd-m12.mail.aol.example.com (10.74.58.176) with HTTP (WebMailUI); Tue, 02 May 2017 01:16:01 -0400
|
83
|
+
Date: Tue, 2 May 2017 01:16:01 -0400
|
84
|
+
From: kijitora <kijitora@aol.example.com>
|
85
|
+
To: nyan@haineko.org
|
86
|
+
Message-Id: <15bc79632bf-5852-14fcf@webprd-m12.mail.aol.example.com>
|
87
|
+
Subject: Nyaan
|
88
|
+
MIME-Version: 1.0
|
89
|
+
Content-Type: text/plain; charset=utf-8
|
90
|
+
Content-Transfer-Encoding: 7bit
|
91
|
+
X-MB-Message-Source: WebUI
|
92
|
+
X-MB-Message-Type: User
|
93
|
+
X-Mailer: JAS STD
|
94
|
+
X-Originating-IP: [153.156.254.67]
|
95
|
+
x-aol-global-disposition: G
|
96
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.example.com;
|
97
|
+
s=20150623; t=1493702161;
|
98
|
+
bh=ZIzoLxkO6DTsSDI/+AFKxpWxCMR2TOMCWjxgPIUzUQY=;
|
99
|
+
h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
|
100
|
+
b=44E5GcdTTQ/360MhjyaY+XQsSG4/e6Py2qYkwNMJIDC8tgFkbOIA0AhcNtIiyBzun
|
101
|
+
+Cwm/gfZ73dubqoz+yR+kvYKHBB8uZ3UQDoMY2I2AvUgdPtmvxlrx/Fgzqp55lSlsN
|
102
|
+
V9nw25a8VHOjT7ejkmv+diBq905ZxgKUSP0ursYo=
|
103
|
+
x-aol-sid: 3039ac1afe8f5908161148be
|
104
|
+
|
105
|
+
--F209A380008E.1493702162/omr-m013e.mx.aol.example.com--
|
@@ -1,105 +1,105 @@
|
|
1
|
-
Return-Path: <null>
|
2
|
-
Received: from imb-a04e.mx.aol.
|
3
|
-
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
|
4
|
-
(No client certificate requested)
|
5
|
-
by mtaiw-mcb08.mx.aol.
|
6
|
-
for <kijitora@aol.
|
7
|
-
Received: from omr-a015e.mx.aol.
|
8
|
-
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
|
9
|
-
(No client certificate requested)
|
10
|
-
by imb-a04e.mx.aol.
|
11
|
-
for <kijitora@aol.
|
12
|
-
Received: by omr-a015e.mx.aol.
|
13
|
-
id 94251380008C; Tue, 2 May 2017 01:16:59 -0400 (EDT)
|
14
|
-
Date: Tue, 2 May 2017 01:16:59 -0400 (EDT)
|
15
|
-
From: MAILER-DAEMON@AOL.com (Mail Delivery System)
|
16
|
-
Subject: Undelivered Mail Returned to Sender
|
17
|
-
To: kijitora@aol.
|
18
|
-
Auto-Submitted: auto-replied
|
19
|
-
MIME-Version: 1.0
|
20
|
-
Content-Type: multipart/report; report-type=delivery-status;
|
21
|
-
boundary="AFC863800087.1493702219/omr-a015e.mx.aol.
|
22
|
-
Message-Id: <20170502051659.94251380008C@omr-a015e.mx.aol.
|
23
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.
|
24
|
-
s=20150623; t=1493702219;
|
25
|
-
bh=iPCbHJ2jPQpy7gdsZmBye4j9C8lNj9z8i6fekcaNeSs=;
|
26
|
-
h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
|
27
|
-
b=nGg54EFB072k0xjb0IUv+cyynAeeER49V4O2xUQ6Epc4q4/Ijb/SrBNmkQ1BUhP8L
|
28
|
-
o9XWFk/xjNbZA1AL1ITG0kyn9mxw8b/0xsu9gUBkT4WIw5+skD192HGAdl/N7wGqjG
|
29
|
-
fQOQNt70ifmU/u+dqjqlvXgnagttNYGuAevD/FM8=
|
30
|
-
x-aol-global-disposition: G
|
31
|
-
x-aol-sid: 3039ac1a32a55908164b3e26
|
32
|
-
X-AOL-IP: 10.72.101.105
|
33
|
-
|
34
|
-
This is a MIME-encapsulated message.
|
35
|
-
|
36
|
-
--AFC863800087.1493702219/omr-a015e.mx.aol.
|
37
|
-
Content-Description: Notification
|
38
|
-
Content-Type: text/plain; charset=us-ascii
|
39
|
-
|
40
|
-
This is the mail system at host omr-a015e.mx.aol.
|
41
|
-
|
42
|
-
I'm sorry to have to inform you that your message could not
|
43
|
-
be delivered to one or more recipients. It's attached below.
|
44
|
-
|
45
|
-
For further assistance, please send mail to postmaster.
|
46
|
-
|
47
|
-
If you do so, please include this problem report. You can
|
48
|
-
delete your own text from the attached returned message.
|
49
|
-
|
50
|
-
The mail system
|
51
|
-
|
52
|
-
<neko@libsisimai.org>: Name service error for name=libsisimai.org type=MX:
|
53
|
-
Malformed or unexpected name server reply
|
54
|
-
|
55
|
-
--AFC863800087.1493702219/omr-a015e.mx.aol.
|
56
|
-
Content-Description: Delivery report
|
57
|
-
Content-Type: message/delivery-status
|
58
|
-
|
59
|
-
Reporting-MTA: dns; omr-a015e.mx.aol.
|
60
|
-
X-Outbound-Mail-Relay-Queue-ID: AFC863800087
|
61
|
-
X-Outbound-Mail-Relay-Sender: rfc822; kijitora@aol.
|
62
|
-
Arrival-Date: Tue, 2 May 2017 01:16:58 -0400 (EDT)
|
63
|
-
|
64
|
-
Final-Recipient: rfc822; neko@libsisimai.org
|
65
|
-
Original-Recipient: rfc822;neko@libsisimai.org
|
66
|
-
Action: failed
|
67
|
-
Status: 5.4.4
|
68
|
-
Diagnostic-Code: X-Outbound-Mail-Relay; Name service error for
|
69
|
-
name=libsisimai.org type=MX: Malformed or unexpected name server reply
|
70
|
-
|
71
|
-
--AFC863800087.1493702219/omr-a015e.mx.aol.
|
72
|
-
Content-Description: Undelivered Message Headers
|
73
|
-
Content-Type: text/rfc822-headers
|
74
|
-
|
75
|
-
Return-Path: <kijitora@aol.
|
76
|
-
Received: from mtaomg-mcb01.mx.aol.
|
77
|
-
by omr-a015e.mx.aol.
|
78
|
-
for <neko@libsisimai.org>; Tue, 2 May 2017 01:16:58 -0400 (EDT)
|
79
|
-
Received: from core-aaa03a.mail.aol.
|
80
|
-
by mtaomg-mcb01.mx.aol.
|
81
|
-
for <neko@libsisimai.org>; Tue, 2 May 2017 01:16:58 -0400 (EDT)
|
82
|
-
Received: from 153.156.254.67 by webprd-m12.mail.aol.
|
83
|
-
Date: Tue, 2 May 2017 01:16:58 -0400
|
84
|
-
From: kijitora <kijitora@aol.
|
85
|
-
To: neko@libsisimai.org
|
86
|
-
Message-Id: <15bc797120b-5852-14fd1@webprd-m12.mail.aol.
|
87
|
-
Subject: Nyaan
|
88
|
-
MIME-Version: 1.0
|
89
|
-
Content-Type: text/plain; charset=utf-8
|
90
|
-
Content-Transfer-Encoding: 7bit
|
91
|
-
X-MB-Message-Source: WebUI
|
92
|
-
X-MB-Message-Type: User
|
93
|
-
X-Mailer: JAS STD
|
94
|
-
X-Originating-IP: [153.156.254.67]
|
95
|
-
x-aol-global-disposition: G
|
96
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.
|
97
|
-
s=20150623; t=1493702218;
|
98
|
-
bh=ZIzoLxkO6DTsSDI/+AFKxpWxCMR2TOMCWjxgPIUzUQY=;
|
99
|
-
h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
|
100
|
-
b=aHrZB9S3AdWEXTXDeTptKwUjqWZnzEN6La3CE9itVcOLt5K1Naxas3k5Y4iGtxeeG
|
101
|
-
KwedPk81ZD42YU3BHg5pkh6tTOd8sQ4ciHN3d2I/OslKr3ML3QwokPBmWhB9205Xj2
|
102
|
-
t3qAf/ES13UiIPv7iqLRozzM2jE9XT4iY1bd6Sik=
|
103
|
-
x-aol-sid: 3039ac1a32af5908164a0262
|
104
|
-
|
105
|
-
--AFC863800087.1493702219/omr-a015e.mx.aol.
|
1
|
+
Return-Path: <null>
|
2
|
+
Received: from imb-a04e.mx.aol.com (imb-a04.mx.aol.com [10.72.101.105])
|
3
|
+
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
|
4
|
+
(No client certificate requested)
|
5
|
+
by mtaiw-mcb08.mx.aol.com (Internet Inbound) with ESMTPS id C062370000082
|
6
|
+
for <kijitora@aol.com>; Tue, 2 May 2017 01:16:59 -0400 (EDT)
|
7
|
+
Received: from omr-a015e.mx.aol.com (omr-a015.mx.aol.com [10.72.105.232])
|
8
|
+
(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
|
9
|
+
(No client certificate requested)
|
10
|
+
by imb-a04e.mx.aol.com (AOL Mail Bouncer) with ESMTPS id 9E9973800243
|
11
|
+
for <kijitora@aol.com>; Tue, 2 May 2017 01:16:59 -0400 (EDT)
|
12
|
+
Received: by omr-a015e.mx.aol.com (Outbound Mail Relay)
|
13
|
+
id 94251380008C; Tue, 2 May 2017 01:16:59 -0400 (EDT)
|
14
|
+
Date: Tue, 2 May 2017 01:16:59 -0400 (EDT)
|
15
|
+
From: MAILER-DAEMON@AOL.com (Mail Delivery System)
|
16
|
+
Subject: Undelivered Mail Returned to Sender
|
17
|
+
To: kijitora@aol.com
|
18
|
+
Auto-Submitted: auto-replied
|
19
|
+
MIME-Version: 1.0
|
20
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
21
|
+
boundary="AFC863800087.1493702219/omr-a015e.mx.aol.com"
|
22
|
+
Message-Id: <20170502051659.94251380008C@omr-a015e.mx.aol.com>
|
23
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.com;
|
24
|
+
s=20150623; t=1493702219;
|
25
|
+
bh=iPCbHJ2jPQpy7gdsZmBye4j9C8lNj9z8i6fekcaNeSs=;
|
26
|
+
h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
|
27
|
+
b=nGg54EFB072k0xjb0IUv+cyynAeeER49V4O2xUQ6Epc4q4/Ijb/SrBNmkQ1BUhP8L
|
28
|
+
o9XWFk/xjNbZA1AL1ITG0kyn9mxw8b/0xsu9gUBkT4WIw5+skD192HGAdl/N7wGqjG
|
29
|
+
fQOQNt70ifmU/u+dqjqlvXgnagttNYGuAevD/FM8=
|
30
|
+
x-aol-global-disposition: G
|
31
|
+
x-aol-sid: 3039ac1a32a55908164b3e26
|
32
|
+
X-AOL-IP: 10.72.101.105
|
33
|
+
|
34
|
+
This is a MIME-encapsulated message.
|
35
|
+
|
36
|
+
--AFC863800087.1493702219/omr-a015e.mx.aol.com
|
37
|
+
Content-Description: Notification
|
38
|
+
Content-Type: text/plain; charset=us-ascii
|
39
|
+
|
40
|
+
This is the mail system at host omr-a015e.mx.aol.com.
|
41
|
+
|
42
|
+
I'm sorry to have to inform you that your message could not
|
43
|
+
be delivered to one or more recipients. It's attached below.
|
44
|
+
|
45
|
+
For further assistance, please send mail to postmaster.
|
46
|
+
|
47
|
+
If you do so, please include this problem report. You can
|
48
|
+
delete your own text from the attached returned message.
|
49
|
+
|
50
|
+
The mail system
|
51
|
+
|
52
|
+
<neko@libsisimai.org>: Name service error for name=libsisimai.org type=MX:
|
53
|
+
Malformed or unexpected name server reply
|
54
|
+
|
55
|
+
--AFC863800087.1493702219/omr-a015e.mx.aol.com
|
56
|
+
Content-Description: Delivery report
|
57
|
+
Content-Type: message/delivery-status
|
58
|
+
|
59
|
+
Reporting-MTA: dns; omr-a015e.mx.aol.com
|
60
|
+
X-Outbound-Mail-Relay-Queue-ID: AFC863800087
|
61
|
+
X-Outbound-Mail-Relay-Sender: rfc822; kijitora@aol.com
|
62
|
+
Arrival-Date: Tue, 2 May 2017 01:16:58 -0400 (EDT)
|
63
|
+
|
64
|
+
Final-Recipient: rfc822; neko@libsisimai.org
|
65
|
+
Original-Recipient: rfc822;neko@libsisimai.org
|
66
|
+
Action: failed
|
67
|
+
Status: 5.4.4
|
68
|
+
Diagnostic-Code: X-Outbound-Mail-Relay; Name service error for
|
69
|
+
name=libsisimai.org type=MX: Malformed or unexpected name server reply
|
70
|
+
|
71
|
+
--AFC863800087.1493702219/omr-a015e.mx.aol.com
|
72
|
+
Content-Description: Undelivered Message Headers
|
73
|
+
Content-Type: text/rfc822-headers
|
74
|
+
|
75
|
+
Return-Path: <kijitora@aol.com>
|
76
|
+
Received: from mtaomg-mcb01.mx.aol.com (mtaomg-mcb01.mx.aol.com [172.26.50.175])
|
77
|
+
by omr-a015e.mx.aol.com (Outbound Mail Relay) with ESMTP id AFC863800087
|
78
|
+
for <neko@libsisimai.org>; Tue, 2 May 2017 01:16:58 -0400 (EDT)
|
79
|
+
Received: from core-aaa03a.mail.aol.com (core-aaa03.mail.aol.com [172.26.125.3])
|
80
|
+
by mtaomg-mcb01.mx.aol.com (OMAG/Core Interface) with ESMTP id 5CB5338000082
|
81
|
+
for <neko@libsisimai.org>; Tue, 2 May 2017 01:16:58 -0400 (EDT)
|
82
|
+
Received: from 153.156.254.67 by webprd-m12.mail.aol.com (10.74.58.176) with HTTP (WebMailUI); Tue, 02 May 2017 01:16:58 -0400
|
83
|
+
Date: Tue, 2 May 2017 01:16:58 -0400
|
84
|
+
From: kijitora <kijitora@aol.com>
|
85
|
+
To: neko@libsisimai.org
|
86
|
+
Message-Id: <15bc797120b-5852-14fd1@webprd-m12.mail.aol.com>
|
87
|
+
Subject: Nyaan
|
88
|
+
MIME-Version: 1.0
|
89
|
+
Content-Type: text/plain; charset=utf-8
|
90
|
+
Content-Transfer-Encoding: 7bit
|
91
|
+
X-MB-Message-Source: WebUI
|
92
|
+
X-MB-Message-Type: User
|
93
|
+
X-Mailer: JAS STD
|
94
|
+
X-Originating-IP: [153.156.254.67]
|
95
|
+
x-aol-global-disposition: G
|
96
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.com;
|
97
|
+
s=20150623; t=1493702218;
|
98
|
+
bh=ZIzoLxkO6DTsSDI/+AFKxpWxCMR2TOMCWjxgPIUzUQY=;
|
99
|
+
h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
|
100
|
+
b=aHrZB9S3AdWEXTXDeTptKwUjqWZnzEN6La3CE9itVcOLt5K1Naxas3k5Y4iGtxeeG
|
101
|
+
KwedPk81ZD42YU3BHg5pkh6tTOd8sQ4ciHN3d2I/OslKr3ML3QwokPBmWhB9205Xj2
|
102
|
+
t3qAf/ES13UiIPv7iqLRozzM2jE9XT4iY1bd6Sik=
|
103
|
+
x-aol-sid: 3039ac1a32af5908164a0262
|
104
|
+
|
105
|
+
--AFC863800087.1493702219/omr-a015e.mx.aol.com--
|
@@ -0,0 +1,75 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from relay.mx.example.jp (unknown [192.0.2.21])
|
3
|
+
by sisimai.mx.example.jp (Postfix) with ESMTPS id m6SrZSzVjhzC3KjV
|
4
|
+
for <neko@mx.example.jp>; Tue, 2 Jul 2024 23:34:45 +0900 (JST)
|
5
|
+
Date: Tue, 2 Jul 2024 23:34:45 +0900 (JST)
|
6
|
+
From: MAILER-DAEMON@relay.mx.example.jp (Mail Delivery System)
|
7
|
+
To: neko@mx.example.jp
|
8
|
+
Message-Id: <qQYlj9jhzdzY6WHr@relay.mx.example.jp>
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
Auto-Submitted: auto-replied
|
11
|
+
MIME-Version: 1.0
|
12
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
13
|
+
boundary="yKvJXwrDt6zP1H5n.1316187218/relay.mx.example.jp"
|
14
|
+
|
15
|
+
This is a MIME-encapsulated message.
|
16
|
+
|
17
|
+
--yKvJXwrDt6zP1H5n.1316187218/relay.mx.example.jp
|
18
|
+
Content-Description: Notification
|
19
|
+
Content-Type: text/plain; charset=us-ascii
|
20
|
+
|
21
|
+
This is the mail system at host relay.mx.example.jp.
|
22
|
+
|
23
|
+
I'm sorry to have to inform you that your message could not
|
24
|
+
be delivered to one or more recipients. It's attached below.
|
25
|
+
|
26
|
+
For further assistance, please send mail to postmaster.
|
27
|
+
|
28
|
+
If you do so, please include this problem report. You can
|
29
|
+
delete your own text from the attached returned message.
|
30
|
+
|
31
|
+
The mail system
|
32
|
+
|
33
|
+
<kijitora-neko@example.com>: host route3.mx.cloudflare.net[162.159.205.25]
|
34
|
+
said: 421 4.3.0 Upstream error, please check
|
35
|
+
https://developers.cloudflare.com/email-routing/postmaster for possible
|
36
|
+
reasons why. RsrUEMk60942 (in reply to end of DATA command)
|
37
|
+
|
38
|
+
--yKvJXwrDt6zP1H5n.1316187218/relay.mx.example.jp
|
39
|
+
Content-Description: Delivery report
|
40
|
+
Content-Type: message/delivery-status
|
41
|
+
|
42
|
+
Reporting-MTA: dns; relay.mx.example.jp
|
43
|
+
X-Postfix-Queue-ID: yKvJXwrDt6zP1H5n
|
44
|
+
X-Postfix-Sender: rfc822; neko@mx.example.jp
|
45
|
+
Arrival-Date: Tue, 2 Jul 2024 23:34:45 +0900 (JST)
|
46
|
+
|
47
|
+
Final-Recipient: rfc822; kijitora-neko@example.com
|
48
|
+
Original-Recipient: rfc822;kijitora-neko@example.com
|
49
|
+
Action: failed
|
50
|
+
Status: 4.3.0
|
51
|
+
Remote-MTA: dns; route3.mx.cloudflare.net
|
52
|
+
Diagnostic-Code: smtp; 421 4.3.0 Upstream error, please check
|
53
|
+
https://developers.cloudflare.com/email-routing/postmaster for possible
|
54
|
+
reasons why. RsrUEMk60942
|
55
|
+
|
56
|
+
--yKvJXwrDt6zP1H5n.1316187218/relay.mx.example.jp
|
57
|
+
Content-Description: Undelivered Message
|
58
|
+
Content-Type: message/rfc822
|
59
|
+
|
60
|
+
Return-Path: <neko@mx.example.jp>
|
61
|
+
Received: from local-mail-hub-1.example.jp (unknown [192.0.2.253])
|
62
|
+
by relay.mx.example.jp (Postfix) with ESMTP id yKvJXwrDt6zP1H5n
|
63
|
+
for <kijitora-neko@example.com>; Tue, 2 Jul 2024 23:34:45 +0900 (JST)
|
64
|
+
From: <neko@mx.example.jp>
|
65
|
+
Date: Tue, 02 Jul 2024 23:34:45 +0900
|
66
|
+
Message-Id: <QtF9aH-aSDIzG-WP@mx.example.jp>
|
67
|
+
To: <kijitora-neko@example.com>
|
68
|
+
Subject: Nyaaaaaan
|
69
|
+
MIME-Version: 1.0
|
70
|
+
Content-Type: text/plain; charset=us-ascii
|
71
|
+
|
72
|
+
Nyaan?
|
73
|
+
|
74
|
+
--yKvJXwrDt6zP1H5n.1316187218/relay.mx.example.jp--
|
75
|
+
|