sisimai 4.25.17 → 5.0.0
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/.travis.yml +3 -3
- data/ANALYTICAL-PRECISION +2 -2
- data/Benchmarks.mk +3 -3
- data/CONTRIBUTING +1 -1
- data/ChangeLog.md +406 -407
- data/Developers.mk +5 -6
- data/Gemfile +1 -1
- data/Makefile +12 -12
- data/README-JA.md +142 -94
- data/README.md +282 -150
- data/Rakefile +9 -3
- data/Repository.mk +2 -3
- data/lib/sisimai/address.rb +118 -74
- data/lib/sisimai/arf.rb +84 -82
- data/lib/sisimai/datetime.rb +5 -52
- data/lib/sisimai/{data → fact}/json.rb +7 -9
- data/lib/sisimai/fact/yaml.rb +31 -0
- data/lib/sisimai/fact.rb +468 -0
- data/lib/sisimai/lhost/activehunter.rb +12 -14
- data/lib/sisimai/lhost/amavis.rb +11 -14
- data/lib/sisimai/lhost/amazonses.rb +37 -41
- data/lib/sisimai/lhost/amazonworkmail.rb +15 -18
- data/lib/sisimai/lhost/aol.rb +12 -14
- data/lib/sisimai/lhost/apachejames.rb +19 -21
- data/lib/sisimai/lhost/barracuda.rb +10 -12
- data/lib/sisimai/lhost/bigfoot.rb +21 -21
- data/lib/sisimai/lhost/biglobe.rb +15 -16
- data/lib/sisimai/lhost/courier.rb +20 -20
- data/lib/sisimai/lhost/domino.rb +23 -19
- data/lib/sisimai/lhost/einsundeins.rb +20 -16
- data/lib/sisimai/lhost/exchange2003.rb +30 -29
- data/lib/sisimai/lhost/exchange2007.rb +70 -58
- data/lib/sisimai/lhost/exim.rb +175 -161
- data/lib/sisimai/lhost/ezweb.rb +31 -56
- data/lib/sisimai/lhost/facebook.rb +21 -33
- data/lib/sisimai/lhost/fml.rb +43 -48
- data/lib/sisimai/lhost/gmail.rb +29 -29
- data/lib/sisimai/lhost/gmx.rb +18 -17
- data/lib/sisimai/lhost/googlegroups.rb +9 -10
- data/lib/sisimai/lhost/gsuite.rb +21 -27
- data/lib/sisimai/lhost/imailserver.rb +25 -39
- data/lib/sisimai/lhost/interscanmss.rb +28 -31
- data/lib/sisimai/lhost/kddi.rb +22 -28
- data/lib/sisimai/lhost/mailfoundry.rb +11 -12
- data/lib/sisimai/lhost/mailmarshalsmtp.rb +25 -29
- data/lib/sisimai/lhost/mailru.rb +33 -27
- data/lib/sisimai/lhost/mcafee.rb +21 -31
- data/lib/sisimai/lhost/messagelabs.rb +17 -20
- data/lib/sisimai/lhost/messagingserver.rb +40 -37
- data/lib/sisimai/lhost/mfilter.rb +15 -16
- data/lib/sisimai/lhost/mxlogic.rb +24 -23
- data/lib/sisimai/lhost/notes.rb +17 -17
- data/lib/sisimai/lhost/office365.rb +63 -27
- data/lib/sisimai/lhost/opensmtpd.rb +12 -13
- data/lib/sisimai/lhost/outlook.rb +12 -15
- data/lib/sisimai/lhost/postfix.rb +179 -129
- data/lib/sisimai/lhost/powermta.rb +12 -14
- data/lib/sisimai/lhost/qmail.rb +44 -47
- data/lib/sisimai/lhost/receivingses.rb +15 -20
- data/lib/sisimai/lhost/sendgrid.rb +34 -32
- data/lib/sisimai/lhost/sendmail.rb +66 -53
- data/lib/sisimai/lhost/surfcontrol.rb +19 -19
- data/lib/sisimai/lhost/v5sendmail.rb +45 -39
- data/lib/sisimai/lhost/verizon.rb +35 -39
- data/lib/sisimai/lhost/x1.rb +18 -17
- data/lib/sisimai/lhost/x2.rb +17 -14
- data/lib/sisimai/lhost/x3.rb +19 -19
- data/lib/sisimai/lhost/x4.rb +72 -57
- data/lib/sisimai/lhost/x5.rb +17 -19
- data/lib/sisimai/lhost/x6.rb +41 -17
- data/lib/sisimai/lhost/yahoo.rb +17 -16
- data/lib/sisimai/lhost/yandex.rb +16 -20
- data/lib/sisimai/lhost/zoho.rb +16 -15
- data/lib/sisimai/lhost.rb +8 -10
- data/lib/sisimai/mail/maildir.rb +1 -3
- data/lib/sisimai/mail/mbox.rb +3 -4
- data/lib/sisimai/mail/memory.rb +0 -1
- data/lib/sisimai/mail/stdin.rb +1 -3
- data/lib/sisimai/mail.rb +3 -7
- data/lib/sisimai/mda.rb +28 -42
- data/lib/sisimai/message.rb +435 -325
- data/lib/sisimai/order.rb +5 -5
- data/lib/sisimai/reason/authfailure.rb +64 -0
- data/lib/sisimai/reason/badreputation.rb +53 -0
- data/lib/sisimai/reason/blocked.rb +94 -160
- data/lib/sisimai/reason/contenterror.rb +8 -9
- data/lib/sisimai/reason/delivered.rb +4 -6
- data/lib/sisimai/reason/exceedlimit.rb +10 -12
- data/lib/sisimai/reason/expired.rb +6 -8
- data/lib/sisimai/reason/feedback.rb +2 -3
- data/lib/sisimai/reason/filtered.rb +17 -19
- data/lib/sisimai/reason/hasmoved.rb +9 -10
- data/lib/sisimai/reason/hostunknown.rb +15 -15
- data/lib/sisimai/reason/mailboxfull.rb +10 -12
- data/lib/sisimai/reason/mailererror.rb +18 -20
- data/lib/sisimai/reason/mesgtoobig.rb +9 -11
- data/lib/sisimai/reason/networkerror.rb +5 -8
- data/lib/sisimai/reason/norelaying.rb +8 -11
- data/lib/sisimai/reason/notaccept.rb +13 -14
- data/lib/sisimai/reason/notcompliantrfc.rb +43 -0
- data/lib/sisimai/reason/onhold.rb +6 -9
- data/lib/sisimai/reason/policyviolation.rb +14 -12
- data/lib/sisimai/reason/rejected.rb +26 -24
- data/lib/sisimai/reason/requireptr.rb +69 -0
- data/lib/sisimai/reason/securityerror.rb +33 -36
- data/lib/sisimai/reason/spamdetected.rb +114 -147
- data/lib/sisimai/reason/speeding.rb +49 -0
- data/lib/sisimai/reason/suspend.rb +11 -11
- data/lib/sisimai/reason/syntaxerror.rb +11 -10
- data/lib/sisimai/reason/systemerror.rb +7 -9
- data/lib/sisimai/reason/systemfull.rb +7 -8
- data/lib/sisimai/reason/toomanyconn.rb +9 -11
- data/lib/sisimai/reason/undefined.rb +2 -3
- data/lib/sisimai/reason/userunknown.rb +129 -146
- data/lib/sisimai/reason/vacation.rb +3 -4
- data/lib/sisimai/reason/virusdetected.rb +10 -11
- data/lib/sisimai/reason.rb +59 -64
- data/lib/sisimai/rfc1894.rb +55 -28
- data/lib/sisimai/rfc2045.rb +373 -0
- data/lib/sisimai/rfc3464.rb +250 -308
- data/lib/sisimai/rfc3834.rb +42 -45
- data/lib/sisimai/rfc5322.rb +75 -100
- data/lib/sisimai/rfc5965.rb +31 -0
- data/lib/sisimai/rhost/cox.rb +5 -6
- data/lib/sisimai/rhost/franceptt.rb +6 -8
- data/lib/sisimai/rhost/godaddy.rb +12 -12
- data/lib/sisimai/rhost/{googleapps.rb → google.rb} +80 -72
- data/lib/sisimai/rhost/iua.rb +9 -10
- data/lib/sisimai/rhost/kddi.rb +6 -8
- data/lib/sisimai/rhost/{exchangeonline.rb → microsoft.rb} +115 -114
- data/lib/sisimai/rhost/mimecast.rb +42 -40
- data/lib/sisimai/rhost/nttdocomo.rb +13 -18
- data/lib/sisimai/rhost/spectrum.rb +10 -12
- data/lib/sisimai/rhost/{tencentqq.rb → tencent.rb} +7 -8
- data/lib/sisimai/rhost.rb +23 -31
- data/lib/sisimai/smtp/command.rb +59 -0
- data/lib/sisimai/smtp/error.rb +4 -7
- data/lib/sisimai/smtp/reply.rb +161 -74
- data/lib/sisimai/smtp/status.rb +504 -393
- data/lib/sisimai/smtp/transcript.rb +124 -0
- data/lib/sisimai/smtp.rb +0 -1
- data/lib/sisimai/string.rb +74 -5
- data/lib/sisimai/time.rb +1 -2
- data/lib/sisimai/version.rb +1 -1
- data/lib/sisimai.rb +35 -21
- data/set-of-emails/maildir/bsd/lhost-domino-02.eml +6 -3
- data/set-of-emails/maildir/bsd/lhost-googlegroups-15.eml +174 -0
- data/set-of-emails/maildir/bsd/lhost-gsuite-15.eml +229 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-75.eml +51 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-76.eml +101 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-77.eml +74 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-78.eml +91 -0
- data/set-of-emails/maildir/bsd/lhost-receivingses-08.eml +88 -0
- data/set-of-emails/maildir/bsd/rfc3464-43.eml +88 -0
- data/set-of-emails/maildir/bsd/rhost-google-03.eml +101 -0
- data/set-of-emails/maildir/bsd/rhost-google-04.eml +102 -0
- data/set-of-emails/maildir/bsd/rhost-google-05.eml +82 -0
- data/set-of-emails/maildir/bsd/rhost-google-06.eml +102 -0
- data/set-of-emails/maildir/bsd/rhost-google-07.eml +69 -0
- data/set-of-emails/maildir/bsd/rhost-google-08.eml +99 -0
- data/sisimai-java.gemspec +1 -1
- data/sisimai.gemspec +1 -1
- metadata +41 -21
- data/.rspec +0 -2
- data/lib/sisimai/data/yaml.rb +0 -33
- data/lib/sisimai/data.rb +0 -411
- data/lib/sisimai/mime.rb +0 -456
- data/set-of-emails/maildir/mac/reported-from-nick4tech-san-01.eml +0 -6
- /data/set-of-emails/maildir/bsd/{rfc3464-41.eml → rfc3834-05.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{rhost-googleapps-01.eml → rhost-google-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{rhost-googleapps-02.eml → rhost-google-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{rhost-exchangeonline-01.eml → rhost-microsoft-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{rhost-exchangeonline-02.eml → rhost-microsoft-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{rhost-exchangeonline-03.eml → rhost-microsoft-03.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{rhost-tencentqq-01.eml → rhost-tencent-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{rhost-tencentqq-02.eml → rhost-tencent-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{rhost-tencentqq-03.eml → rhost-tencent-03.eml} +0 -0
@@ -0,0 +1,229 @@
|
|
1
|
+
Delivered-To: azumakuniyuki@google.example.com
|
2
|
+
Received: by 2002:ab4:a141:0:0:0:0:0 with SMTP id dn1csp595527ecb;
|
3
|
+
Mon, 20 Dec 2021 07:25:59 -0800 (PST)
|
4
|
+
X-Received: by 2002:a17:906:2659:: with SMTP id i25mr13803129ejc.531.1640013959470;
|
5
|
+
Mon, 20 Dec 2021 07:25:59 -0800 (PST)
|
6
|
+
ARC-Seal: i=1; a=rsa-sha256; t=1640013959; cv=none;
|
7
|
+
d=google.com; s=arc-20160816;
|
8
|
+
b=Wji6EAfPJcH3wpUJPs/rTTuyT3HMrqsTjphB7DDXM4W01YiQneT34naDWDlZihlQKN
|
9
|
+
iduod65NZKl1xoG5csO8QJjTa/++yWiUJwYQhQt2f29hgYR1sbzbS6g+HLdp0IprAJx5
|
10
|
+
JusA05d/Jc9rfS17AUPQbPO6PVeVmy65IKo3fKPzi9axAXtCvJdlKAlU7LtV9szOZ3VQ
|
11
|
+
ZHoI91R2mgvZWMmNqDDvhEoAfOtqy9SP0r22TtVYs2hlfFVt+SfyzqOFKjiWGEMhTLaF
|
12
|
+
RXKNr3FXEy1abBpk1pRDgf3XbkwuF2HGF6eIYmewmr+eltUNO0nC5EP7yJ/4uDRwXmSK
|
13
|
+
epRA==
|
14
|
+
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;
|
15
|
+
h=in-reply-to:references:subject:from:date:message-id:auto-submitted
|
16
|
+
:to:dkim-signature;
|
17
|
+
bh=OcovfQBGLLUFM2PvrR/3pJKpGnUbu2CAllf7JYi1LZ4=;
|
18
|
+
b=Sg031zzO4qWVmQ1xYO9TcKeAEeuZ/C5gaRqP6IafJ1fqf+sz/p1aX6t8lBW9Q85DqS
|
19
|
+
AFDUJR5sfYfLTAZmyy/fk+KTrzKHtmLsujgcBBdJyu1NWB3M1/bRaL0bedAuhF9YH2Ty
|
20
|
+
048m7rJt7C5GB9zWP56jsDwHR+Zq97+/gw1PqLT+8+yI63z3thPo6iXWgHWDdmLQb3UD
|
21
|
+
wseDovMKyWtdjGk4/PSmsABetnt32x7h3/vREiGrKTew0+ux8ZB0+BCHQwHi4spO0G/5
|
22
|
+
Lhm/Da1nxgeR2t0XiYHgr7qWuw+aES0PMhcj8TpGVs6iv12iTWv5OEhbyBA+7heCxD4E
|
23
|
+
igUg==
|
24
|
+
ARC-Authentication-Results: i=1; mx.google.com;
|
25
|
+
dkim=pass header.i=@googlemail.com header.s=20210112 header.b=SePnJVk5;
|
26
|
+
spf=pass (google.com: best guess record for domain of postmaster@mail-sor-f69.google.com designates 209.85.220.69 as permitted sender) smtp.helo=mail-sor-f69.google.com;
|
27
|
+
dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=googlemail.com
|
28
|
+
Return-Path: <>
|
29
|
+
Received: from mail-sor-f69.google.com (mail-sor-f69.google.com. [209.85.220.69])
|
30
|
+
by mx.google.com with SMTPS id g12sor5749570edb.28.2021.12.20.07.25.59
|
31
|
+
for <azumakuniyuki@google.example.com>
|
32
|
+
(Google Transport Security);
|
33
|
+
Mon, 20 Dec 2021 07:25:59 -0800 (PST)
|
34
|
+
Received-SPF: pass (google.com: best guess record for domain of postmaster@mail-sor-f69.google.com designates 209.85.220.69 as permitted sender) client-ip=209.85.220.69;
|
35
|
+
Authentication-Results: mx.google.com;
|
36
|
+
dkim=pass header.i=@googlemail.com header.s=20210112 header.b=SePnJVk5;
|
37
|
+
spf=pass (google.com: best guess record for domain of postmaster@mail-sor-f69.google.com designates 209.85.220.69 as permitted sender) smtp.helo=mail-sor-f69.google.com;
|
38
|
+
dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=googlemail.com
|
39
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
40
|
+
d=googlemail.com; s=20210112;
|
41
|
+
h=to:auto-submitted:message-id:date:from:subject:references
|
42
|
+
:in-reply-to;
|
43
|
+
bh=OcovfQBGLLUFM2PvrR/3pJKpGnUbu2CAllf7JYi1LZ4=;
|
44
|
+
b=SePnJVk5kdWmQFUs7ffbGJ7Qn+MNNbyBhoiYYa1LFaHUE2sRyxE5Bhjt8ztFwwH7Dq
|
45
|
+
EoxO3LZNhyIPiT9IAWuhWSsr2bZhSBpl/9OL43oy7c3bU8roUx0vO412reF1WWDTnS+z
|
46
|
+
lkrCVGlw+mHukxvNd5907BMHlZcAzZZ1FnMLfzsCbbSvw6/4DDnkjC6B1Lrvxuo4JxMM
|
47
|
+
L0ubG1SEY3gySpmTfhWZYFSG3lcVAylBVkVtKKZ4D9NKXlkLql6Icu/fyZslfsJIWp1Z
|
48
|
+
Gs/9fcK3zWBz0HM8xurmJcIuVvPBQmEFd2rAyhkbl6wo4DiaAwQd5QQJPkD/mrD1eGUm
|
49
|
+
sAPg==
|
50
|
+
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
51
|
+
d=1e100.net; s=20210112;
|
52
|
+
h=x-gm-message-state:to:auto-submitted:message-id:date:from:subject
|
53
|
+
:references:in-reply-to;
|
54
|
+
bh=OcovfQBGLLUFM2PvrR/3pJKpGnUbu2CAllf7JYi1LZ4=;
|
55
|
+
b=cHnNSimlGL1IB6+BTMyIgQ6ylgPAsZrUWMz7zhontXxCnY/T4JCeOwzZQIS1Nj1aci
|
56
|
+
P38cCxKeUGNqkJWxB+k1v1TBjzJEE1W4DOyvAtY/pPNIjMoYGBU6Ssg9fGDpaAHTd7mE
|
57
|
+
jxpxzLL2GFMNrIXrvvPDZ9sBeSHty+7ZHxYrEt7I0hk/03SiBjmjXFANbjH3BZrmSxv+
|
58
|
+
NfIj9OiCqyy0Rc2+dMxsHGjM3SVphEDZOay0E5ifdPpYEB8veztWTxY9/4vIGGi2gmwd
|
59
|
+
ASUzNIvDgF5EeZtnZDetZT1SXeVTsPcRwmyYO6M9MRnn7Did3R5TUU7kk478RlKQ8JMg
|
60
|
+
tkjA==
|
61
|
+
X-Gm-Message-State: AOAM5308ESho9hKvAkqjJ51j/6gK2EqnrvbXCQVrBE/1BAUkwbCZ1DCW
|
62
|
+
n8KRPH8ooPPKHw+Mj+DM/+nKQuybFYlSyUACmMznmw==
|
63
|
+
X-Google-Smtp-Source: ABdhPJzRlxQfgLIdbgVgfI7grV/rwfv8N/07MPPE22H9o23Q8LqLKr+rZVjM+E1s4WfvuM9RVWi7XA96SvdQjkYQQDOHBJeyDeT735U=
|
64
|
+
X-Received: by 2002:aa7:cb81:: with SMTP id r1mr16234441edt.352.1640013959224;
|
65
|
+
Mon, 20 Dec 2021 07:25:59 -0800 (PST)
|
66
|
+
Content-Type: multipart/report; boundary="0000000000007752ac05d39581ae"; report-type=delivery-status
|
67
|
+
To: azumakuniyuki@google.example.com
|
68
|
+
Received: by 2002:aa7:cb81:: with SMTP id r1mr11532281edt.352; Mon, 20 Dec
|
69
|
+
2021 07:25:59 -0800 (PST)
|
70
|
+
Return-Path: <>
|
71
|
+
Auto-Submitted: auto-replied
|
72
|
+
Message-ID: <61c0a087.1c69fb81.a19ff.1f8f.GMR@mx.google.com>
|
73
|
+
Date: Mon, 20 Dec 2021 07:25:59 -0800 (PST)
|
74
|
+
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
|
75
|
+
Subject: Delivery Status Notification (Failure)
|
76
|
+
References: <CAByYQsGge+O7Z6G5c06TEcL1SN7zSeON58xdcyueZqK1LWMjxw@mail.gmail.com>
|
77
|
+
In-Reply-To: <CAByYQsGge+O7Z6G5c06TEcL1SN7zSeON58xdcyueZqK1LWMjxw@mail.gmail.com>
|
78
|
+
X-Failed-Recipients: maildebug@example.jpn
|
79
|
+
|
80
|
+
--0000000000007752ac05d39581ae
|
81
|
+
Content-Type: multipart/related; boundary="00000000000077589c05d39581b4"
|
82
|
+
|
83
|
+
--00000000000077589c05d39581b4
|
84
|
+
Content-Type: multipart/alternative; boundary="0000000000007758a105d39581b5"
|
85
|
+
|
86
|
+
--0000000000007758a105d39581b5
|
87
|
+
Content-Type: text/plain; charset="UTF-8"
|
88
|
+
|
89
|
+
|
90
|
+
** Address not found **
|
91
|
+
|
92
|
+
Your message wasn't delivered to maildebug@example.jpn because the domain example.comn couldn't be found. Check for typos or unnecessary spaces and try again.
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
The response was:
|
97
|
+
|
98
|
+
DNS Error: 39857475 DNS type 'mx' lookup of example.comn responded with code NXDOMAIN
|
99
|
+
Domain name not found: example.comn
|
100
|
+
|
101
|
+
--0000000000007758a105d39581b5
|
102
|
+
Content-Type: text/html; charset="UTF-8"
|
103
|
+
|
104
|
+
|
105
|
+
<html>
|
106
|
+
<head>
|
107
|
+
<style>
|
108
|
+
* {
|
109
|
+
font-family:Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
110
|
+
}
|
111
|
+
</style>
|
112
|
+
</head>
|
113
|
+
<body>
|
114
|
+
<table cellpadding="0" cellspacing="0" class="email-wrapper" style="padding-top:32px;background-color:#ffffff;"><tbody>
|
115
|
+
<tr><td>
|
116
|
+
<table cellpadding=0 cellspacing=0><tbody>
|
117
|
+
<tr><td style="max-width:560px;padding:24px 24px 32px;background-color:#fafafa;border:1px solid #e0e0e0;border-radius:2px">
|
118
|
+
<img style="padding:0 24px 16px 0;float:left" width=72 height=72 alt="Error Icon" src="cid:icon.png">
|
119
|
+
<table style="min-width:272px;padding-top:8px"><tbody>
|
120
|
+
<tr><td><h2 style="font-size:20px;color:#212121;font-weight:bold;margin:0">
|
121
|
+
Address not found
|
122
|
+
</h2></td></tr>
|
123
|
+
<tr><td style="padding-top:20px;color:#757575;font-size:16px;font-weight:normal;text-align:left">
|
124
|
+
Your message wasn't delivered to <a style='color:#212121;text-decoration:none'><b>maildebug@example.jpn</b></a> because the domain example.comn couldn't be found. Check for typos or unnecessary spaces and try again.
|
125
|
+
</td></tr>
|
126
|
+
</tbody></table>
|
127
|
+
</td></tr>
|
128
|
+
</tbody></table>
|
129
|
+
</td></tr>
|
130
|
+
<tr style="border:none;background-color:#fff;font-size:12.8px;width:90%">
|
131
|
+
<td align="left" style="padding:48px 10px">
|
132
|
+
The response was:<br/>
|
133
|
+
<p style="font-family:monospace">
|
134
|
+
DNS Error: 39857475 DNS type 'mx' lookup of example.comn responded with code NXDOMAIN
|
135
|
+
Domain name not found: example.comn
|
136
|
+
</p>
|
137
|
+
</td>
|
138
|
+
</tr>
|
139
|
+
</tbody></table>
|
140
|
+
</body>
|
141
|
+
</html>
|
142
|
+
|
143
|
+
--0000000000007758a105d39581b5--
|
144
|
+
--00000000000077589c05d39581b4
|
145
|
+
Content-Type: image/png; name="icon.png"
|
146
|
+
Content-Disposition: attachment; filename="icon.png"
|
147
|
+
Content-Transfer-Encoding: base64
|
148
|
+
Content-ID: <icon.png>
|
149
|
+
|
150
|
+
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
|
175
|
+
LK8FGADCTxYrr+EVJgAAAABJRU5ErkJggg==
|
176
|
+
--00000000000077589c05d39581b4--
|
177
|
+
--0000000000007752ac05d39581ae
|
178
|
+
Content-Type: message/delivery-status
|
179
|
+
|
180
|
+
Reporting-MTA: dns; googlemail.com
|
181
|
+
Arrival-Date: Mon, 20 Dec 2021 07:25:58 -0800 (PST)
|
182
|
+
X-Original-Message-ID: <CAByYQsGge+O7Z6G5c06TEcL1SN7zSeON58xdcyueZqK1LWMjxw@mail.gmail.com>
|
183
|
+
|
184
|
+
Final-Recipient: rfc822; maildebug@example.jpn
|
185
|
+
Action: failed
|
186
|
+
Status: 4.0.0
|
187
|
+
Diagnostic-Code: smtp; DNS Error: 39857475 DNS type 'mx' lookup of example.comn responded with code NXDOMAIN
|
188
|
+
Domain name not found: example.comn
|
189
|
+
Last-Attempt-Date: Mon, 20 Dec 2021 07:25:59 -0800 (PST)
|
190
|
+
|
191
|
+
--0000000000007752ac05d39581ae
|
192
|
+
Content-Type: message/rfc822
|
193
|
+
|
194
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
195
|
+
d=gmail.com; s=20210112;
|
196
|
+
h=mime-version:from:date:message-id:subject:to;
|
197
|
+
bh=flEkuO1wygIuWI6juGfTi7zfrUYhNEoCS4h9v44zZ3c=;
|
198
|
+
b=o/ySHMehm/GD/wJxppQRyqrdqJ+0z0SBT8IJAtln7h/8k90Ap8dTEvMPJCpv8PEzZo
|
199
|
+
OHsjoF7EAmnE9OOZH9yCsv3vgMbON/i0Uo1n/QR+OWgZrl1uzP4bGHbdWKiqn3yDjp8V
|
200
|
+
Ji+Xe8Krnbx6oesOmE68hITyd3yeVjTn8dLfbeJC0MuE312E0Do4xWkQAdebKM6+d8Ct
|
201
|
+
GZVNojW/ffQ25fWXUJp+i47nkJX/Ni1dc7R4u6DRqbLTj2Z9Th3kVxHrxgcQ6FNSIt8N
|
202
|
+
w5yfT7/D/DJuw0wdPwPiORrh7SkUUEEyIuf3h3EFi3vSq/81Xr/9lAhZFYvO48LGBtOZ
|
203
|
+
uXPg==
|
204
|
+
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
205
|
+
d=1e100.net; s=20210112;
|
206
|
+
h=x-gm-message-state:mime-version:from:date:message-id:subject:to;
|
207
|
+
bh=flEkuO1wygIuWI6juGfTi7zfrUYhNEoCS4h9v44zZ3c=;
|
208
|
+
b=Ot1rNrUZ+aFF2QUH1kOnQqLDKWXRSTErCQvkzZCuNqKujJXUx8X5m8TMXg945jeBzJ
|
209
|
+
yyn0g1N/lz0fm4f9RmojnGaWhxL/DuyybToUizOrISFLnHE1fe+NovMy8wcTdXHIncYE
|
210
|
+
8051m3USMw52xkLwtlH3Gf+691+XTAgYxOkkeyLVG3DXOP/H0GucbMe7zgNZL+8rJG2Q
|
211
|
+
6UVHmfCYCOKD2zgI9EEmPYSolFlBxYfkeETIWXer/0H6ObAcaC3ymihiC2OsbsL2sK5v
|
212
|
+
vSHMfNGtN6LXFNcKlP3iqWaKztlIfR9eOaWcjXFt31Fupp1yMIGFCXMBkYVlndZ6tV+V
|
213
|
+
GBWg==
|
214
|
+
X-Gm-Message-State: AOAM532zTCK79It0edVHB4C8d424T7zmAljEbg5rHX6auhDj+Hcx0QbT
|
215
|
+
yii2wU0eezeZim8bZQGGHohjnYyb/rn64cr4QdbAzCB2
|
216
|
+
X-Google-Smtp-Source: ABdhPJzzDDX0XY9mUMgVxmKGydvKh/CUi49ZmOFIi3IvFTlW3hKqt37X8kf3eKmPaLLZFZpJBdY3/Eerc+lAm/iLkv0=
|
217
|
+
X-Received: by 2002:aa7:cb81:: with SMTP id r1mr16234412edt.352.1640013958807;
|
218
|
+
Mon, 20 Dec 2021 07:25:58 -0800 (PST)
|
219
|
+
MIME-Version: 1.0
|
220
|
+
From: azumakuniyuki <azumakuniyuki@google.example.com>
|
221
|
+
Date: Tue, 21 Dec 2021 00:25:47 +0900
|
222
|
+
Message-ID: <CAByYQsGge+O7Z6G5c06TEcL1SN7zSeON58xdcyueZqK1LWMjxw@mail.gmail.com>
|
223
|
+
Subject: Nyaan
|
224
|
+
To: maildebug@example.jpn
|
225
|
+
Content-Type: text/plain; charset="UTF-8"
|
226
|
+
|
227
|
+
Nyaan
|
228
|
+
|
229
|
+
--0000000000007752ac05d39581ae--
|
@@ -0,0 +1,51 @@
|
|
1
|
+
Return-Path: <double-bounce@mx22.example.com>
|
2
|
+
Received: from mx22.example.com (e2.example.com [192.0.2.22])
|
3
|
+
by neko.libsisimai.org (V8/cf) with ESMTP id 23R6t1JE018491
|
4
|
+
for <serverroot@libsisimai.org>; Wed, 27 Apr 2022 15:55:01 +0900
|
5
|
+
Received: by mx22.example.com (Postfix)
|
6
|
+
id 5yNqCKNtFxzG8dLH; Wed, 27 Apr 2022 15:55:01 +0900 (JST)
|
7
|
+
Delivered-To: postmaster@mx22.example.com
|
8
|
+
Received: by mx22.example.com (Postfix)
|
9
|
+
id XMY2brWtcXzdFVNT; Wed, 27 Apr 2022 15:45:12 +0900 (JST)
|
10
|
+
Date: Wed, 27 Apr 2022 15:45:12 +0900 (JST)
|
11
|
+
From: MAILER-DAEMON@mx22.example.com (Mail Delivery System)
|
12
|
+
To: postmaster@mx22.example.com (Postmaster)
|
13
|
+
Subject: Postfix SMTP server: errors from localhost[127.0.0.1]
|
14
|
+
Message-Id: <XMY2brWtcXzdFVNT@mx22.example.com>
|
15
|
+
|
16
|
+
Transcript of session follows.
|
17
|
+
|
18
|
+
Out: 220 mx22.example.com ESMTP MAIL SYSTEM
|
19
|
+
In: EHLO mx22.example.com
|
20
|
+
Out: 250-mx22.example.com
|
21
|
+
Out: 250-PIPELINING
|
22
|
+
Out: 250-SIZE 33554432
|
23
|
+
Out: 250-ETRN
|
24
|
+
Out: 250-STARTTLS
|
25
|
+
Out: 250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5
|
26
|
+
Out: 250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5
|
27
|
+
Out: 250-XFORWARD NAME ADDR PROTO HELO SOURCE PORT IDENT
|
28
|
+
Out: 250-ENHANCEDSTATUSCODES
|
29
|
+
Out: 250-8BITMIME
|
30
|
+
Out: 250-DSN
|
31
|
+
Out: 250 CHUNKING
|
32
|
+
In: XFORWARD NAME=neko2-nyaan3.y.example.co.jp ADDR=230.0.113.2
|
33
|
+
PORT=53672
|
34
|
+
Out: 250 2.0.0 Ok
|
35
|
+
In: XFORWARD PROTO=SMTP HELO=neko2-nyaan3.y.example.co.jp
|
36
|
+
IDENT=2LYC6642BLzFK3MM SOURCE=REMOTE
|
37
|
+
Out: 250 2.0.0 Ok
|
38
|
+
In: MAIL
|
39
|
+
FROM:<CP85l3ba044547=libsisimai.net@err.y.example.co.jp>
|
40
|
+
SIZE=20088
|
41
|
+
Out: 250 2.1.0 Ok
|
42
|
+
In: RCPT TO:<kijitora@libsisimai.net> ORCPT=rfc822;kijitora@libsisimai.net
|
43
|
+
Out: 250 2.1.5 Ok
|
44
|
+
In: DATA
|
45
|
+
Out: 354 End data with <CR><LF>.<CR><LF>
|
46
|
+
Out: 451 4.3.0 Error: queue file write error
|
47
|
+
In: QUIT
|
48
|
+
Out: 221 2.0.0 Bye
|
49
|
+
|
50
|
+
|
51
|
+
For other details, see the local mail logfile
|
@@ -0,0 +1,101 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from mbox.example.jp (6j.example.jp [192.0.2.6])
|
3
|
+
by nijo.example.jp (V8/cf) with ESMTP id 26R1uim5027307
|
4
|
+
for <kijitora@example.jp>; Wed, 27 Jul 2022 23:34:45 +0900
|
5
|
+
Received: by mbox.example.jp (Postfix)
|
6
|
+
id 4Lsxj86Strz1vP3J; Wed, 27 Jul 2022 23:34:45 +0900 (JST)
|
7
|
+
Date: Wed, 27 Jul 2022 23:34:45 +0900 (JST)
|
8
|
+
From: MAILER-DAEMON@mbox.example.jp (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: kijitora@example.jp
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="4Lsxj83FBdz1yv6F.1658887004/mbox.example.jp"
|
15
|
+
Message-Id: <4Lsxj86Strz1vP3J@mbox.example.jp>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--4Lsxj83FBdz1yv6F.1658887004/mbox.example.jp
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host mbox.example.jp.
|
24
|
+
|
25
|
+
I'm sorry to have to inform you that your message could not
|
26
|
+
be delivered to one or more recipients. It's attached below.
|
27
|
+
|
28
|
+
For further assistance, please send mail to postmaster.
|
29
|
+
|
30
|
+
If you do so, please include this problem report. You can
|
31
|
+
delete your own text from the attached returned message.
|
32
|
+
|
33
|
+
The mail system
|
34
|
+
|
35
|
+
<this-local-part-does-not-exist@rakumail.jp>: host
|
36
|
+
mail-rakumail-jp.gslb.rmb-ss.jp[193.114.52.113] said: 550 User not found
|
37
|
+
(in reply to RCPT TO command)
|
38
|
+
|
39
|
+
--4Lsxj83FBdz1yv6F.1658887004/mbox.example.jp
|
40
|
+
Content-Description: Delivery report
|
41
|
+
Content-Type: message/delivery-status
|
42
|
+
|
43
|
+
Reporting-MTA: dns; mbox.example.jp
|
44
|
+
X-Postfix-Queue-ID: 4Lsxj83FBdz1yv6F
|
45
|
+
X-Postfix-Sender: rfc822; kijitora@example.jp
|
46
|
+
Arrival-Date: Wed, 27 Jul 2022 23:34:45 +0900 (JST)
|
47
|
+
|
48
|
+
Final-Recipient: rfc822; this-local-part-does-not-exist@rakumail.jp
|
49
|
+
Original-Recipient: rfc822;this-local-part-does-not-exist@rakumail.jp
|
50
|
+
Action: failed
|
51
|
+
Status: 5.0.0
|
52
|
+
Remote-MTA: dns; mail-rakumail-jp.gslb.rmb-ss.jp
|
53
|
+
Diagnostic-Code: smtp; 550 User not found
|
54
|
+
|
55
|
+
--4Lsxj83FBdz1yv6F.1658887004/mbox.example.jp
|
56
|
+
Content-Description: Undelivered Message
|
57
|
+
Content-Type: message/rfc822
|
58
|
+
|
59
|
+
Return-Path: <kijitora@example.jp>
|
60
|
+
Received: from mbox.example.jp (localhost [127.0.0.1])
|
61
|
+
by mbox.example.jp (Postfix) with ESMTP id 4Lsxj83FBdz1yv6F
|
62
|
+
for <this-local-part-does-not-exist@rakumail.jp>; Wed, 27 Jul 2022 23:34:45 +0900 (JST)
|
63
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=example.jp;
|
64
|
+
s=cr7e05; t=1658887004;
|
65
|
+
bh=fdkeB/A0FkbVP2k4J4pNPoeWH6vqBm9+b0C3OY87Cw8=;
|
66
|
+
h=From:Subject:Date:To:From;
|
67
|
+
b=BNaUB8GUFAF1hVO2inkcg5AdzAvBntD4lnXvfgirVSOUJpg/JdQ4JrnihQRdHd9aI
|
68
|
+
jlk+FJHcCtUxK1pGx0bSLsX6mqqK0A+8jC2uvJ0BLKDyRubY2n35bShv8b9V+Kd5HW
|
69
|
+
KQgCDM3Vp8CA7S3nhUSGgWApk80VgCm2M+2FdxDmVCdKkXV5U1dLG0CB9sZ/Y/ZTl9
|
70
|
+
c5Zt2UiX2qVz36ZycdS47JjKvHQTb/yzTVB4xO0UyrCSqDXZbclNLmDVNOpGF9sHbh
|
71
|
+
w/uSomcGICANZdQuG5introS6E+VKwkS136q3A00FDIU/PCXcxTpX8mLJ/QUNdEU5b
|
72
|
+
W2oHKRLQyOcjQ==
|
73
|
+
Received: from smtpclient.apple (p2-nekochan.kyoto.example.ne.jp [198.51.100.2])
|
74
|
+
by mbox.example.jp (Postfix) with ESMTPSA id 4Lsxj82HwGz1vP3J
|
75
|
+
for <this-local-part-does-not-exist@rakumail.jp>; Wed, 27 Jul 2022 23:34:45 +0900 (JST)
|
76
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=example.jp;
|
77
|
+
s=cr7e05; t=1658887004;
|
78
|
+
bh=fdkeB/A0FkbVP2k4J4pNPoeWH6vqBm9+b0C3OY87Cw8=;
|
79
|
+
h=From:Subject:Date:To:From;
|
80
|
+
b=BNaUB8GUFAF1hVO2inkcg5AdzAvBntD4lnXvfgirVSOUJpg/JdQ4JrnihQRdHd9aI
|
81
|
+
jlk+FJHcCtUxK1pGx0bSLsX6mqqK0A+8jC2uvJ0BLKDyRubY2n35bShv8b9V+Kd5HW
|
82
|
+
KQgCDM3Vp8CA7S3nhUSGgWApk80VgCm2M+2FdxDmVCdKkXV5U1dLG0CB9sZ/Y/ZTl9
|
83
|
+
c5Zt2UiX2qVz36ZycdS47JjKvHQTb/yzTVB4xO0UyrCSqDXZbclNLmDVNOpGF9sHbh
|
84
|
+
w/uSomcGICANZdQuG5introS6E+VKwkS136q3A00FDIU/PCXcxTpX8mLJ/QUNdEU5b
|
85
|
+
W2oHKRLQyOcjQ==
|
86
|
+
From: "Kijitora, Nyaan" <kijitora@example.jp>
|
87
|
+
Content-Type: text/plain;
|
88
|
+
charset=us-ascii
|
89
|
+
Content-Transfer-Encoding: 7bit
|
90
|
+
Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.100.31\))
|
91
|
+
Subject: Nyaan (1)
|
92
|
+
Message-Id: <C61AA601-6B09-4DE6-A423-40F1777D7F54@example.jp>
|
93
|
+
Date: Wed, 27 Jul 2022 23:34:45 +0900
|
94
|
+
To: this-local-part-does-not-exist@rakumail.jp
|
95
|
+
X-Mailer: Apple Mail (2.3696.100.31)
|
96
|
+
X-Virus-Scanned: ClamAV using ClamSMTP
|
97
|
+
|
98
|
+
Test
|
99
|
+
|
100
|
+
|
101
|
+
--4Lsxj83FBdz1yv6F.1658887004/mbox.example.jp--
|
@@ -0,0 +1,74 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from r1.example.co.jp (ec2-192-0-2-8.ap-northeast-1.compute.amazonaws.com [192.0.2.8])
|
3
|
+
by j2.example.jp (V8/cf) with ESMTP id 5q9Y56NW049128
|
4
|
+
for <nekochan@example.jp>; Fri, 5 Aug 2022 05:22:50 +0900
|
5
|
+
Received: by r1.example.co.jp (Postfix)
|
6
|
+
id kwY4KyCrTyzhKcN4; Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
7
|
+
Date: Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
8
|
+
From: MAILER-DAEMON@r1.example.co.jp (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: nekochan@example.jp
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="nKpx2qVmYQzFNdnG.1659659703/r1.example.co.jp"
|
15
|
+
Message-Id: <kwY4KyCrTyzhKcN4@r1.example.co.jp>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--nKpx2qVmYQzFNdnG.1659659703/r1.example.co.jp
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host r1.example.co.jp.
|
24
|
+
|
25
|
+
I'm sorry to have to inform you that your message could not
|
26
|
+
be delivered to one or more recipients. It's attached below.
|
27
|
+
|
28
|
+
For further assistance, please send mail to postmaster.
|
29
|
+
|
30
|
+
If you do so, please include this problem report. You can
|
31
|
+
delete your own text from the attached returned message.
|
32
|
+
|
33
|
+
The mail system
|
34
|
+
|
35
|
+
<postmaster@libsisimai.org> (expanded from <neko@example.co.jp>): host
|
36
|
+
email-smtp.ap-northeast-1.amazonaws.com[203.0.113.2] said: 554 Message
|
37
|
+
rejected: Email address is not verified. The following identities failed
|
38
|
+
the check in region AP-NORTHEAST-1: nekochan@example.jp (in reply to end of
|
39
|
+
DATA command)
|
40
|
+
|
41
|
+
--nKpx2qVmYQzFNdnG.1659659703/r1.example.co.jp
|
42
|
+
Content-Description: Delivery report
|
43
|
+
Content-Type: message/delivery-status
|
44
|
+
|
45
|
+
Reporting-MTA: dns; r1.example.co.jp
|
46
|
+
X-Postfix-Queue-ID: nKpx2qVmYQzFNdnG
|
47
|
+
X-Postfix-Sender: rfc822; nekochan@example.jp
|
48
|
+
Arrival-Date: Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
49
|
+
|
50
|
+
Final-Recipient: rfc822; postmaster@libsisimai.org
|
51
|
+
Original-Recipient: rfc822;neko@example.co.jp
|
52
|
+
Action: failed
|
53
|
+
Status: 5.0.0
|
54
|
+
Remote-MTA: dns; email-smtp.ap-northeast-1.amazonaws.com
|
55
|
+
Diagnostic-Code: smtp; 554 Message rejected: Email address is not verified. The
|
56
|
+
following identities failed the check in region AP-NORTHEAST-1:
|
57
|
+
nekochan@example.jp
|
58
|
+
|
59
|
+
--nKpx2qVmYQzFNdnG.1659659703/r1.example.co.jp
|
60
|
+
Content-Description: Undelivered Message
|
61
|
+
Content-Type: message/rfc822
|
62
|
+
|
63
|
+
Return-Path: <nekochan@example.jp>
|
64
|
+
Received: from [127.0.0.1] (ip-198-51-100-88.ap-northeast-1.compute.internal [198.51.100.88])
|
65
|
+
by r1.example.co.jp (Postfix) with ESMTP id nKpx2qVmYQzFNdnG
|
66
|
+
for <neko@example.co.jp>; Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
67
|
+
DKIM-Filter: OpenDKIM Filter v2.11.0 r1.example.co.jp nKpx2qVmYQzFNdnG
|
68
|
+
From: <nekochan@example.jp>
|
69
|
+
To: <neko@example.co.jp>
|
70
|
+
Subject: Nyaan
|
71
|
+
|
72
|
+
TEST.
|
73
|
+
|
74
|
+
--nKpx2qVmYQzFNdnG.1659659703/r1.example.co.jp--
|
@@ -0,0 +1,91 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from xp1.example.co.jp (ec2-192-0-2-8.ap-northeast-1.compute.amazonaws.com [192.0.2.8])
|
3
|
+
by c2.example.jp (V8/cf) with ESMTP id 0Tc8RuMK020355
|
4
|
+
for <kijitora@example.jp>; Fri, 5 Aug 2022 05:22:50 +0900
|
5
|
+
Received: by xp1.example.co.jp (Postfix)
|
6
|
+
id x6RLzqkXm8zr1yYK; Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
7
|
+
Date: Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
8
|
+
From: MAILER-DAEMON@xp1.example.co.jp (Mail Delivery System)
|
9
|
+
Subject: Undelivered Mail Returned to Sender
|
10
|
+
To: kijitora@example.jp
|
11
|
+
Auto-Submitted: auto-replied
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="0RFlldw6l7ztPdNS.1659679132/xp1.example.co.jp"
|
15
|
+
Message-Id: <x6RLzqkXm8zr1yYK@xp1.example.co.jp>
|
16
|
+
|
17
|
+
This is a MIME-encapsulated message.
|
18
|
+
|
19
|
+
--0RFlldw6l7ztPdNS.1659679132/xp1.example.co.jp
|
20
|
+
Content-Description: Notification
|
21
|
+
Content-Type: text/plain; charset=us-ascii
|
22
|
+
|
23
|
+
This is the mail system at host xp1.example.co.jp.
|
24
|
+
|
25
|
+
I'm sorry to have to inform you that your message could not
|
26
|
+
be delivered to one or more recipients. It's attached below.
|
27
|
+
|
28
|
+
For further assistance, please send mail to postmaster.
|
29
|
+
|
30
|
+
If you do so, please include this problem report. You can
|
31
|
+
delete your own text from the attached returned message.
|
32
|
+
|
33
|
+
The mail system
|
34
|
+
|
35
|
+
<postmaster@libsisimai.org> (expanded from <neko@example.co.jp>): host
|
36
|
+
email-smtp.ap-northeast-1.amazonaws.com[203.0.113.85] said: 554
|
37
|
+
Transaction failed: Duplicate header 'DKIM-Signature'. (in reply to end of
|
38
|
+
DATA command)
|
39
|
+
|
40
|
+
--0RFlldw6l7ztPdNS.1659679132/xp1.example.co.jp
|
41
|
+
Content-Description: Delivery report
|
42
|
+
Content-Type: message/delivery-status
|
43
|
+
|
44
|
+
Reporting-MTA: dns; xp1.example.co.jp
|
45
|
+
X-Postfix-Queue-ID: 0RFlldw6l7ztPdNS
|
46
|
+
X-Postfix-Sender: rfc822; kijitora@example.jp
|
47
|
+
Arrival-Date: Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
48
|
+
|
49
|
+
Final-Recipient: rfc822; postmaster@libsisimai.org
|
50
|
+
Original-Recipient: rfc822;neko@example.co.jp
|
51
|
+
Action: failed
|
52
|
+
Status: 5.0.0
|
53
|
+
Remote-MTA: dns; email-smtp.ap-northeast-1.amazonaws.com
|
54
|
+
Diagnostic-Code: smtp; 554 Transaction failed: Duplicate header
|
55
|
+
'DKIM-Signature'.
|
56
|
+
|
57
|
+
--0RFlldw6l7ztPdNS.1659679132/xp1.example.co.jp
|
58
|
+
Content-Description: Undelivered Message
|
59
|
+
Content-Type: message/rfc822
|
60
|
+
|
61
|
+
Return-Path: <kijitora@example.jp>
|
62
|
+
Received: from mbox.example.jp (ip-198-51-100-87.ap-northeast-1.compute.internal [198.51.100.87])
|
63
|
+
by xp1.example.co.jp (Postfix) with ESMTPS id 0RFlldw6l7ztPdNS
|
64
|
+
for <neko@example.co.jp>; Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
65
|
+
DKIM-Filter: OpenDKIM Filter v2.11.0 xp1.example.co.jp 0RFlldw6l7ztPdNS
|
66
|
+
Authentication-Results: xp1.example.co.jp;
|
67
|
+
dkim=pass (2048-bit key; unprotected) header.d=example.jp header.i=@example.jp header.a=rsa-sha256
|
68
|
+
dkim=pass (2048-bit key) header.d=example.jp header.i=@example.jp header.a=rsa-sha256
|
69
|
+
Received: from mbox.example.jp (localhost [127.0.0.1])
|
70
|
+
by mbox.example.jp (Postfix) with ESMTP id 4LzZfM62Xyz1wYv0
|
71
|
+
for <neko@example.co.jp>; Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
72
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=example.jp;
|
73
|
+
Received: from smtpclient.apple (p2-kyoto.example.ne.jp [127.0.0.1])
|
74
|
+
by mbox.example.jp (Postfix) with ESMTPSA id 4LzZfM4kC1z1wYtn
|
75
|
+
for <neko@example.co.jp>; Fri, 5 Aug 2022 05:22:50 +0900 (JST)
|
76
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=example.jp;
|
77
|
+
From: "Kijitora, Nyaan" <kijitora@example.jp>
|
78
|
+
Content-Type: text/plain;
|
79
|
+
charset=utf-8
|
80
|
+
Content-Transfer-Encoding: quoted-printable
|
81
|
+
Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.100.31\))
|
82
|
+
Subject: Nyaan
|
83
|
+
Message-Id: <A0B532F4-1A05-4AD3-B1F0-47B7CE0A35FE@example.jp>
|
84
|
+
Date: Fri, 5 Aug 2022 05:22:50 +0900
|
85
|
+
To: neko@example.co.jp
|
86
|
+
X-Mailer: Apple Mail (2.3696.100.31)
|
87
|
+
X-Virus-Scanned: ClamAV using ClamSMTP
|
88
|
+
|
89
|
+
Nyaan
|
90
|
+
|
91
|
+
--0RFlldw6l7ztPdNS.1659679132/xp1.example.co.jp--
|
@@ -0,0 +1,88 @@
|
|
1
|
+
Return-Path: <>
|
2
|
+
Received: from a27-79.smtp-out.us-west-2.amazonses.com (a27-79.smtp-out.us-west-2.amazonses.com [54.240.27.79])
|
3
|
+
by nijo.example.jp (V8/cf) with ESMTP id 1AN74Krs030951
|
4
|
+
for <kijitora@example.jp>; Tue, 23 Nov 2021 16:04:20 +0900
|
5
|
+
DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple;
|
6
|
+
s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1637651058;
|
7
|
+
h=Date:From:To:Message-ID:Subject:MIME-Version:Content-Type:Feedback-ID;
|
8
|
+
bh=pn7c7CRSjvpLkk4JyowjQZeflr0MgeQfQ+gCdNWEjwo=;
|
9
|
+
b=gTP386sobec/f+H4lkTSKLiFpTnXMus1T5EuifHZkQp1W9V2FkSrcp4/StK57jHq
|
10
|
+
eTcvv7TU1UV37/MGan97MS96UUH/KPTG3emkRYjwNflaluyg9m3P/Z0TQOAXdgLApiu
|
11
|
+
5xToNKKbvEt1UqN/Oyghw9ehhMty8oZskwx7UJLo=
|
12
|
+
Date: Tue, 23 Nov 2021 07:04:18 +0000
|
13
|
+
From: poostmaster@example.jp
|
14
|
+
To: kijitora@example.jp
|
15
|
+
Message-ID: <0101017d4b9c107a-5e1ba70e-2cea-4b6e-8475-88bf5ffc9a7f-000000@us-west-2.amazonses.com>
|
16
|
+
Subject: Delivery Status Notification (Failure)
|
17
|
+
MIME-Version: 1.0
|
18
|
+
Content-Type: multipart/report;
|
19
|
+
boundary="----=_Part_5005639_1625296568.1637651058810";
|
20
|
+
report-type=delivery-status
|
21
|
+
Feedback-ID: 1.us-west-2.QHuyeCQrGtIIMGKQfVdUhP9hCQR2LglVOrRamBc+Prk=:AmazonSES
|
22
|
+
X-SES-Outgoing: 2021.11.23-54.240.27.79
|
23
|
+
|
24
|
+
------=_Part_5005639_1625296568.1637651058810
|
25
|
+
Content-Type: text/plain; charset=us-ascii
|
26
|
+
Content-Transfer-Encoding: 7bit
|
27
|
+
Content-Description: Notification
|
28
|
+
|
29
|
+
This message could not be delivered.
|
30
|
+
------=_Part_5005639_1625296568.1637651058810
|
31
|
+
Content-Type: message/delivery-status
|
32
|
+
Content-Transfer-Encoding: 7bit
|
33
|
+
Content-Description: Delivery Status Notification
|
34
|
+
|
35
|
+
Reporting-MTA: dns; inbound-smtp.us-west-2.amazonaws.com
|
36
|
+
Arrival-Date: Tue, 23 Nov 21 07:04:16 UTC
|
37
|
+
|
38
|
+
Action: failed
|
39
|
+
Final-Recipient: rfc822; jp1rb6cm3@mozmail.com
|
40
|
+
Original-Recipient: rfc822; jp1rb6cm3@mozmail.com
|
41
|
+
Diagnostic-Code: smtp; 552 5.2.3 Message length exceeds limit set by recipient
|
42
|
+
Status: 5.2.3
|
43
|
+
|
44
|
+
|
45
|
+
------=_Part_5005639_1625296568.1637651058810
|
46
|
+
Content-Type: text/rfc822-headers
|
47
|
+
Content-Transfer-Encoding: 7bit
|
48
|
+
Content-Description: Undelivered Message
|
49
|
+
|
50
|
+
Received: from mbox.example.jp (localhost [127.0.0.1])
|
51
|
+
by mbox.example.jp (Postfix) with ESMTP id 4Hyw9R4v20z1yv6P
|
52
|
+
for <jp1rb6cm3@mozmail.com>; Tue, 23 Nov 2021 16:04:11 +0900 (JST)
|
53
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=example.jp;
|
54
|
+
s=cr7e05; t=1637651054;
|
55
|
+
bh=z0nIJhpKslSAMzdTwxBRt4tUIVNhk9h6pKxdHLWueVE=;
|
56
|
+
h=From:Subject:Date:To:From;
|
57
|
+
b=th8TgHnV353JVJytiAV/w8QWLKUVxqOoiHkgmB0JTtwsNLq15sHOf3qOCxD20TbLX
|
58
|
+
V3hcxf4/jGljyfPBkPXyL/rccwis3l9Q2Nek2dALDqO/7AgNYRFICWbjB3jfr3ZkBk
|
59
|
+
asqKzW0NrHbkL6S3wBWzMmbU+YH4nVigSesA1XhwQ3lUl3xAa+Cs3nEtr75as+149g
|
60
|
+
SdhcZD1QGbmkA3AJiilavmH+ByQ4rnPhMksXZ9fFbsZbt7QmUPXEbvEE20gkn4YqSw
|
61
|
+
mZONIGT1WsDkT9vTj7qF6upQ8RxuZi2Ezp2XWo9sBOw0tYzMHYwLa2phY2xwgHdHRe
|
62
|
+
DxGAfZgr3E/9A==
|
63
|
+
Received: from neko.example.jp (p135.kyoto.example.ne.jp [192.0.2.22])
|
64
|
+
by mbox.example.jp (Postfix) with ESMTPSA id 4Hyw9R0mhkz1yv64
|
65
|
+
for <jp1rb6cm3@mozmail.com>; Tue, 23 Nov 2021 16:04:11 +0900 (JST)
|
66
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=example.jp;
|
67
|
+
s=cr7e05; t=1637651051;
|
68
|
+
bh=z0nIJhpKslSAMzdTwxBRt4tUIVNhk9h6pKxdHLWueVE=;
|
69
|
+
h=From:Subject:Date:To:From;
|
70
|
+
b=ZtHm2xKDhe+ei8fOFGwF4cfPeeGT9iy5KIGgUaZulc9wHckHX7059oIPz3x3QY0Ix
|
71
|
+
LuyYBo8fNMQHq58izZiwum5ymkdN/tC36rxMt1QAg0vHFGOCcB868131yifpKUGidP
|
72
|
+
T+1MBHYF8V23BmrykmCEyJ1b1OpKuvZ1kULOLNlAvGTsx1y8H8GPNDgf2bZJ8G51yP
|
73
|
+
gZxsqTanFCZNyFYuDGEoX6/Lr8EKebU1QsKIKjzHVpnp6oxRCL207/PAQLaA6DqFNV
|
74
|
+
SmCaa+x/NWsNPzrs8Tc+otIJUQmw5/S1icS05Il00QfHNpgFFK8z2HDQIN99sFofg6
|
75
|
+
QXXrXikJKJ60A==
|
76
|
+
From: "Kijitora, Nyaan" <kijitora@example.jp>
|
77
|
+
Content-Type: multipart/alternative;
|
78
|
+
boundary="Apple-Mail=_E04A38C5-CF8C-436E-B779-B5CC2E354435"
|
79
|
+
Mime-Version: 1.0 (Mac OS X Mail 14.0 \(3654.120.0.1.13\))
|
80
|
+
Subject: TEST FOR FIREFOX RELAY #6
|
81
|
+
Message-Id: <2EB7A4F3-7355-4A23-BF76-994FEB74C919@example.jp>
|
82
|
+
Date: Tue, 23 Nov 2021 16:04:10 +0900
|
83
|
+
To: jp1rb6cm3@mozmail.com
|
84
|
+
X-Mailer: Apple Mail (2.3654.120.0.1.13)
|
85
|
+
X-Virus-Scanned: ClamAV using ClamSMTP
|
86
|
+
|
87
|
+
|
88
|
+
------=_Part_5005639_1625296568.1637651058810--
|