sisimai 5.0.3-java → 5.1.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/codecovio.yml +3 -1
  3. data/.github/workflows/rake-test.yml +6 -2
  4. data/ChangeLog.md +34 -0
  5. data/README-JA.md +20 -17
  6. data/README.md +20 -17
  7. data/lib/sisimai/arf.rb +3 -3
  8. data/lib/sisimai/fact/json.rb +2 -2
  9. data/lib/sisimai/fact/yaml.rb +2 -2
  10. data/lib/sisimai/fact.rb +4 -19
  11. data/lib/sisimai/lhost/activehunter.rb +4 -3
  12. data/lib/sisimai/lhost/amavis.rb +4 -4
  13. data/lib/sisimai/lhost/amazonses.rb +6 -6
  14. data/lib/sisimai/lhost/amazonworkmail.rb +4 -4
  15. data/lib/sisimai/lhost/aol.rb +4 -4
  16. data/lib/sisimai/lhost/apachejames.rb +4 -4
  17. data/lib/sisimai/lhost/barracuda.rb +4 -4
  18. data/lib/sisimai/lhost/bigfoot.rb +4 -4
  19. data/lib/sisimai/lhost/biglobe.rb +4 -4
  20. data/lib/sisimai/lhost/courier.rb +4 -4
  21. data/lib/sisimai/lhost/domino.rb +4 -4
  22. data/lib/sisimai/lhost/dragonfly.rb +114 -0
  23. data/lib/sisimai/lhost/einsundeins.rb +4 -4
  24. data/lib/sisimai/lhost/exchange2003.rb +4 -3
  25. data/lib/sisimai/lhost/exchange2007.rb +4 -3
  26. data/lib/sisimai/lhost/exim.rb +4 -4
  27. data/lib/sisimai/lhost/ezweb.rb +4 -4
  28. data/lib/sisimai/lhost/facebook.rb +4 -4
  29. data/lib/sisimai/lhost/fml.rb +4 -4
  30. data/lib/sisimai/lhost/gmail.rb +4 -4
  31. data/lib/sisimai/lhost/gmx.rb +4 -4
  32. data/lib/sisimai/lhost/googlegroups.rb +4 -4
  33. data/lib/sisimai/lhost/gsuite.rb +4 -4
  34. data/lib/sisimai/lhost/imailserver.rb +4 -3
  35. data/lib/sisimai/lhost/interscanmss.rb +5 -4
  36. data/lib/sisimai/lhost/kddi.rb +4 -4
  37. data/lib/sisimai/lhost/mailfoundry.rb +4 -4
  38. data/lib/sisimai/lhost/mailmarshalsmtp.rb +5 -4
  39. data/lib/sisimai/lhost/mailru.rb +4 -4
  40. data/lib/sisimai/lhost/mcafee.rb +4 -4
  41. data/lib/sisimai/lhost/messagelabs.rb +4 -3
  42. data/lib/sisimai/lhost/messagingserver.rb +5 -4
  43. data/lib/sisimai/lhost/mfilter.rb +4 -4
  44. data/lib/sisimai/lhost/mxlogic.rb +3 -3
  45. data/lib/sisimai/lhost/notes.rb +4 -4
  46. data/lib/sisimai/lhost/office365.rb +4 -4
  47. data/lib/sisimai/lhost/opensmtpd.rb +9 -7
  48. data/lib/sisimai/lhost/outlook.rb +4 -4
  49. data/lib/sisimai/lhost/postfix.rb +4 -4
  50. data/lib/sisimai/lhost/powermta.rb +4 -4
  51. data/lib/sisimai/lhost/qmail.rb +10 -10
  52. data/lib/sisimai/lhost/receivingses.rb +4 -4
  53. data/lib/sisimai/lhost/sendgrid.rb +4 -4
  54. data/lib/sisimai/lhost/sendmail.rb +4 -4
  55. data/lib/sisimai/lhost/surfcontrol.rb +4 -4
  56. data/lib/sisimai/lhost/v5sendmail.rb +5 -4
  57. data/lib/sisimai/lhost/verizon.rb +4 -4
  58. data/lib/sisimai/lhost/x1.rb +3 -3
  59. data/lib/sisimai/lhost/x2.rb +3 -3
  60. data/lib/sisimai/lhost/x3.rb +3 -3
  61. data/lib/sisimai/lhost/x4.rb +3 -3
  62. data/lib/sisimai/lhost/x5.rb +3 -3
  63. data/lib/sisimai/lhost/x6.rb +3 -3
  64. data/lib/sisimai/lhost/yahoo.rb +4 -4
  65. data/lib/sisimai/lhost/yandex.rb +4 -4
  66. data/lib/sisimai/lhost/zoho.rb +4 -4
  67. data/lib/sisimai/lhost.rb +5 -5
  68. data/lib/sisimai/mail/maildir.rb +1 -1
  69. data/lib/sisimai/mail/stdin.rb +1 -1
  70. data/lib/sisimai/mda.rb +3 -3
  71. data/lib/sisimai/message.rb +8 -8
  72. data/lib/sisimai/order.rb +1 -0
  73. data/lib/sisimai/reason/badreputation.rb +1 -1
  74. data/lib/sisimai/reason/norelaying.rb +1 -0
  75. data/lib/sisimai/reason/rejected.rb +1 -0
  76. data/lib/sisimai/reason.rb +8 -8
  77. data/lib/sisimai/rfc3464.rb +3 -3
  78. data/lib/sisimai/rfc3834.rb +2 -2
  79. data/lib/sisimai/rhost/apple.rb +92 -0
  80. data/lib/sisimai/rhost/cox.rb +81 -32
  81. data/lib/sisimai/rhost/franceptt.rb +84 -81
  82. data/lib/sisimai/rhost/godaddy.rb +205 -43
  83. data/lib/sisimai/rhost/google.rb +3 -5
  84. data/lib/sisimai/rhost/iua.rb +2 -2
  85. data/lib/sisimai/rhost/kddi.rb +6 -5
  86. data/lib/sisimai/rhost/microsoft.rb +4 -5
  87. data/lib/sisimai/rhost/mimecast.rb +15 -4
  88. data/lib/sisimai/rhost/nttdocomo.rb +1 -1
  89. data/lib/sisimai/rhost/spectrum.rb +100 -40
  90. data/lib/sisimai/rhost/tencent.rb +46 -25
  91. data/lib/sisimai/rhost/yahooinc.rb +110 -0
  92. data/lib/sisimai/rhost.rb +28 -35
  93. data/lib/sisimai/smtp/reply.rb +4 -3
  94. data/lib/sisimai/smtp/transcript.rb +3 -3
  95. data/lib/sisimai/version.rb +1 -1
  96. data/lib/sisimai.rb +0 -6
  97. data/set-of-emails/maildir/bsd/lhost-dragonfly-01.eml +36 -0
  98. data/set-of-emails/maildir/bsd/lhost-dragonfly-02.eml +32 -0
  99. data/set-of-emails/maildir/bsd/lhost-dragonfly-03.eml +32 -0
  100. data/set-of-emails/maildir/bsd/lhost-dragonfly-04.eml +31 -0
  101. data/set-of-emails/maildir/bsd/lhost-dragonfly-05.eml +32 -0
  102. data/set-of-emails/maildir/bsd/lhost-dragonfly-06.eml +32 -0
  103. data/set-of-emails/maildir/bsd/lhost-dragonfly-07.eml +32 -0
  104. data/set-of-emails/maildir/bsd/lhost-dragonfly-08.eml +32 -0
  105. data/set-of-emails/maildir/bsd/lhost-dragonfly-09.eml +32 -0
  106. data/set-of-emails/maildir/bsd/lhost-dragonfly-10.eml +32 -0
  107. data/set-of-emails/maildir/bsd/lhost-dragonfly-11.eml +32 -0
  108. data/set-of-emails/maildir/bsd/lhost-dragonfly-12.eml +32 -0
  109. data/set-of-emails/maildir/bsd/lhost-dragonfly-13.eml +32 -0
  110. data/set-of-emails/maildir/bsd/lhost-dragonfly-14.eml +32 -0
  111. data/set-of-emails/maildir/bsd/lhost-dragonfly-15.eml +32 -0
  112. data/set-of-emails/maildir/bsd/lhost-dragonfly-16.eml +32 -0
  113. data/set-of-emails/maildir/bsd/lhost-dragonfly-17.eml +32 -0
  114. data/set-of-emails/maildir/bsd/lhost-dragonfly-18.eml +32 -0
  115. data/set-of-emails/maildir/bsd/lhost-dragonfly-19.eml +32 -0
  116. data/set-of-emails/maildir/bsd/lhost-dragonfly-20.eml +32 -0
  117. data/set-of-emails/maildir/bsd/lhost-dragonfly-21.eml +33 -0
  118. data/set-of-emails/maildir/bsd/lhost-dragonfly-22.eml +32 -0
  119. data/set-of-emails/maildir/bsd/lhost-dragonfly-23.eml +32 -0
  120. data/set-of-emails/maildir/bsd/lhost-dragonfly-24.eml +32 -0
  121. data/set-of-emails/maildir/bsd/lhost-dragonfly-25.eml +33 -0
  122. data/set-of-emails/maildir/bsd/lhost-dragonfly-26.eml +33 -0
  123. data/set-of-emails/maildir/bsd/lhost-dragonfly-27.eml +47 -0
  124. data/set-of-emails/maildir/bsd/lhost-dragonfly-28.eml +47 -0
  125. data/set-of-emails/maildir/bsd/lhost-dragonfly-29.eml +32 -0
  126. data/set-of-emails/maildir/bsd/lhost-dragonfly-30.eml +32 -0
  127. data/set-of-emails/maildir/bsd/lhost-opensmtpd-10.eml +58 -0
  128. data/set-of-emails/maildir/bsd/lhost-opensmtpd-11.eml +58 -0
  129. data/set-of-emails/maildir/bsd/lhost-opensmtpd-12.eml +62 -0
  130. data/set-of-emails/maildir/bsd/lhost-opensmtpd-13.eml +62 -0
  131. data/set-of-emails/maildir/bsd/lhost-opensmtpd-14.eml +58 -0
  132. data/set-of-emails/maildir/bsd/lhost-opensmtpd-15.eml +63 -0
  133. data/set-of-emails/maildir/bsd/lhost-opensmtpd-16.eml +62 -0
  134. data/set-of-emails/maildir/bsd/lhost-opensmtpd-17.eml +63 -0
  135. data/set-of-emails/maildir/bsd/lhost-qmail-11.eml +29 -0
  136. data/set-of-emails/maildir/bsd/lhost-qmail-12.eml +29 -0
  137. data/set-of-emails/maildir/bsd/lhost-qmail-13.eml +29 -0
  138. data/set-of-emails/maildir/bsd/lhost-qmail-14.eml +34 -0
  139. data/set-of-emails/maildir/bsd/lhost-qmail-15.eml +30 -0
  140. data/set-of-emails/maildir/bsd/lhost-qmail-16.eml +31 -0
  141. data/set-of-emails/maildir/bsd/lhost-qmail-17.eml +38 -0
  142. data/set-of-emails/maildir/bsd/lhost-qmail-18.eml +31 -0
  143. data/set-of-emails/maildir/bsd/lhost-qmail-19.eml +31 -0
  144. data/set-of-emails/maildir/bsd/lhost-qmail-20.eml +46 -0
  145. data/set-of-emails/maildir/bsd/lhost-qmail-21.eml +41 -0
  146. data/set-of-emails/maildir/bsd/lhost-qmail-22.eml +42 -0
  147. data/set-of-emails/maildir/bsd/lhost-qmail-23.eml +43 -0
  148. data/set-of-emails/maildir/bsd/lhost-qmail-24.eml +43 -0
  149. data/set-of-emails/maildir/bsd/lhost-qmail-25.eml +54 -0
  150. data/set-of-emails/maildir/bsd/rhost-apple-01.eml +79 -0
  151. data/set-of-emails/maildir/bsd/rhost-apple-02.eml +81 -0
  152. data/set-of-emails/maildir/bsd/rhost-apple-03.eml +75 -0
  153. data/set-of-emails/maildir/bsd/rhost-apple-04.eml +74 -0
  154. data/set-of-emails/maildir/bsd/rhost-yahooinc-01.eml +80 -0
  155. data/set-of-emails/maildir/bsd/rhost-yahooinc-02.eml +83 -0
  156. data/set-of-emails/maildir/bsd/rhost-yahooinc-03.eml +125 -0
  157. metadata +65 -2
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0720
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:04:02 +0900
5
+ X-Original-To: <pseudo-local-part@outlook.example.com>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0720@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:04:02 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <pseudo-local-part@outlook.example.com>.
15
+
16
+ outlook-com.olc.protection.outlook.com [52.101.42.17] did not like our final DATA:
17
+ 550 5.7.509 Access denied, sending domain [DF.EXAMPLE.JP] does not pass DMARC verification and has a DMARC policy of reject. [TYCP286MB3363.JPNP286.PROD.OUTLOOK.COM 2024-06-11T09:04:02.679Z 08DC8850F12E1502] [MW4PR04CA0381.namprd04.prod.outlook.com 2024-06-11T09:04:02.743Z 08DC87B4931D8FD2] [CO1PEPF000066EC.namprd05.prod.outlook.com 2024-06-11T09:04:02.731Z 08DC89E7235090DB]
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e06d1
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:04:00 +0900
26
+ Subject: Nyaan 01
27
+ To: <pseudo-local-part@outlook.example.com>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:04:00 +0900
30
+ Message-Id: <66681300.e06d1.6964aaf9@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0720
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:09:35 +0900
5
+ X-Original-To: <pseudo-local-part@yahoo-inc.example.com>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0720@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:09:35 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <pseudo-local-part@yahoo-inc.example.com>.
15
+
16
+ mta5.am0.yahoodns.net [67.195.204.79] did not like our final DATA:
17
+ 554 5.7.9 Message not accepted for policy reasons. See https://senders.yahooinc.com/error-codes
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e06d1
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:09:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <pseudo-local-part@yahoo-inc.example.com>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:09:33 +0900
30
+ Message-Id: <6668144d.e06d1.1bdca37a@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,31 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0724
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:15:33 +0900
5
+ X-Original-To: <postmaster@cx.libsisimai.org>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0724@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:15:33 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <postmaster@cx.libsisimai.org>.
15
+
16
+ DNS lookup failure: host cx.libsisimai.org not found
17
+
18
+ Message headers follow.
19
+
20
+ Received: from root (uid 0)
21
+ (envelope-from kijitora@df.example.jp)
22
+ id e0722
23
+ by df.example.jp (DragonFly Mail Agent v0.13);
24
+ Tue, 11 Jun 2024 18:15:33 +0900
25
+ Subject: Nyaan 01
26
+ To: <postmaster@cx.libsisimai.org>
27
+ User-Agent: mail (GNU Mailutils 3.14)
28
+ Date: Tue, 11 Jun 2024 18:15:33 +0900
29
+ Message-Id: <666815b5.e0722.4e479ce6@df.example.jp>
30
+ From: <kijitora@df.example.jp>
31
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0724
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:17:34 +0900
5
+ X-Original-To: <authfailure@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0724@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:17:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <authfailure@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.7.26 <authfailure@libsisimai.net>: Recipient address rejected: Multiple authentication checks failed
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0722
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:17:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <authfailure@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:17:33 +0900
30
+ Message-Id: <6668162d.e0722.3a6a6f36@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0726
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:21:33 +0900
5
+ X-Original-To: <blocked@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0726@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:21:33 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <blocked@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.7.25 <blocked@libsisimai.net>: Recipient address rejected: Reverse DNS validation failed: See https://libsisimai.org/en/reason/#blocked
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0724
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:21:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <blocked@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:21:33 +0900
30
+ Message-Id: <6668171d.e0724.4a78d49a@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0726
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:23:33 +0900
5
+ X-Original-To: <contenterror@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0726@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:23:33 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <contenterror@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.6.0 <contenterror@libsisimai.net>: Recipient address rejected: Media error. See https://libsisimai.org/en/reason/#contenterror
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0724
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:23:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <contenterror@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:23:33 +0900
30
+ Message-Id: <66681795.e0724.764d9012@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0726
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:25:33 +0900
5
+ X-Original-To: <exceedlimit@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0726@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:25:33 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <exceedlimit@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 552 5.2.3 <exceedlimit@libsisimai.net>: Recipient address rejected: Message length exceeds administrative limit. See https://libsisimai.org/en/reason/#exceedlimit
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0724
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:25:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <exceedlimit@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:25:33 +0900
30
+ Message-Id: <6668180d.e0724.7c2abac3@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0728
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:29:34 +0900
5
+ X-Original-To: <filtered@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0728@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:29:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <filtered@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.2.1 <filtered@libsisimai.net>: Recipient address rejected: User unknown. See https://libsisimai.org/en/reason/#filtered
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0726
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:29:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <filtered@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:29:33 +0900
30
+ Message-Id: <666818fd.e0726.7e456d07@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0728
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:31:33 +0900
5
+ X-Original-To: <hasmoved@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0728@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:31:33 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <hasmoved@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.1.6 <hasmoved@libsisimai.net>: Recipient address rejected: Destination mailbox has moved, No forwarding address. See https://libsisimai.org/en/reason/#hasmoved
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0726
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:31:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <hasmoved@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:31:33 +0900
30
+ Message-Id: <66681975.e0726.7dcedb39@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0728
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:33:34 +0900
5
+ X-Original-To: <hostunknown@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0728@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:33:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <hostunknown@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.1.2 <hostunknown@libsisimai.net>: Recipient address rejected: Bad destination system address. See https://libsisimai.org/en/reason/#hostunknown
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0726
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:33:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <hostunknown@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:33:33 +0900
30
+ Message-Id: <666819ed.e0726.115fa400@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0728
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:35:33 +0900
5
+ X-Original-To: <mailboxfull@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0728@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:35:33 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <mailboxfull@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 552 5.2.2 <mailboxfull@libsisimai.net>: Recipient address rejected: Mailbox full. See https://libsisimai.org/en/reason/#mailboxfull
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0726
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:35:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <mailboxfull@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:35:33 +0900
30
+ Message-Id: <66681a65.e0726.29ed079c@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0728
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:37:34 +0900
5
+ X-Original-To: <mailererror@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0728@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:37:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <mailererror@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 554 5.3.0 <mailererror@libsisimai.net>: Recipient address rejected: Mailer error. See https://libsisimai.org/en/reason/#mailererror
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0726
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:37:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <mailererror@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:37:33 +0900
30
+ Message-Id: <66681add.e0726.72bc0b4c@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e0728
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:39:33 +0900
5
+ X-Original-To: <mesgtoobig@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e0728@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:39:33 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <mesgtoobig@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 554 5.3.4 <mesgtoobig@libsisimai.net>: Recipient address rejected: Message too big for system. See https://libsisimai.org/en/reason/#mesgtoobig
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0726
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:39:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <mesgtoobig@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:39:33 +0900
30
+ Message-Id: <66681b55.e0726.3201b1e4@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e072a
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:43:34 +0900
5
+ X-Original-To: <norelaying@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e072a@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:43:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <norelaying@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.7.0 <norelaying@libsisimai.net>: Recipient address rejected: No relaying. See https://libsisimai.org/en/reason/#norelaying
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0728
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:43:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <norelaying@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:43:33 +0900
30
+ Message-Id: <66681c45.e0728.e963bd9@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e072a
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:45:33 +0900
5
+ X-Original-To: <notaccept@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e072a@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:45:33 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <notaccept@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 521 5.3.2 <notaccept@libsisimai.net>: Recipient address rejected: System not accepting network messages. See https://libsisimai.org/en/reason/#notaccept
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0728
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:45:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <notaccept@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:45:33 +0900
30
+ Message-Id: <66681cbd.e0728.29f828c0@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e072a
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:47:34 +0900
5
+ X-Original-To: <onhold@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e072a@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:47:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <onhold@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.0.0 <onhold@libsisimai.net>: Recipient address rejected: On hold. See https://libsisimai.org/en/reason/#onhold
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0728
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:47:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <onhold@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:47:33 +0900
30
+ Message-Id: <66681d35.e0728.180b873f@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e072a
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:49:34 +0900
5
+ X-Original-To: <policyviolation@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e072a@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:49:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <policyviolation@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.7.0 <policyviolation@libsisimai.net>: Recipient address rejected: Policy violation. See https://libsisimai.org/en/reason/#policyviolation
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e0728
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:49:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <policyviolation@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:49:33 +0900
30
+ Message-Id: <66681dad.e0728.6b657381@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e072c
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:53:34 +0900
5
+ X-Original-To: <securityerror@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e072c@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:53:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <securityerror@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 551 5.7.1 <securityerror@libsisimai.net>: Recipient address rejected: Delivery not authorized. See https://libsisimai.org/en/reason/#securityerror
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e072a
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:53:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <securityerror@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:53:33 +0900
30
+ Message-Id: <66681e9d.e072a.9c343d6@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,32 @@
1
+ Received: from MAILER-DAEMON
2
+ id e072c
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:55:34 +0900
5
+ X-Original-To: <spamdetected@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e072c@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:55:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <spamdetected@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 550 5.7.0 <spamdetected@libsisimai.net>: Recipient address rejected: Spam detected. See https://libsisimai.org/en/reason/#spamdetected
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e072a
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:55:33 +0900
26
+ Subject: Nyaan 01
27
+ To: <spamdetected@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:55:33 +0900
30
+ Message-Id: <66681f15.e072a.19d854c3@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
@@ -0,0 +1,33 @@
1
+ Received: from MAILER-DAEMON
2
+ id e072e
3
+ by df.example.jp (DragonFly Mail Agent v0.13);
4
+ Tue, 11 Jun 2024 18:59:34 +0900
5
+ X-Original-To: <suspend@libsisimai.net>
6
+ From: MAILER-DAEMON <>
7
+ To: kijitora@df.example.jp
8
+ Subject: Mail delivery failed
9
+ Message-Id: <e072e@df.example.jp>
10
+ Date: Tue, 11 Jun 2024 18:59:34 +0900
11
+
12
+ This is the DragonFly Mail Agent v0.13 at df.example.jp.
13
+
14
+ There was an error delivering your mail to <suspend@libsisimai.net>.
15
+
16
+ mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
17
+ 525 5.7.13 <suspend@libsisimai.net>: Recipient address rejected: User account disabled. See https://libsisimai.org/en/reason/#suspend
18
+
19
+ Message headers follow.
20
+
21
+ Received: from root (uid 0)
22
+ (envelope-from kijitora@df.example.jp)
23
+ id e072c
24
+ by df.example.jp (DragonFly Mail Agent v0.13);
25
+ Tue, 11 Jun 2024 18:59:34 +0900
26
+ Subject: Nyaan 01
27
+ To: <suspend@libsisimai.net>
28
+ User-Agent: mail (GNU Mailutils 3.14)
29
+ Date: Tue, 11 Jun 2024 18:59:34 +0900
30
+ Message-Id: <66682006.e072c.184b1dc1@df.example.jp>
31
+ From: <kijitora@df.example.jp>
32
+
33
+