sisimai 5.0.3-java → 5.2.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/codecovio.yml +3 -1
- data/.github/workflows/rake-test.yml +7 -3
- data/ChangeLog.md +136 -0
- data/Makefile +4 -2
- data/README-JA.md +32 -22
- data/README.md +31 -21
- data/lib/sisimai/arf.rb +124 -213
- data/lib/sisimai/fact/json.rb +2 -2
- data/lib/sisimai/fact/yaml.rb +2 -2
- data/lib/sisimai/fact.rb +208 -173
- data/lib/sisimai/lda.rb +98 -0
- data/lib/sisimai/lhost/activehunter.rb +5 -4
- data/lib/sisimai/lhost/amazonses.rb +189 -305
- data/lib/sisimai/lhost/apachejames.rb +52 -55
- data/lib/sisimai/lhost/biglobe.rb +5 -6
- data/lib/sisimai/lhost/courier.rb +14 -12
- data/lib/sisimai/lhost/domino.rb +29 -29
- data/lib/sisimai/lhost/dragonfly.rb +113 -0
- data/lib/sisimai/lhost/einsundeins.rb +7 -8
- data/lib/sisimai/lhost/exchange2003.rb +10 -11
- data/lib/sisimai/lhost/exchange2007.rb +115 -104
- data/lib/sisimai/lhost/exim.rb +236 -246
- data/lib/sisimai/lhost/ezweb.rb +47 -55
- data/lib/sisimai/lhost/fml.rb +6 -7
- data/lib/sisimai/lhost/gmail.rb +36 -32
- data/lib/sisimai/lhost/gmx.rb +8 -20
- data/lib/sisimai/lhost/googlegroups.rb +13 -12
- data/lib/sisimai/lhost/googleworkspace.rb +94 -0
- data/lib/sisimai/lhost/imailserver.rb +11 -19
- data/lib/sisimai/lhost/interscanmss.rb +6 -5
- data/lib/sisimai/lhost/kddi.rb +7 -8
- data/lib/sisimai/lhost/mailfoundry.rb +6 -9
- data/lib/sisimai/lhost/mailmarshalsmtp.rb +6 -6
- data/lib/sisimai/lhost/messagingserver.rb +19 -17
- data/lib/sisimai/lhost/mfilter.rb +8 -7
- data/lib/sisimai/lhost/notes.rb +6 -8
- data/lib/sisimai/lhost/opensmtpd.rb +11 -9
- data/lib/sisimai/lhost/postfix.rb +29 -31
- data/lib/sisimai/lhost/qmail.rb +136 -112
- data/lib/sisimai/lhost/sendmail.rb +23 -22
- data/lib/sisimai/lhost/v5sendmail.rb +93 -64
- data/lib/sisimai/lhost/verizon.rb +6 -6
- data/lib/sisimai/lhost/x1.rb +4 -4
- data/lib/sisimai/lhost/x2.rb +4 -5
- data/lib/sisimai/lhost/x3.rb +5 -5
- data/lib/sisimai/lhost/x6.rb +4 -4
- data/lib/sisimai/lhost/zoho.rb +6 -6
- data/lib/sisimai/lhost.rb +21 -24
- data/lib/sisimai/mail/maildir.rb +1 -1
- data/lib/sisimai/mail/stdin.rb +1 -1
- data/lib/sisimai/message.rb +100 -153
- data/lib/sisimai/order.rb +22 -77
- data/lib/sisimai/reason/authfailure.rb +1 -4
- data/lib/sisimai/reason/badreputation.rb +3 -3
- data/lib/sisimai/reason/blocked.rb +7 -10
- data/lib/sisimai/reason/contenterror.rb +7 -1
- data/lib/sisimai/reason/exceedlimit.rb +1 -4
- data/lib/sisimai/reason/failedstarttls.rb +42 -0
- data/lib/sisimai/reason/filtered.rb +5 -4
- data/lib/sisimai/reason/hasmoved.rb +1 -2
- data/lib/sisimai/reason/hostunknown.rb +3 -3
- data/lib/sisimai/reason/mailboxfull.rb +2 -4
- data/lib/sisimai/reason/mailererror.rb +1 -2
- data/lib/sisimai/reason/mesgtoobig.rb +2 -4
- data/lib/sisimai/reason/norelaying.rb +3 -3
- data/lib/sisimai/reason/notaccept.rb +2 -3
- data/lib/sisimai/reason/notcompliantrfc.rb +10 -4
- data/lib/sisimai/reason/rejected.rb +2 -1
- data/lib/sisimai/reason/requireptr.rb +2 -2
- data/lib/sisimai/reason/securityerror.rb +1 -3
- data/lib/sisimai/reason/spamdetected.rb +6 -8
- data/lib/sisimai/reason/speeding.rb +1 -2
- data/lib/sisimai/reason/suppressed.rb +36 -0
- data/lib/sisimai/reason/suspend.rb +1 -3
- data/lib/sisimai/reason/systemerror.rb +5 -0
- data/lib/sisimai/reason/toomanyconn.rb +1 -2
- data/lib/sisimai/reason/userunknown.rb +1 -1
- data/lib/sisimai/reason/virusdetected.rb +5 -6
- data/lib/sisimai/reason.rb +82 -78
- data/lib/sisimai/rfc1123.rb +152 -0
- data/lib/sisimai/rfc1894.rb +102 -62
- data/lib/sisimai/rfc2045.rb +2 -1
- data/lib/sisimai/rfc3464/thirdparty.rb +102 -0
- data/lib/sisimai/rfc3464.rb +224 -345
- data/lib/sisimai/rfc3834.rb +3 -3
- data/lib/sisimai/rfc5322.rb +7 -17
- data/lib/sisimai/rfc791.rb +69 -0
- data/lib/sisimai/rhost/aol.rb +36 -0
- data/lib/sisimai/rhost/apple.rb +95 -0
- data/lib/sisimai/rhost/cox.rb +84 -34
- data/lib/sisimai/rhost/facebook.rb +100 -0
- data/lib/sisimai/rhost/franceptt.rb +87 -83
- data/lib/sisimai/rhost/godaddy.rb +208 -45
- data/lib/sisimai/rhost/google.rb +22 -22
- data/lib/sisimai/rhost/gsuite.rb +42 -0
- data/lib/sisimai/rhost/iua.rb +5 -5
- data/lib/sisimai/rhost/kddi.rb +9 -7
- data/lib/sisimai/rhost/messagelabs.rb +37 -0
- data/lib/sisimai/rhost/microsoft.rb +60 -54
- data/lib/sisimai/rhost/mimecast.rb +44 -31
- data/lib/sisimai/rhost/nttdocomo.rb +5 -4
- data/lib/sisimai/rhost/outlook.rb +36 -0
- data/lib/sisimai/rhost/spectrum.rb +102 -41
- data/lib/sisimai/rhost/tencent.rb +48 -26
- data/lib/sisimai/rhost/yahooinc.rb +111 -0
- data/lib/sisimai/rhost.rb +65 -42
- data/lib/sisimai/smtp/command.rb +31 -21
- data/lib/sisimai/smtp/failure.rb +103 -0
- data/lib/sisimai/smtp/reply.rb +29 -24
- data/lib/sisimai/smtp/status.rb +36 -19
- data/lib/sisimai/smtp/transcript.rb +18 -18
- data/lib/sisimai/string.rb +0 -46
- data/lib/sisimai/version.rb +1 -1
- data/lib/sisimai.rb +0 -6
- data/set-of-emails/maildir/bsd/lhost-dragonfly-01.eml +36 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-02.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-03.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-04.eml +31 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-05.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-06.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-07.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-08.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-09.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-10.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-11.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-12.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-13.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-14.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-15.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-16.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-17.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-18.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-19.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-20.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-21.eml +33 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-22.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-23.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-24.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-25.eml +33 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-26.eml +33 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-27.eml +47 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-28.eml +47 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-29.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-dragonfly-30.eml +32 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-10.eml +58 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-11.eml +58 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-12.eml +62 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-13.eml +62 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-14.eml +58 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-15.eml +63 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-16.eml +62 -0
- data/set-of-emails/maildir/bsd/lhost-opensmtpd-17.eml +63 -0
- data/set-of-emails/maildir/bsd/lhost-postfix-30.eml +81 -81
- data/set-of-emails/maildir/bsd/lhost-qmail-11.eml +29 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-12.eml +29 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-13.eml +29 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-14.eml +34 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-15.eml +30 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-16.eml +31 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-17.eml +38 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-18.eml +31 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-19.eml +31 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-20.eml +46 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-21.eml +41 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-22.eml +42 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-23.eml +43 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-24.eml +43 -0
- data/set-of-emails/maildir/bsd/lhost-qmail-25.eml +54 -0
- data/set-of-emails/maildir/bsd/{lhost-aol-03.eml → rhost-aol-03.eml} +1264 -1264
- data/set-of-emails/maildir/bsd/{lhost-aol-04.eml → rhost-aol-04.eml} +1260 -1260
- data/set-of-emails/maildir/bsd/{lhost-aol-05.eml → rhost-aol-05.eml} +105 -105
- data/set-of-emails/maildir/bsd/{lhost-aol-06.eml → rhost-aol-06.eml} +105 -105
- data/set-of-emails/maildir/bsd/rhost-apple-01.eml +79 -0
- data/set-of-emails/maildir/bsd/rhost-apple-02.eml +81 -0
- data/set-of-emails/maildir/bsd/rhost-apple-03.eml +75 -0
- data/set-of-emails/maildir/bsd/rhost-apple-04.eml +74 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-01.eml +189 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-02.eml +180 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-03.eml +251 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-04.eml +211 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-05.eml +226 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-06.eml +257 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-07.eml +289 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-08.eml +231 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-09.eml +231 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-10.eml +254 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-11.eml +228 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-12.eml +271 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-13.eml +261 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-14.eml +273 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-15.eml +229 -0
- data/set-of-emails/maildir/bsd/{lhost-messagelabs-01.eml → rhost-messagelabs-01.eml} +93 -93
- data/set-of-emails/maildir/bsd/rhost-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-09.eml +56 -0
- data/set-of-emails/maildir/bsd/rhost-yahooinc-01.eml +80 -0
- data/set-of-emails/maildir/bsd/rhost-yahooinc-02.eml +83 -0
- data/set-of-emails/maildir/bsd/rhost-yahooinc-03.eml +125 -0
- data/set-of-emails/maildir/tmp/arf-22.eml +49 -0
- data/set-of-emails/maildir/tmp/arf-23.eml +49 -0
- data/set-of-emails/maildir/tmp/arf-24.eml +50 -0
- data/set-of-emails/maildir/tmp/lhost-exim-07.eml +28 -0
- metadata +136 -56
- data/lib/sisimai/lhost/amavis.rb +0 -163
- data/lib/sisimai/lhost/amazonworkmail.rb +0 -127
- data/lib/sisimai/lhost/aol.rb +0 -125
- data/lib/sisimai/lhost/barracuda.rb +0 -92
- data/lib/sisimai/lhost/bigfoot.rb +0 -125
- data/lib/sisimai/lhost/facebook.rb +0 -188
- data/lib/sisimai/lhost/gsuite.rb +0 -194
- data/lib/sisimai/lhost/mailru.rb +0 -214
- data/lib/sisimai/lhost/mcafee.rb +0 -109
- data/lib/sisimai/lhost/messagelabs.rb +0 -119
- data/lib/sisimai/lhost/mxlogic.rb +0 -198
- data/lib/sisimai/lhost/office365.rb +0 -252
- data/lib/sisimai/lhost/outlook.rb +0 -129
- data/lib/sisimai/lhost/powermta.rb +0 -118
- data/lib/sisimai/lhost/receivingses.rb +0 -126
- data/lib/sisimai/lhost/sendgrid.rb +0 -150
- data/lib/sisimai/lhost/surfcontrol.rb +0 -105
- data/lib/sisimai/lhost/x4.rb +0 -269
- data/lib/sisimai/lhost/x5.rb +0 -112
- data/lib/sisimai/lhost/yahoo.rb +0 -102
- data/lib/sisimai/lhost/yandex.rb +0 -118
- data/lib/sisimai/mda.rb +0 -121
- data/lib/sisimai/smtp/error.rb +0 -119
- /data/set-of-emails/maildir/bsd/{lhost-googlegroups-15.eml → lhost-googleworkspace-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-x4-08.eml → lhost-x2-06.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-01.eml → rfc3464-51.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-03.eml → rfc3464-52.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-04.eml → rfc3464-53.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-05.eml → rfc3464-54.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-06.eml → rfc3464-55.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-07.eml → rfc3464-56.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-08.eml → rfc3464-57.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-09.eml → rfc3464-58.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-10.eml → rfc3464-59.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-11.eml → rfc3464-60.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-12.eml → rfc3464-61.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-13.eml → rfc3464-62.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-14.eml → rfc3464-63.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-15.eml → rfc3464-64.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-02.eml → rfc3464-65.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-aol-01.eml → rhost-aol-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-aol-02.eml → rhost-aol-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-facebook-03.eml → rhost-facebook-03.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-facebook-04.eml → rhost-facebook-04.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-messagelabs-02.eml → rhost-messagelabs-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-messagelabs-03.eml → rhost-messagelabs-03.eml} +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-37.eml +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-38.eml +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-39.eml +0 -0
@@ -0,0 +1,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
|
+
|
@@ -0,0 +1,32 @@
|
|
1
|
+
Received: from MAILER-DAEMON
|
2
|
+
id e072e
|
3
|
+
by df.example.jp (DragonFly Mail Agent v0.13);
|
4
|
+
Tue, 11 Jun 2024 19:01:34 +0900
|
5
|
+
X-Original-To: <syntaxerror@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 19:01: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 <syntaxerror@libsisimai.net>.
|
15
|
+
|
16
|
+
mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
|
17
|
+
501 5.1.3 <syntaxerror@libsisimai.net>: Recipient address rejected: Bad destination mailbox address syntax. See https://libsisimai.org/en/reason/#syntaxerror
|
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 19:01:34 +0900
|
26
|
+
Subject: Nyaan 01
|
27
|
+
To: <syntaxerror@libsisimai.net>
|
28
|
+
User-Agent: mail (GNU Mailutils 3.14)
|
29
|
+
Date: Tue, 11 Jun 2024 19:01:34 +0900
|
30
|
+
Message-Id: <6668207e.e072c.4296cb8d@df.example.jp>
|
31
|
+
From: <kijitora@df.example.jp>
|
32
|
+
|
@@ -0,0 +1,32 @@
|
|
1
|
+
Received: from MAILER-DAEMON
|
2
|
+
id e072e
|
3
|
+
by df.example.jp (DragonFly Mail Agent v0.13);
|
4
|
+
Tue, 11 Jun 2024 19:03:34 +0900
|
5
|
+
X-Original-To: <systemerror@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 19:03: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 <systemerror@libsisimai.net>.
|
15
|
+
|
16
|
+
mail-inbound.libsisimai.net [192.0.2.25] did not like our RCPT TO:
|
17
|
+
554 5.3.0 <systemerror@libsisimai.net>: Recipient address rejected: Internal system error. See https://libsisimai.org/en/reason/#systemerror
|
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 19:03:34 +0900
|
26
|
+
Subject: Nyaan 01
|
27
|
+
To: <systemerror@libsisimai.net>
|
28
|
+
User-Agent: mail (GNU Mailutils 3.14)
|
29
|
+
Date: Tue, 11 Jun 2024 19:03:34 +0900
|
30
|
+
Message-Id: <666820f6.e072c.44bd3f67@df.example.jp>
|
31
|
+
From: <kijitora@df.example.jp>
|
32
|
+
|