sisimai 4.25.15 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (177) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -3
  3. data/ANALYTICAL-PRECISION +2 -2
  4. data/Benchmarks.mk +3 -3
  5. data/CONTRIBUTING +1 -1
  6. data/ChangeLog.md +419 -388
  7. data/Developers.mk +5 -6
  8. data/Gemfile +1 -1
  9. data/Makefile +15 -15
  10. data/README-JA.md +140 -78
  11. data/README.md +290 -143
  12. data/Rakefile +9 -3
  13. data/Repository.mk +2 -3
  14. data/lib/sisimai/address.rb +118 -74
  15. data/lib/sisimai/arf.rb +84 -82
  16. data/lib/sisimai/datetime.rb +5 -52
  17. data/lib/sisimai/{data → fact}/json.rb +7 -9
  18. data/lib/sisimai/fact/yaml.rb +31 -0
  19. data/lib/sisimai/fact.rb +468 -0
  20. data/lib/sisimai/lhost/activehunter.rb +12 -14
  21. data/lib/sisimai/lhost/amavis.rb +11 -14
  22. data/lib/sisimai/lhost/amazonses.rb +37 -41
  23. data/lib/sisimai/lhost/amazonworkmail.rb +15 -18
  24. data/lib/sisimai/lhost/aol.rb +12 -14
  25. data/lib/sisimai/lhost/apachejames.rb +19 -21
  26. data/lib/sisimai/lhost/barracuda.rb +10 -12
  27. data/lib/sisimai/lhost/bigfoot.rb +21 -21
  28. data/lib/sisimai/lhost/biglobe.rb +15 -16
  29. data/lib/sisimai/lhost/courier.rb +20 -20
  30. data/lib/sisimai/lhost/domino.rb +23 -19
  31. data/lib/sisimai/lhost/einsundeins.rb +23 -18
  32. data/lib/sisimai/lhost/exchange2003.rb +30 -29
  33. data/lib/sisimai/lhost/exchange2007.rb +70 -58
  34. data/lib/sisimai/lhost/exim.rb +175 -161
  35. data/lib/sisimai/lhost/ezweb.rb +31 -56
  36. data/lib/sisimai/lhost/facebook.rb +21 -33
  37. data/lib/sisimai/lhost/fml.rb +43 -48
  38. data/lib/sisimai/lhost/gmail.rb +29 -29
  39. data/lib/sisimai/lhost/gmx.rb +18 -17
  40. data/lib/sisimai/lhost/googlegroups.rb +9 -10
  41. data/lib/sisimai/lhost/gsuite.rb +21 -27
  42. data/lib/sisimai/lhost/imailserver.rb +25 -39
  43. data/lib/sisimai/lhost/interscanmss.rb +28 -31
  44. data/lib/sisimai/lhost/kddi.rb +22 -28
  45. data/lib/sisimai/lhost/mailfoundry.rb +11 -12
  46. data/lib/sisimai/lhost/mailmarshalsmtp.rb +25 -29
  47. data/lib/sisimai/lhost/mailru.rb +33 -27
  48. data/lib/sisimai/lhost/mcafee.rb +21 -31
  49. data/lib/sisimai/lhost/messagelabs.rb +17 -20
  50. data/lib/sisimai/lhost/messagingserver.rb +40 -37
  51. data/lib/sisimai/lhost/mfilter.rb +15 -16
  52. data/lib/sisimai/lhost/mxlogic.rb +24 -23
  53. data/lib/sisimai/lhost/notes.rb +17 -17
  54. data/lib/sisimai/lhost/office365.rb +63 -27
  55. data/lib/sisimai/lhost/opensmtpd.rb +12 -13
  56. data/lib/sisimai/lhost/outlook.rb +12 -15
  57. data/lib/sisimai/lhost/postfix.rb +179 -129
  58. data/lib/sisimai/lhost/powermta.rb +12 -14
  59. data/lib/sisimai/lhost/qmail.rb +44 -47
  60. data/lib/sisimai/lhost/receivingses.rb +15 -20
  61. data/lib/sisimai/lhost/sendgrid.rb +34 -32
  62. data/lib/sisimai/lhost/sendmail.rb +66 -53
  63. data/lib/sisimai/lhost/surfcontrol.rb +19 -19
  64. data/lib/sisimai/lhost/v5sendmail.rb +45 -39
  65. data/lib/sisimai/lhost/verizon.rb +35 -39
  66. data/lib/sisimai/lhost/x1.rb +18 -17
  67. data/lib/sisimai/lhost/x2.rb +17 -14
  68. data/lib/sisimai/lhost/x3.rb +19 -19
  69. data/lib/sisimai/lhost/x4.rb +72 -57
  70. data/lib/sisimai/lhost/x5.rb +17 -19
  71. data/lib/sisimai/lhost/x6.rb +41 -17
  72. data/lib/sisimai/lhost/yahoo.rb +17 -16
  73. data/lib/sisimai/lhost/yandex.rb +16 -20
  74. data/lib/sisimai/lhost/zoho.rb +16 -15
  75. data/lib/sisimai/lhost.rb +8 -10
  76. data/lib/sisimai/mail/maildir.rb +1 -3
  77. data/lib/sisimai/mail/mbox.rb +3 -4
  78. data/lib/sisimai/mail/memory.rb +0 -1
  79. data/lib/sisimai/mail/stdin.rb +1 -3
  80. data/lib/sisimai/mail.rb +3 -7
  81. data/lib/sisimai/mda.rb +28 -42
  82. data/lib/sisimai/message.rb +435 -313
  83. data/lib/sisimai/order.rb +5 -5
  84. data/lib/sisimai/reason/authfailure.rb +64 -0
  85. data/lib/sisimai/reason/badreputation.rb +53 -0
  86. data/lib/sisimai/reason/blocked.rb +94 -160
  87. data/lib/sisimai/reason/contenterror.rb +8 -9
  88. data/lib/sisimai/reason/delivered.rb +4 -6
  89. data/lib/sisimai/reason/exceedlimit.rb +10 -12
  90. data/lib/sisimai/reason/expired.rb +6 -8
  91. data/lib/sisimai/reason/feedback.rb +2 -3
  92. data/lib/sisimai/reason/filtered.rb +17 -19
  93. data/lib/sisimai/reason/hasmoved.rb +9 -10
  94. data/lib/sisimai/reason/hostunknown.rb +15 -15
  95. data/lib/sisimai/reason/mailboxfull.rb +10 -12
  96. data/lib/sisimai/reason/mailererror.rb +18 -20
  97. data/lib/sisimai/reason/mesgtoobig.rb +9 -11
  98. data/lib/sisimai/reason/networkerror.rb +5 -8
  99. data/lib/sisimai/reason/norelaying.rb +8 -11
  100. data/lib/sisimai/reason/notaccept.rb +13 -14
  101. data/lib/sisimai/reason/notcompliantrfc.rb +43 -0
  102. data/lib/sisimai/reason/onhold.rb +6 -9
  103. data/lib/sisimai/reason/policyviolation.rb +14 -12
  104. data/lib/sisimai/reason/rejected.rb +26 -24
  105. data/lib/sisimai/reason/requireptr.rb +69 -0
  106. data/lib/sisimai/reason/securityerror.rb +33 -36
  107. data/lib/sisimai/reason/spamdetected.rb +114 -147
  108. data/lib/sisimai/reason/speeding.rb +49 -0
  109. data/lib/sisimai/reason/suspend.rb +11 -11
  110. data/lib/sisimai/reason/syntaxerror.rb +11 -10
  111. data/lib/sisimai/reason/systemerror.rb +7 -9
  112. data/lib/sisimai/reason/systemfull.rb +7 -8
  113. data/lib/sisimai/reason/toomanyconn.rb +9 -11
  114. data/lib/sisimai/reason/undefined.rb +2 -3
  115. data/lib/sisimai/reason/userunknown.rb +129 -146
  116. data/lib/sisimai/reason/vacation.rb +3 -4
  117. data/lib/sisimai/reason/virusdetected.rb +10 -11
  118. data/lib/sisimai/reason.rb +59 -64
  119. data/lib/sisimai/rfc1894.rb +55 -28
  120. data/lib/sisimai/rfc2045.rb +373 -0
  121. data/lib/sisimai/rfc3464.rb +250 -308
  122. data/lib/sisimai/rfc3834.rb +42 -47
  123. data/lib/sisimai/rfc5322.rb +75 -100
  124. data/lib/sisimai/rfc5965.rb +31 -0
  125. data/lib/sisimai/rhost/cox.rb +5 -6
  126. data/lib/sisimai/rhost/franceptt.rb +6 -8
  127. data/lib/sisimai/rhost/godaddy.rb +12 -12
  128. data/lib/sisimai/rhost/{googleapps.rb → google.rb} +80 -72
  129. data/lib/sisimai/rhost/iua.rb +9 -10
  130. data/lib/sisimai/rhost/kddi.rb +6 -8
  131. data/lib/sisimai/rhost/{exchangeonline.rb → microsoft.rb} +115 -114
  132. data/lib/sisimai/rhost/mimecast.rb +42 -40
  133. data/lib/sisimai/rhost/nttdocomo.rb +12 -12
  134. data/lib/sisimai/rhost/spectrum.rb +10 -12
  135. data/lib/sisimai/rhost/{tencentqq.rb → tencent.rb} +7 -8
  136. data/lib/sisimai/rhost.rb +23 -31
  137. data/lib/sisimai/smtp/command.rb +59 -0
  138. data/lib/sisimai/smtp/error.rb +4 -7
  139. data/lib/sisimai/smtp/reply.rb +161 -74
  140. data/lib/sisimai/smtp/status.rb +504 -393
  141. data/lib/sisimai/smtp/transcript.rb +124 -0
  142. data/lib/sisimai/smtp.rb +0 -1
  143. data/lib/sisimai/string.rb +74 -5
  144. data/lib/sisimai/time.rb +1 -2
  145. data/lib/sisimai/version.rb +1 -1
  146. data/lib/sisimai.rb +35 -21
  147. data/set-of-emails/maildir/bsd/lhost-domino-02.eml +6 -3
  148. data/set-of-emails/maildir/bsd/lhost-googlegroups-15.eml +174 -0
  149. data/set-of-emails/maildir/bsd/lhost-gsuite-15.eml +229 -0
  150. data/set-of-emails/maildir/bsd/lhost-postfix-75.eml +51 -0
  151. data/set-of-emails/maildir/bsd/lhost-postfix-76.eml +101 -0
  152. data/set-of-emails/maildir/bsd/lhost-postfix-77.eml +74 -0
  153. data/set-of-emails/maildir/bsd/lhost-postfix-78.eml +91 -0
  154. data/set-of-emails/maildir/bsd/lhost-receivingses-08.eml +88 -0
  155. data/set-of-emails/maildir/bsd/rfc3464-43.eml +88 -0
  156. data/set-of-emails/maildir/bsd/rhost-google-03.eml +101 -0
  157. data/set-of-emails/maildir/bsd/rhost-google-04.eml +102 -0
  158. data/set-of-emails/maildir/bsd/rhost-google-05.eml +82 -0
  159. data/set-of-emails/maildir/bsd/rhost-google-06.eml +102 -0
  160. data/set-of-emails/maildir/bsd/rhost-google-07.eml +69 -0
  161. data/set-of-emails/maildir/bsd/rhost-google-08.eml +99 -0
  162. data/sisimai-java.gemspec +1 -1
  163. data/sisimai.gemspec +1 -1
  164. metadata +41 -20
  165. data/.rspec +0 -2
  166. data/lib/sisimai/data/yaml.rb +0 -33
  167. data/lib/sisimai/data.rb +0 -411
  168. data/lib/sisimai/mime.rb +0 -456
  169. /data/set-of-emails/maildir/bsd/{rfc3464-41.eml → rfc3834-05.eml} +0 -0
  170. /data/set-of-emails/maildir/bsd/{rhost-googleapps-01.eml → rhost-google-01.eml} +0 -0
  171. /data/set-of-emails/maildir/bsd/{rhost-googleapps-02.eml → rhost-google-02.eml} +0 -0
  172. /data/set-of-emails/maildir/bsd/{rhost-exchangeonline-01.eml → rhost-microsoft-01.eml} +0 -0
  173. /data/set-of-emails/maildir/bsd/{rhost-exchangeonline-02.eml → rhost-microsoft-02.eml} +0 -0
  174. /data/set-of-emails/maildir/bsd/{rhost-exchangeonline-03.eml → rhost-microsoft-03.eml} +0 -0
  175. /data/set-of-emails/maildir/bsd/{rhost-tencentqq-01.eml → rhost-tencent-01.eml} +0 -0
  176. /data/set-of-emails/maildir/bsd/{rhost-tencentqq-02.eml → rhost-tencent-02.eml} +0 -0
  177. /data/set-of-emails/maildir/bsd/{rhost-tencentqq-03.eml → rhost-tencent-03.eml} +0 -0
@@ -0,0 +1,88 @@
1
+ Return-Path: <>
2
+ Received: from a26-6.smtp-out.us-west-2.amazonses.com (a26-6.smtp-out.us-west-2.amazonses.com [54.240.26.6])
3
+ by nijo.example.jp (V8/cf) with ESMTP id 1AN74KPq030952
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=1637651059;
7
+ h=Date:From:To:Message-ID:Subject:MIME-Version:Content-Type:Feedback-ID;
8
+ bh=e9Bu4Kgzcr02tELMMplTn28sugwU8g1eBMQXfHqFK3Q=;
9
+ b=XZfWrCjyPmFj1h+gxxlrvo6c3VEkWIXKdHoRjBfD5SgryVwWuji8mj8cinjj4zEM
10
+ 9jmE8NfM3IB317enowm9i7xiSSMybaVJlDhxctV/7pt+nvzjGada5/5EoDyc9nwORy5
11
+ I0tRE5dEXRi0xsleMng8bjCugpWfJ28XW5qLu4g4=
12
+ Date: Tue, 23 Nov 2021 07:04:19 +0000
13
+ From: poostmaster@example.jp
14
+ To: kijitora@example.jp
15
+ Message-ID: <0101017d4b9c1152-7500e5d8-550e-40f7-ab35-9ae981be78b1-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_4971070_946561338.1637651059025";
20
+ report-type=delivery-status
21
+ Feedback-ID: 1.us-west-2.QHuyeCQrGtIIMGKQfVdUhP9hCQR2LglVOrRamBc+Prk=:AmazonSES
22
+ X-SES-Outgoing: 2021.11.23-54.240.26.6
23
+
24
+ ------=_Part_4971070_946561338.1637651059025
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 due to a recipient error. Please try again later.
30
+ ------=_Part_4971070_946561338.1637651059025
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; 451 4.3.0 This message could not be delivered due to a recipient error. Please try again later.
42
+ Status: 4.3.0
43
+
44
+
45
+ ------=_Part_4971070_946561338.1637651059025
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_4971070_946561338.1637651059025--
@@ -0,0 +1,101 @@
1
+ Return-Path: <>
2
+ X-Original-To: postmaster@example.jp
3
+ Delivered-To: michitsuna@example.jp
4
+ Received: from secure.example.jp (localhost [127.0.0.1])
5
+ by secure.example.jp (Postfix) with ESMTP id JfFDQjgCW0zMSm1y
6
+ for <postmaster@example.jp>; Thu, 9 Apr 2022 23:34:45 +0900 (JST)
7
+ Received: from mail4.example.com (mx4.example.com [192.0.2.24])
8
+ by secure.example.jp (Postfix) with ESMTPS id 4SnNbh0r3mz24sXs
9
+ for <postmaster@example.jp>; Thu, 9 Apr 2022 23:34:45 +0900 (JST)
10
+ Authentication-Results: secure.example.jp; dmarc=none (p=none dis=none) header.from=mail4.example.com
11
+ Authentication-Results: secure.example.jp; spf=fail smtp.helo=mail4.example.com
12
+ Received: by mail4.example.com (Postfix)
13
+ id vdvMsDwBrhz8r3rH; Thu, 9 Apr 2022 23:34:45 +0900 (JST)
14
+ Delivered-To: nginx@mail4.example.com
15
+ Received: by mail4.example.com (Postfix)
16
+ id t8WLKlmm99zqL71C; Thu, 9 Apr 2022 23:34:45 +0900 (JST)
17
+ Date: Thu, 9 Apr 2022 23:34:45 +0900 (JST)
18
+ From: MAILER-DAEMON@mail4.example.com (Mail Delivery System)
19
+ Subject: Undelivered Mail Returned to Sender
20
+ To: nginx@mail4.example.com
21
+ Auto-Submitted: auto-replied
22
+ MIME-Version: 1.0
23
+ Content-Type: multipart/report; report-type=delivery-status;
24
+ boundary="Lms5yfCw0Vz5CRp3.1647426971/mail4.example.com"
25
+ Message-Id: <t8WLKlmm99zqL71C@mail4.example.com>
26
+ X-Virus-Scanned: ClamAV using ClamSMTP
27
+
28
+ This is a MIME-encapsulated message.
29
+
30
+ --Lms5yfCw0Vz5CRp3.1647426971/mail4.example.com
31
+ Content-Description: Notification
32
+ Content-Type: text/plain; charset=us-ascii
33
+
34
+ This is the mail system at host mail4.example.com.
35
+
36
+ I'm sorry to have to inform you that your message could not
37
+ be delivered to one or more recipients. It's attached below.
38
+
39
+ For further assistance, please send mail to postmaster.
40
+
41
+ If you do so, please include this problem report. You can
42
+ delete your own text from the attached returned message.
43
+
44
+ The mail system
45
+
46
+ <kijitora@google.example.com> (expanded from <neko@example.co.jp>): host
47
+ gmail-smtp-in.l.google.com[64.233.188.26] said: 550-5.7.26 The MAIL FROM
48
+ domain [mail4.example.com] has an SPF record with a 550-5.7.26 hard fail
49
+ policy (-all) but it fails to pass SPF checks with the ip: 550-5.7.26
50
+ [192.0.2.24]. To best protect our users from spam and phishing,
51
+ 550-5.7.26 the message has been blocked. For instructions on setting up
52
+ 550-5.7.26 authentication, go to 550 5.7.26
53
+ https://support.google.com/mail/answer/81126#authentication
54
+ 2-222222630d46222222b002b2d2neko2cat2222222cat.22 - gsmtp (in reply to end
55
+ of DATA command)
56
+
57
+ --Lms5yfCw0Vz5CRp3.1647426971/mail4.example.com
58
+ Content-Description: Delivery report
59
+ Content-Type: message/delivery-status
60
+
61
+ Reporting-MTA: dns; mail4.example.com
62
+ X-Postfix-Queue-ID: Lms5yfCw0Vz5CRp3
63
+ X-Postfix-Sender: rfc822; nginx@mail4.example.com
64
+ Arrival-Date: Thu, 9 Apr 2022 23:34:45 +0900 (JST)
65
+
66
+ Final-Recipient: rfc822; kijitora@google.example.com
67
+ Original-Recipient: rfc822;neko@example.co.jp
68
+ Action: failed
69
+ Status: 5.7.26
70
+ Remote-MTA: dns; gmail-smtp-in.l.google.com
71
+ Diagnostic-Code: smtp; 550-5.7.26 The MAIL FROM domain [mail4.example.com] has
72
+ an SPF record with a 550-5.7.26 hard fail policy (-all) but it fails to
73
+ pass SPF checks with the ip: 550-5.7.26 [192.0.2.24]. To best protect
74
+ our users from spam and phishing, 550-5.7.26 the message has been blocked.
75
+ For instructions on setting up 550-5.7.26 authentication, go to 550 5.7.26
76
+ https://support.google.com/mail/answer/81126#authentication
77
+ 2-222222630d46222222b002b2d2neko2cat2222222cat.22 - gsmtp
78
+
79
+ --Lms5yfCw0Vz5CRp3.1647426971/mail4.example.com
80
+ Content-Description: Undelivered Message
81
+ Content-Type: message/rfc822
82
+
83
+ Return-Path: <nginx@mail4.example.com>
84
+ Received: from mail4.example.com (localhost [127.0.0.1])
85
+ by mail4.example.com (Postfix) with ESMTP id Lms5yfCw0Vz5CRp3
86
+ for <neko@example.co.jp>; Thu, 9 Apr 2022 23:34:45 +0900 (JST)
87
+ Received: by mail4.example.com (Postfix, from userid 22)
88
+ id vDcsF1hr4zzywp69; Thu, 9 Apr 2022 23:34:45 +0900 (JST)
89
+ To: neko@example.co.jp
90
+ Subject: Nyaan
91
+ Date: Thu, 09 Apr 2022 23:34:45 +0900
92
+ From: kijitora@google.example.com
93
+ MIME-Version: 1.0
94
+ Content-Type: text/plain; charset=ISO-2022-JP
95
+ Content-Transfer-Encoding: 7bit
96
+ Message-Id: <vDcsF1hr4zzywp69@mail4.example.com>
97
+ X-Virus-Scanned: ClamAV using ClamSMTP
98
+
99
+ Nyaan?
100
+
101
+ --Lms5yfCw0Vz5CRp3.1647426971/mail4.example.com--
@@ -0,0 +1,102 @@
1
+ Return-Path: <>
2
+ X-Original-To: postmaster@example.jp
3
+ Delivered-To: michitsuna@example.jp
4
+ Received: from fw.example.jp (localhost [127.0.0.1])
5
+ by fw.example.jp (Postfix) with ESMTP id 2VW6FQqTTrzmWNM5
6
+ for <postmaster@example.jp>; Thu, 16 Apr 2022 23:34:45 +0900 (JST)
7
+ Received: from relay3.example.com (mta3.example.com [192.0.2.22])
8
+ by fw.example.jp (Postfix) with ESMTPS id v6Wbf5ZvWWzF7wQl
9
+ for <postmaster@example.jp>; Thu, 16 Apr 2022 23:34:45 +0900 (JST)
10
+ Authentication-Results: fw.example.jp; dmarc=none (p=none dis=none) header.from=relay3.example.com
11
+ Authentication-Results: fw.example.jp; spf=fail smtp.helo=relay3.example.com
12
+ Received: by relay3.example.com (Postfix)
13
+ id hq1BRRlPGszt1Sl9; Thu, 16 Apr 2022 23:34:45 +0900 (JST)
14
+ Delivered-To: httpd@relay3.example.com
15
+ Received: by relay3.example.com (Postfix)
16
+ id jwxHjWK4R6zBdNdJ; Thu, 16 Apr 2022 23:34:45 +0900 (JST)
17
+ Date: Thu, 16 Apr 2022 23:34:45 +0900 (JST)
18
+ From: MAILER-DAEMON@relay3.example.com (Mail Delivery System)
19
+ Subject: Undelivered Mail Returned to Sender
20
+ To: httpd@relay3.example.com
21
+ Auto-Submitted: auto-replied
22
+ MIME-Version: 1.0
23
+ Content-Type: multipart/report; report-type=delivery-status;
24
+ boundary="vHTqBwkX9xzYJqKR.1127665034/relay3.example.com"
25
+ Message-Id: <jwxHjWK4R6zBdNdJ@relay3.example.com>
26
+ X-Virus-Scanned: ClamAV using ClamSMTP
27
+
28
+ This is a MIME-encapsulated message.
29
+
30
+ --vHTqBwkX9xzYJqKR.1127665034/relay3.example.com
31
+ Content-Description: Notification
32
+ Content-Type: text/plain; charset=us-ascii
33
+
34
+ This is the mail system at host relay3.example.com.
35
+
36
+ I'm sorry to have to inform you that your message could not
37
+ be delivered to one or more recipients. It's attached below.
38
+
39
+ For further assistance, please send mail to postmaster.
40
+
41
+ If you do so, please include this problem report. You can
42
+ delete your own text from the attached returned message.
43
+
44
+ The mail system
45
+
46
+ <kijitora@google.example.com> (expanded from <contact@example.co.jp>): host
47
+ gmail-smtp-in.l.google.com[64.233.187.27] said: 550-5.7.26 This mail has
48
+ been blocked because the sender is unauthenticated. 550-5.7.26 Gmail
49
+ requires all senders to authenticate with either SPF or DKIM. 550-5.7.26
50
+ 550-5.7.26 Authentication results: 550-5.7.26 DKIM = did not pass
51
+ 550-5.7.26 SPF [relay3.example.com] with ip: [192.0.2.22] = did not
52
+ pass 550-5.7.26 550-5.7.26 For instructions on setting up authentication,
53
+ go to 550 5.7.26
54
+ https://support.google.com/mail/answer/81126#authentication
55
+ c2-202200202020202020222222cat.127 - gsmtp (in reply to end of DATA command)
56
+
57
+ --vHTqBwkX9xzYJqKR.1127665034/relay3.example.com
58
+ Content-Description: Delivery report
59
+ Content-Type: message/delivery-status
60
+
61
+ Reporting-MTA: dns; relay3.example.com
62
+ X-Postfix-Queue-ID: vHTqBwkX9xzYJqKR
63
+ X-Postfix-Sender: rfc822; httpd@relay3.example.com
64
+ Arrival-Date: Thu, 16 Apr 2022 23:34:45 +0900 (JST)
65
+
66
+ Final-Recipient: rfc822; kijitora@google.example.com
67
+ Original-Recipient: rfc822;contact@example.co.jp
68
+ Action: failed
69
+ Status: 5.7.26
70
+ Remote-MTA: dns; gmail-smtp-in.l.google.com
71
+ Diagnostic-Code: smtp; 550-5.7.26 This mail has been blocked because the sender
72
+ is unauthenticated. 550-5.7.26 Gmail requires all senders to authenticate
73
+ with either SPF or DKIM. 550-5.7.26 550-5.7.26 Authentication results:
74
+ 550-5.7.26 DKIM = did not pass 550-5.7.26 SPF [relay3.example.com] with
75
+ ip: [192.0.2.22] = did not pass 550-5.7.26 550-5.7.26 For
76
+ instructions on setting up authentication, go to 550 5.7.26
77
+ https://support.google.com/mail/answer/81126#authentication
78
+ c2-202200202020202020222222cat.127 - gsmtp
79
+
80
+ --vHTqBwkX9xzYJqKR.1127665034/relay3.example.com
81
+ Content-Description: Undelivered Message
82
+ Content-Type: message/rfc822
83
+
84
+ Return-Path: <httpd@relay3.example.com>
85
+ Received: from relay3.example.com (localhost [127.0.0.1])
86
+ by relay3.example.com (Postfix) with ESMTP id vHTqBwkX9xzYJqKR
87
+ for <contact@example.co.jp>; Thu, 16 Apr 2022 23:34:45 +0900 (JST)
88
+ Received: by relay3.example.com (Postfix, from userid 22)
89
+ id hwK7pzjzJtz0RF9Y; Thu, 16 Apr 2022 23:34:45 +0900 (JST)
90
+ To: contact@example.co.jp
91
+ Subject: Nyaan
92
+ Date: Thu, 16 Apr 2022 23:34:45 +0900
93
+ From: kijitora@google.example.com
94
+ MIME-Version: 1.0
95
+ Content-Type: text/plain; charset=ISO-2022-JP
96
+ Content-Transfer-Encoding: 7bit
97
+ Message-Id: <hwK7pzjzJtz0RF9Y@relay3.example.com>
98
+ X-Virus-Scanned: ClamAV using ClamSMTP
99
+
100
+ Nyaan
101
+
102
+ --vHTqBwkX9xzYJqKR.1127665034/relay3.example.com--
@@ -0,0 +1,82 @@
1
+ Return-Path: <>
2
+ X-Original-To: michitsuna@example.jp
3
+ Delivered-To: postmaster@example.jp
4
+ Received: from smtp-gw1.example.jp (smtp-gw1 [192.0.2.251])
5
+ by mx1.example.jp (Postfix) with ESMTPS id 2vK5npVrJQzj589p
6
+ for <michitsuna@example.jp>; Thu, 1 Apr 2023 23:34:45 +0900 (JST)
7
+ Received: by smtp-gw1.example.jp (Postfix)
8
+ id fm3wCsf3rqzGL2JS; Thu, 1 Apr 2023 23:34:45 +0900 (JST)
9
+ Date: Thu, 1 Apr 2023 23:34:45 +0900 (JST)
10
+ From: MAILER-DAEMON@smtp-gw1.example.jp (Mail Delivery System)
11
+ Subject: Undelivered Mail Returned to Sender
12
+ To: michitsuna@example.jp
13
+ Auto-Submitted: auto-replied
14
+ MIME-Version: 1.0
15
+ Content-Type: multipart/report; report-type=delivery-status;
16
+ boundary="qbddfL3NB0z0D2Ld.1087617357/smtp-gw1.example.jp"
17
+ Message-Id: <fm3wCsf3rqzGL2JS@smtp-gw1.example.jp>
18
+
19
+ This is a MIME-encapsulated message.
20
+
21
+ --qbddfL3NB0z0D2Ld.1087617357/smtp-gw1.example.jp
22
+ Content-Description: Notification
23
+ Content-Type: text/plain; charset=us-ascii
24
+
25
+ This is the mail system at host smtp-gw1.example.jp.
26
+
27
+ I'm sorry to have to inform you that your message could not
28
+ be delivered to one or more recipients. It's attached below.
29
+
30
+ For further assistance, please send mail to postmaster.
31
+
32
+ If you do so, please include this problem report. You can
33
+ delete your own text from the attached returned message.
34
+
35
+ The mail system
36
+
37
+ <kijitora@google.example.com>: host gmail-smtp-in.l.google.com[108.177.125.26] said:
38
+ 552-5.2.2 The recipient's inbox is out of storage space and inactive.
39
+ Please 552-5.2.2 direct the recipient to 552 5.2.2
40
+ https://support.google.com/mail/?p=OverQuotaPerm
41
+ c2-202229zmZBNM3agi23.222 - gsmtp (in reply to RCPT TO command)
42
+
43
+ --qbddfL3NB0z0D2Ld.1087617357/smtp-gw1.example.jp
44
+ Content-Description: Delivery report
45
+ Content-Type: message/delivery-status
46
+
47
+ Reporting-MTA: dns; smtp-gw1.example.jp
48
+ X-Postfix-Queue-ID: qbddfL3NB0z0D2Ld
49
+ X-Postfix-Sender: rfc822; michitsuna@example.jp
50
+ Arrival-Date: Thu, 1 Apr 2023 23:34:45 +0900 (JST)
51
+
52
+ Final-Recipient: rfc822; kijitora@google.example.com
53
+ Original-Recipient: rfc822;kijitora@google.example.com
54
+ Action: failed
55
+ Status: 5.2.2
56
+ Remote-MTA: dns; gmail-smtp-in.l.google.com
57
+ Diagnostic-Code: smtp; 552-5.2.2 The recipient's inbox is out of storage space
58
+ and inactive. Please 552-5.2.2 direct the recipient to 552 5.2.2
59
+ https://support.google.com/mail/?p=OverQuotaPerm
60
+ c2-202229zmZBNM3agi23.222 - gsmtp
61
+
62
+ --qbddfL3NB0z0D2Ld.1087617357/smtp-gw1.example.jp
63
+ Content-Description: Undelivered Message
64
+ Content-Type: message/rfc822
65
+
66
+ Return-Path: <michitsuna@example.jp>
67
+ Received: from mx55.example.jp (mta55 [192.0.2.248])
68
+ by smtp-gw1.example.jp (Postfix) with ESMTP id qbddfL3NB0z0D2Ld
69
+ for <kijitora@google.example.com>; Thu, 1 Apr 2023 23:34:45 +0900 (JST)
70
+ MIME-Version: 1.0
71
+ From: <michitsuna@example.jp>
72
+ To: <kijitora@google.example.com>
73
+ Date: 1 Apr 2023 23:34:45 +0900
74
+ Subject: Nyaan
75
+ Content-Type: text/plain; charset=iso-2022-jp
76
+ Content-Transfer-Encoding: quoted-printable
77
+ Message-Id: <qbddfL3NB0z0D2Ld@smtp-gw1.example.jp>
78
+
79
+ Nyaan?
80
+
81
+ --qbddfL3NB0z0D2Ld.1087617357/smtp-gw1.example.jp--
82
+
@@ -0,0 +1,102 @@
1
+ Return-Path: <>
2
+ X-Original-To: neko@example.jp
3
+ Delivered-To: michitsuna@example.jp
4
+ Received: from mail1.example.org (unknown [192.0.2.202])
5
+ by mx4.example.jp (Postfix) with ESMTPS id 4Fj7HtFjgnzLxB5K
6
+ for <neko@example.jp>; Thu, 22 Feb 2023 18:30:22 +0900 (JST)
7
+ Authentication-Results: mx4.example.jp; arc=none smtp.client-ip=192.0.2.202
8
+ ARC-Seal:i=1; a=rsa-sha256; d=example.jp; s=ss2018; t=1151913043; cv=none;
9
+ b=neko/nyaan+cat/
10
+ ARC-Message-Signature:i=1; a=rsa-sha256; d=example.jp; s=ss2018;
11
+ t=2222222201; c=relaxed/relaxed;
12
+ bh=neko+nyaan=;
13
+ h=Received:Date:From:Subject:To:Auto-Submitted:MIME-Version:
14
+ Content-Type:Message-Id; b=neko+nyaan+/cat+/
15
+ ARC-Authentication-Results:i=1; mx4.example.jp; dmarc=none (p=none dis=none) header.from=mail1.example.org; spf=none smtp.helo=mail1.example.org; arc=none smtp.client-ip=192.0.2.202
16
+ Authentication-Results: mx4.example.jp; dmarc=none (p=none dis=none) header.from=mail1.example.org
17
+ Authentication-Results: mx4.example.jp; spf=none smtp.helo=mail1.example.org
18
+ Received: by mail1.example.org (Postfix)
19
+ id 5ZGLGdBZw6z5FwBg; Thu, 22 Feb 2023 18:30:22 +0900 (JST)
20
+ Date: Thu, 22 Feb 2023 18:30:22 +0900 (JST)
21
+ From: MAILER-DAEMON@mail1.example.org (Mail Delivery System)
22
+ Subject: Undelivered Mail Returned to Sender
23
+ To: neko@example.jp
24
+ Auto-Submitted: auto-replied
25
+ MIME-Version: 1.0
26
+ Content-Type: multipart/report; report-type=delivery-status;
27
+ boundary="d140gHGZxpzCP4C8.1151913043/mail1.example.org"
28
+ Message-Id: <5ZGLGdBZw6z5FwBg@mail1.example.org>
29
+
30
+ This is a MIME-encapsulated message.
31
+
32
+ --d140gHGZxpzCP4C8.1151913043/mail1.example.org
33
+ Content-Description: Notification
34
+ Content-Type: text/plain; charset=us-ascii
35
+
36
+ This is the mail system at host mail1.example.org.
37
+
38
+ I'm sorry to have to inform you that your message could not
39
+ be delivered to one or more recipients. It's attached below.
40
+
41
+ For further assistance, please send mail to postmaster.
42
+
43
+ If you do so, please include this problem report. You can
44
+ delete your own text from the attached returned message.
45
+
46
+ The mail system
47
+
48
+ <michitsuna@google.example.com> (expanded from <michitsuna@example.org>): host
49
+ gmail-smtp-in.l.google.com[142.251.170.27] said: 550-5.7.25
50
+ [192.0.2.202] The IP address sending this message does not have a
51
+ 550-5.7.25 PTR record setup, or the corresponding forward DNS entry does
52
+ not 550-5.7.25 point to the sending IP. As a policy, Gmail does not accept
53
+ messages 550-5.7.25 from IPs with missing PTR records. For more
54
+ information, go to 550 5.7.25
55
+ https://support.google.com/mail/answer/81126#ip-practices
56
+ neko-1785a7g6767a6agg.2 - gsmtp (in reply to
57
+ end of DATA command)
58
+
59
+ --d140gHGZxpzCP4C8.1151913043/mail1.example.org
60
+ Content-Description: Delivery report
61
+ Content-Type: message/delivery-status
62
+
63
+ Reporting-MTA: dns; mail1.example.org
64
+ X-Postfix-Queue-ID: d140gHGZxpzCP4C8
65
+ X-Postfix-Sender: rfc822; neko@example.jp
66
+ Arrival-Date: Thu, 22 Feb 2023 18:30:22 +0900 (JST)
67
+
68
+ Final-Recipient: rfc822; michitsuna@google.example.com
69
+ Original-Recipient: rfc822;michitsuna@example.org
70
+ Action: failed
71
+ Status: 5.7.25
72
+ Remote-MTA: dns; gmail-smtp-in.l.google.com
73
+ Diagnostic-Code: smtp; 550-5.7.25 [192.0.2.202] The IP address sending this
74
+ message does not have a 550-5.7.25 PTR record setup, or the corresponding
75
+ forward DNS entry does not 550-5.7.25 point to the sending IP. As a policy,
76
+ Gmail does not accept messages 550-5.7.25 from IPs with missing PTR
77
+ records. For more information, go to 550 5.7.25
78
+ https://support.google.com/mail/answer/81126#ip-practices
79
+ neko-1785a7g6767a6agg.2 - gsmtp
80
+
81
+ --d140gHGZxpzCP4C8.1151913043/mail1.example.org
82
+ Content-Description: Undelivered Message
83
+ Content-Type: message/rfc822
84
+
85
+ Return-Path: <neko@example.jp>
86
+ Received: from mx4.example.jp (ane.example.jp [192.0.2.202])
87
+ by mail1.example.org (Postfix) with ESMTPS id d140gHGZxpzCP4C8
88
+ for <michitsuna@example.org>; Thu, 22 Feb 2023 18:30:22 +0900 (JST)
89
+ Authentication-Results: mail1.example.org; arc=pass smtp.remote-ip=192.0.2.202
90
+ From: <neko@example.jp>
91
+ Content-Type: text/plain; charset=utf-8
92
+ Content-Transfer-Encoding: base64
93
+ Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.100.31\))
94
+ Subject: Nyaan
95
+ Message-Id: <222222EA-20C2-2200-EEEE-2222CEEEEA21@example.jp>
96
+ Date: Thu, 22 Feb 2023 18:30:22 +0900
97
+ To: michitsuna@example.org
98
+ X-Mailer: Apple Mail (2.3696.100.31)
99
+
100
+ Nyaan
101
+
102
+ --d140gHGZxpzCP4C8.1151913043/mail1.example.org--
@@ -0,0 +1,69 @@
1
+ Return-Path: <>
2
+ X-Original-To: michitsuna@example.jp
3
+ Delivered-To: neko@example.jp
4
+ Received: from email-2202eaaf.example.com (ip-192.0.2.22.ap-northeast-1.compute.internal [192.0.2.22])
5
+ by mx1.example.jp (Postfix) with ESMTPS id lkG8VwJH5Yzv9RK6
6
+ for <michitsuna@example.jp>; Thu, 1 Apr 2022 18:30:22 +0900 (JST)
7
+ Date: Thu, 1 Apr 2022 18:30:22 +0900
8
+ From: Mail Delivery Subsystem <MAILER-DAEMON@email-2202eaaf.example.com>
9
+ Message-Id: <2202111122.HMP53fyp8mzchsMt@email-2202eaaf.example.com>
10
+ To: <michitsuna@example.jp>
11
+ MIME-Version: 1.0
12
+ Content-Type: multipart/report; report-type=delivery-status;
13
+ boundary="HMP53fyp8mzchsMt.plH0sKGySnzKtJbt/email-2202eaaf.example.com"
14
+ Subject: Returned mail: see transcript for details
15
+
16
+ This is a MIME-encapsulated message
17
+
18
+ --HMP53fyp8mzchsMt.plH0sKGySnzKtJbt/email-2202eaaf.example.com
19
+
20
+ The original message was received at Thu, 1 Apr 2022 18:30:22 +0900
21
+ from e22-2.example.ne.jp [127.0.0.1]
22
+
23
+ ----- The following addresses had permanent fatal errors -----
24
+ <kijitora-cat@google.example.com>
25
+ (reason: 550-5.2.1 The email account that you tried to reach is inactive. For more)
26
+
27
+ ----- Transcript of session follows -----
28
+ ... while talking to aspmx.l.google.com.:
29
+ >>> DATA
30
+ <<< 550-5.2.1 The email account that you tried to reach is inactive. For more
31
+ <<< 550-5.2.1 information, go to
32
+ <<< 550 5.2.1 https://support.google.com/mail/?p=DisabledUser neko-15789a6671ag7789128947.22 - gsmtp
33
+ 550 5.1.1 <kijitora-cat@google.example.com>... User unknown
34
+ <<< 503-5.5.1 RCPT first. A mail transaction protocol command was issued out of
35
+ <<< 503-5.5.1 sequence. For more information, go to
36
+ <<< 503-5.5.1 https://support.google.com/a/answer/3221692 and review RFC 5321
37
+ <<< 503 5.5.1 specifications. neko-15789a6671ag7789128947.22 - gsmtp
38
+
39
+ --HMP53fyp8mzchsMt.plH0sKGySnzKtJbt/email-2202eaaf.example.com
40
+ Content-Type: message/delivery-status
41
+
42
+ Reporting-MTA: dns; email-2202eaaf.example.com
43
+ Received-From-MTA: DNS; e22-2.example.ne.jp
44
+ Arrival-Date: Thu, 1 Apr 2022 18:30:22 +0900
45
+
46
+ Final-Recipient: RFC822; kijitora-cat@google.example.com
47
+ X-Actual-Recipient: rfc822; kijitora-cat@google.example.com
48
+ Action: failed
49
+ Status: 5.2.1
50
+ Remote-MTA: DNS; aspmx.l.google.com
51
+ Diagnostic-Code: SMTP; 550-5.2.1 The email account that you tried to reach is inactive. For more
52
+ Last-Attempt-Date: Thu, 1 Apr 2022 18:30:22 +0900
53
+
54
+ --HMP53fyp8mzchsMt.plH0sKGySnzKtJbt/email-2202eaaf.example.com
55
+ Content-Type: message/rfc822
56
+
57
+ Return-Path: <michitsuna@example.jp>
58
+ MIME-Version: 1.0
59
+ From: <michitsuna@example.jp>
60
+ To: <kijitora-cat@google.example.com>
61
+ Date: 1 Apr 2022 18:30:22 +0900
62
+ Subject: Nyaan
63
+ Content-Type: text/plain; charset=iso-2022-jp
64
+ Content-Transfer-Encoding: quoted-printable
65
+ Message-Id: <4TQbcJ4XtCzhbY75@smtps.example.jp>
66
+
67
+ Nyaan?
68
+
69
+ --HMP53fyp8mzchsMt.plH0sKGySnzKtJbt/email-2202eaaf.example.com--
@@ -0,0 +1,99 @@
1
+ Return-Path: <>
2
+ X-Original-To: postmaster@example.jp
3
+ Delivered-To: michitsuna@example.jp
4
+ Received: from neko.example.jp (localhost [127.0.0.1])
5
+ by neko.example.jp (Postfix) with ESMTP id lF1WDcndYHzHDJvD
6
+ for <postmaster@example.jp>; Thu, 5 Apr 2022 18:30:22 +0900 (JST)
7
+ Received: from cat3.example.com (nekochan.example.com [192.0.2.202])
8
+ by neko.example.jp (Postfix) with ESMTPS id G8gY3nwpRzz0Fpq2
9
+ for <postmaster@example.jp>; Thu, 5 Apr 2022 18:30:22 +0900 (JST)
10
+ Authentication-Results: neko.example.jp; dmarc=none (p=none dis=none) header.from=cat3.example.com
11
+ Authentication-Results: neko.example.jp; spf=fail smtp.helo=cat3.example.com
12
+ Received: by cat3.example.com (Postfix)
13
+ id cf84Cn8h0Wzs7xNL; Thu, 5 Apr 2022 18:30:22 +0900 (JST)
14
+ Delivered-To: httpd@cat3.example.com
15
+ Received: by cat3.example.com (Postfix)
16
+ id GxWS9MCs1bzP2BCJ; Thu, 5 Apr 2022 18:30:22 +0900 (JST)
17
+ Date: Thu, 5 Apr 2022 18:30:22 +0900 (JST)
18
+ From: MAILER-DAEMON@cat3.example.com (Mail Delivery System)
19
+ Subject: Undelivered Mail Returned to Sender
20
+ To: httpd@cat3.example.com
21
+ Auto-Submitted: auto-replied
22
+ MIME-Version: 1.0
23
+ Content-Type: multipart/report; report-type=delivery-status;
24
+ boundary="ykK5l2WrDGzVQPnx.20221390757/cat3.example.com"
25
+ Message-Id: <GxWS9MCs1bzP2BCJ@cat3.example.com>
26
+ X-Virus-Scanned: ClamAV using ClamSMTP
27
+
28
+ This is a MIME-encapsulated message.
29
+
30
+ --ykK5l2WrDGzVQPnx.20221390757/cat3.example.com
31
+ Content-Description: Notification
32
+ Content-Type: text/plain; charset=us-ascii
33
+
34
+ This is the mail system at host cat3.example.com.
35
+
36
+ I'm sorry to have to inform you that your message could not
37
+ be delivered to one or more recipients. It's attached below.
38
+
39
+ For further assistance, please send mail to postmaster.
40
+
41
+ If you do so, please include this problem report. You can
42
+ delete your own text from the attached returned message.
43
+
44
+ The mail system
45
+
46
+ <kijitora-nyaan@example.org>: host aspmx.l.google.com[142.251.170.26] said:
47
+ 550-5.7.1 This message is not RFC 5322 compliant. There are multiple
48
+ Subject 550-5.7.1 headers. To reduce the amount of spam sent to Gmail, this
49
+ message has 550-5.7.1 been blocked. Please visit 550-5.7.1
50
+ https://support.google.com/mail/?p=RfcMessageNonCompliant and review 550
51
+ 5.7.1 RFC 5322 specifications for more information.
52
+ c2-aguiqyuiyuqir5678167856aeu8.22 - gsmtp (in reply to
53
+ end of DATA command)
54
+
55
+ --ykK5l2WrDGzVQPnx.20221390757/cat3.example.com
56
+ Content-Description: Delivery report
57
+ Content-Type: message/delivery-status
58
+
59
+ Reporting-MTA: dns; cat3.example.com
60
+ X-Postfix-Queue-ID: ykK5l2WrDGzVQPnx
61
+ X-Postfix-Sender: rfc822; httpd@cat3.example.com
62
+ Arrival-Date: Thu, 5 Apr 2022 18:30:22 +0900 (JST)
63
+
64
+ Final-Recipient: rfc822; kijitora-nyaan@example.org
65
+ Original-Recipient: rfc822;kijitora-nyaan@example.org
66
+ Action: failed
67
+ Status: 5.7.1
68
+ Remote-MTA: dns; aspmx.l.google.com
69
+ Diagnostic-Code: smtp; 550-5.7.1 This message is not RFC 5322 compliant. There
70
+ are multiple Subject 550-5.7.1 headers. To reduce the amount of spam sent
71
+ to Gmail, this message has 550-5.7.1 been blocked. Please visit 550-5.7.1
72
+ https://support.google.com/mail/?p=RfcMessageNonCompliant and review 550
73
+ 5.7.1 RFC 5322 specifications for more information.
74
+ c2-aguiqyuiyuqir5678167856aeu8.22 - gsmtp
75
+
76
+ --ykK5l2WrDGzVQPnx.20221390757/cat3.example.com
77
+ Content-Description: Undelivered Message
78
+ Content-Type: message/rfc822
79
+
80
+ Return-Path: <httpd@cat3.example.com>
81
+ Received: from cat3.example.com (localhost [127.0.0.1])
82
+ by cat3.example.com (Postfix) with ESMTP id ykK5l2WrDGzVQPnx
83
+ for <kijitora-nyaan@example.org>; Thu, 5 Apr 2022 18:30:22 +0900 (JST)
84
+ Received: by cat3.example.com (Postfix, from userid 22)
85
+ id P9P67n0B1wzHNQg8; Thu, 5 Apr 2022 18:30:22 +0900 (JST)
86
+ To: kijitora-nyaan@example.org
87
+ Subject: Nyaan
88
+ Date: Thu, 05 Apr 2022 18:30:22 +0900
89
+ From: neko@example.or.jp
90
+ Subject: Nyaan?
91
+ MIME-Version: 1.0
92
+ Content-Type: text/plain; charset=ISO-2022-JP
93
+ Content-Transfer-Encoding: 7bit
94
+ Message-Id: <C1pWn3N6plzJkRdc.8Jk4dSCdB2zwXWqM@cat3.example.com>
95
+ X-Virus-Scanned: ClamAV using ClamSMTP
96
+
97
+ Nyaan
98
+
99
+ --ykK5l2WrDGzVQPnx.20221390757/cat3.example.com--
data/sisimai-java.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
21
  spec.require_paths = ['lib']
22
22
 
23
- spec.required_ruby_version = '>= 2.1.0'
23
+ spec.required_ruby_version = '>= 2.4.0'
24
24
 
25
25
  spec.add_development_dependency 'bundler', '>= 1.8'
26
26
  spec.add_development_dependency 'rake', '>= 10.0'
data/sisimai.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ['lib']
21
21
 
22
- spec.required_ruby_version = '>= 2.1.0'
22
+ spec.required_ruby_version = '>= 2.4.0'
23
23
 
24
24
  spec.add_development_dependency 'bundler', '>= 1.8'
25
25
  spec.add_development_dependency 'rake', '>= 10.0'