sisimai 5.1.0-java → 5.2.1-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/rake-test.yml +1 -1
- data/ChangeLog.md +112 -0
- data/Makefile +4 -2
- data/README-JA.md +28 -21
- data/README.md +30 -23
- data/lib/sisimai/arf.rb +121 -210
- data/lib/sisimai/fact.rb +208 -158
- data/lib/sisimai/lda.rb +98 -0
- data/lib/sisimai/lhost/activehunter.rb +1 -1
- data/lib/sisimai/lhost/amazonses.rb +185 -301
- data/lib/sisimai/lhost/apachejames.rb +48 -51
- data/lib/sisimai/lhost/biglobe.rb +1 -2
- data/lib/sisimai/lhost/courier.rb +10 -8
- data/lib/sisimai/lhost/domino.rb +25 -25
- data/lib/sisimai/lhost/dragonfly.rb +3 -4
- data/lib/sisimai/lhost/einsundeins.rb +3 -4
- data/lib/sisimai/lhost/exchange2003.rb +6 -8
- data/lib/sisimai/lhost/exchange2007.rb +111 -101
- data/lib/sisimai/lhost/exim.rb +232 -242
- data/lib/sisimai/lhost/ezweb.rb +43 -51
- data/lib/sisimai/lhost/fml.rb +2 -3
- data/lib/sisimai/lhost/gmail.rb +32 -28
- data/lib/sisimai/lhost/gmx.rb +4 -16
- data/lib/sisimai/lhost/googlegroups.rb +9 -8
- data/lib/sisimai/lhost/googleworkspace.rb +94 -0
- data/lib/sisimai/lhost/imailserver.rb +7 -16
- data/lib/sisimai/lhost/interscanmss.rb +1 -1
- data/lib/sisimai/lhost/kddi.rb +3 -4
- data/lib/sisimai/lhost/mailfoundry.rb +2 -5
- data/lib/sisimai/lhost/mailmarshalsmtp.rb +1 -2
- data/lib/sisimai/lhost/messagingserver.rb +14 -13
- data/lib/sisimai/lhost/mfilter.rb +4 -3
- data/lib/sisimai/lhost/notes.rb +2 -4
- data/lib/sisimai/lhost/opensmtpd.rb +2 -2
- data/lib/sisimai/lhost/postfix.rb +25 -27
- data/lib/sisimai/lhost/qmail.rb +130 -106
- data/lib/sisimai/lhost/sendmail.rb +19 -18
- data/lib/sisimai/lhost/v5sendmail.rb +88 -60
- data/lib/sisimai/lhost/verizon.rb +2 -2
- data/lib/sisimai/lhost/x1.rb +1 -1
- data/lib/sisimai/lhost/x2.rb +1 -2
- data/lib/sisimai/lhost/x3.rb +2 -2
- data/lib/sisimai/lhost/x6.rb +1 -1
- data/lib/sisimai/lhost/zoho.rb +2 -2
- data/lib/sisimai/lhost.rb +18 -21
- data/lib/sisimai/message.rb +93 -146
- data/lib/sisimai/order.rb +21 -77
- data/lib/sisimai/reason/authfailure.rb +1 -4
- data/lib/sisimai/reason/badreputation.rb +2 -2
- data/lib/sisimai/reason/blocked.rb +7 -10
- data/lib/sisimai/reason/contenterror.rb +7 -1
- data/lib/sisimai/reason/exceedlimit.rb +1 -4
- data/lib/sisimai/reason/failedstarttls.rb +42 -0
- data/lib/sisimai/reason/filtered.rb +5 -4
- data/lib/sisimai/reason/hasmoved.rb +1 -2
- data/lib/sisimai/reason/hostunknown.rb +3 -3
- data/lib/sisimai/reason/mailboxfull.rb +2 -4
- data/lib/sisimai/reason/mailererror.rb +1 -2
- data/lib/sisimai/reason/mesgtoobig.rb +2 -4
- data/lib/sisimai/reason/norelaying.rb +2 -3
- data/lib/sisimai/reason/notaccept.rb +2 -3
- data/lib/sisimai/reason/notcompliantrfc.rb +10 -4
- data/lib/sisimai/reason/rejected.rb +1 -1
- data/lib/sisimai/reason/requireptr.rb +2 -2
- data/lib/sisimai/reason/securityerror.rb +1 -3
- data/lib/sisimai/reason/spamdetected.rb +6 -8
- data/lib/sisimai/reason/speeding.rb +1 -2
- data/lib/sisimai/reason/suppressed.rb +36 -0
- data/lib/sisimai/reason/suspend.rb +1 -3
- data/lib/sisimai/reason/systemerror.rb +5 -0
- data/lib/sisimai/reason/toomanyconn.rb +1 -2
- data/lib/sisimai/reason/userunknown.rb +1 -1
- data/lib/sisimai/reason/virusdetected.rb +5 -6
- data/lib/sisimai/reason.rb +77 -73
- data/lib/sisimai/rfc1123.rb +152 -0
- data/lib/sisimai/rfc1894.rb +102 -62
- data/lib/sisimai/rfc2045.rb +2 -1
- data/lib/sisimai/rfc3464/thirdparty.rb +102 -0
- data/lib/sisimai/rfc3464.rb +222 -343
- data/lib/sisimai/rfc3834.rb +1 -1
- data/lib/sisimai/rfc5322.rb +7 -17
- data/lib/sisimai/rfc791.rb +69 -0
- data/lib/sisimai/rhost/aol.rb +36 -0
- data/lib/sisimai/rhost/apple.rb +5 -2
- data/lib/sisimai/rhost/cloudflare.rb +31 -0
- data/lib/sisimai/rhost/cox.rb +3 -2
- data/lib/sisimai/rhost/facebook.rb +100 -0
- data/lib/sisimai/rhost/franceptt.rb +3 -2
- data/lib/sisimai/rhost/godaddy.rb +3 -2
- data/lib/sisimai/rhost/google.rb +19 -17
- data/lib/sisimai/rhost/gsuite.rb +42 -0
- data/lib/sisimai/rhost/iua.rb +3 -3
- data/lib/sisimai/rhost/kddi.rb +3 -2
- data/lib/sisimai/rhost/messagelabs.rb +37 -0
- data/lib/sisimai/rhost/microsoft.rb +56 -49
- data/lib/sisimai/rhost/mimecast.rb +29 -27
- data/lib/sisimai/rhost/nttdocomo.rb +12 -5
- data/lib/sisimai/rhost/outlook.rb +36 -0
- data/lib/sisimai/rhost/spectrum.rb +3 -2
- data/lib/sisimai/rhost/tencent.rb +3 -2
- data/lib/sisimai/rhost/yahooinc.rb +4 -3
- data/lib/sisimai/rhost.rb +70 -39
- data/lib/sisimai/smtp/command.rb +31 -21
- data/lib/sisimai/smtp/failure.rb +103 -0
- data/lib/sisimai/smtp/reply.rb +29 -25
- data/lib/sisimai/smtp/status.rb +37 -20
- data/lib/sisimai/smtp/transcript.rb +15 -15
- data/lib/sisimai/string.rb +0 -46
- data/lib/sisimai/version.rb +1 -1
- data/set-of-emails/maildir/bsd/lhost-postfix-30.eml +81 -81
- data/set-of-emails/maildir/bsd/{lhost-aol-03.eml → rhost-aol-03.eml} +1264 -1264
- data/set-of-emails/maildir/bsd/{lhost-aol-04.eml → rhost-aol-04.eml} +1260 -1260
- data/set-of-emails/maildir/bsd/{lhost-aol-05.eml → rhost-aol-05.eml} +105 -105
- data/set-of-emails/maildir/bsd/{lhost-aol-06.eml → rhost-aol-06.eml} +105 -105
- data/set-of-emails/maildir/bsd/rhost-cloudflare-01.eml +75 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-01.eml +189 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-02.eml +180 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-03.eml +251 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-04.eml +211 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-05.eml +226 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-06.eml +257 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-07.eml +289 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-08.eml +231 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-09.eml +231 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-10.eml +254 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-11.eml +228 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-12.eml +271 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-13.eml +261 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-14.eml +273 -0
- data/set-of-emails/maildir/bsd/rhost-gsuite-15.eml +229 -0
- data/set-of-emails/maildir/bsd/{lhost-messagelabs-01.eml → rhost-messagelabs-01.eml} +93 -93
- data/set-of-emails/maildir/bsd/rhost-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rhost-outlook-09.eml +56 -0
- data/set-of-emails/maildir/tmp/arf-22.eml +49 -0
- data/set-of-emails/maildir/tmp/arf-23.eml +49 -0
- data/set-of-emails/maildir/tmp/arf-24.eml +50 -0
- data/set-of-emails/maildir/tmp/lhost-exim-07.eml +28 -0
- metadata +75 -56
- data/lib/sisimai/lhost/amavis.rb +0 -163
- data/lib/sisimai/lhost/amazonworkmail.rb +0 -127
- data/lib/sisimai/lhost/aol.rb +0 -125
- data/lib/sisimai/lhost/barracuda.rb +0 -92
- data/lib/sisimai/lhost/bigfoot.rb +0 -125
- data/lib/sisimai/lhost/facebook.rb +0 -188
- data/lib/sisimai/lhost/gsuite.rb +0 -194
- data/lib/sisimai/lhost/mailru.rb +0 -214
- data/lib/sisimai/lhost/mcafee.rb +0 -109
- data/lib/sisimai/lhost/messagelabs.rb +0 -120
- data/lib/sisimai/lhost/mxlogic.rb +0 -198
- data/lib/sisimai/lhost/office365.rb +0 -252
- data/lib/sisimai/lhost/outlook.rb +0 -129
- data/lib/sisimai/lhost/powermta.rb +0 -118
- data/lib/sisimai/lhost/receivingses.rb +0 -126
- data/lib/sisimai/lhost/sendgrid.rb +0 -150
- data/lib/sisimai/lhost/surfcontrol.rb +0 -105
- data/lib/sisimai/lhost/x4.rb +0 -269
- data/lib/sisimai/lhost/x5.rb +0 -112
- data/lib/sisimai/lhost/yahoo.rb +0 -102
- data/lib/sisimai/lhost/yandex.rb +0 -118
- data/lib/sisimai/mda.rb +0 -121
- data/lib/sisimai/smtp/error.rb +0 -119
- /data/set-of-emails/maildir/bsd/{lhost-googlegroups-15.eml → lhost-googleworkspace-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-x4-08.eml → lhost-x2-06.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-01.eml → rfc3464-51.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-03.eml → rfc3464-52.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-04.eml → rfc3464-53.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-05.eml → rfc3464-54.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-06.eml → rfc3464-55.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-07.eml → rfc3464-56.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-08.eml → rfc3464-57.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-09.eml → rfc3464-58.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-10.eml → rfc3464-59.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-11.eml → rfc3464-60.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-12.eml → rfc3464-61.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-13.eml → rfc3464-62.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-14.eml → rfc3464-63.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-15.eml → rfc3464-64.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-gsuite-02.eml → rfc3464-65.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-aol-01.eml → rhost-aol-01.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-aol-02.eml → rhost-aol-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-facebook-03.eml → rhost-facebook-03.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-facebook-04.eml → rhost-facebook-04.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-messagelabs-02.eml → rhost-messagelabs-02.eml} +0 -0
- /data/set-of-emails/maildir/bsd/{lhost-messagelabs-03.eml → rhost-messagelabs-03.eml} +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-37.eml +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-38.eml +0 -0
- /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-39.eml +0 -0
@@ -0,0 +1,70 @@
|
|
1
|
+
Received: from CAT000-NEKO222.hotmail.com (cat000-neko222.hotmail.com [198.51.100.22])
|
2
|
+
(using TLSv1 with cipher AES256-SHA (256/256 bits))
|
3
|
+
(No client certificate requested)
|
4
|
+
by neko1.example.co.jp (Postfix) with ESMTPS id FFFFFFFF000
|
5
|
+
for <sironeko@example.co.jp>; Thu, 29 Apr 2015 23:34:45 +0000 (UTC)
|
6
|
+
Received: from CAT004-NEKO200.hotmail.com ([198.51.100.12]) by CAT004-NEKO222.hotmail.com
|
7
|
+
over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
8
|
+
Thu, 29 Apr 2015 23:34:45 -0800
|
9
|
+
From: postmaster@hotmail.com
|
10
|
+
To: sironeko@example.co.jp
|
11
|
+
Date: Thu, 29 Apr 2015 23:34:45 -0800
|
12
|
+
MIME-Version: 1.0
|
13
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
14
|
+
boundary="0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22"
|
15
|
+
Message-ID: <0000000000000000f@BAY004-NEKO22.hotmail.com>
|
16
|
+
Subject: Delivery Status Notification (Failure)
|
17
|
+
X-OriginalArrivalTime: 29 Apr 2015 23:34:45.0000 (UTC) FILETIME=[00000000:00000000]
|
18
|
+
|
19
|
+
This is a MIME-formatted message.
|
20
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
21
|
+
|
22
|
+
--0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22
|
23
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
24
|
+
|
25
|
+
This is an automatically generated Delivery Status Notification.
|
26
|
+
|
27
|
+
Delivery to the following recipients failed.
|
28
|
+
|
29
|
+
kijitora@hotmail.example.com
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
--0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22
|
35
|
+
Content-Type: message/delivery-status
|
36
|
+
|
37
|
+
Reporting-MTA: dns;BAY004-NEKO22.hotmail.com
|
38
|
+
Received-From-MTA: dns;CAT004-NEKO22.hotmail.com
|
39
|
+
Arrival-Date: Thu, 29 Apr 2015 23:34:45 -0800
|
40
|
+
|
41
|
+
Final-Recipient: rfc822;kijitora@hotmail.example.com
|
42
|
+
Action: failed
|
43
|
+
Status: 5.5.0
|
44
|
+
Diagnostic-Code: smtp;550 Requested action not taken: mailbox unavailable (-0000000022:2222:-0000000022)
|
45
|
+
|
46
|
+
--0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22
|
47
|
+
Content-Type: message/rfc822
|
48
|
+
|
49
|
+
Received: from CAT004-NEKO0002.hotmail.com ([192.0.2.89]) by BAY004-NEKO22.hotmail.com
|
50
|
+
over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
51
|
+
Thu, 29 Apr 2015 23:34:45 -0800
|
52
|
+
Received: from CAT004-NYAAN22.hotmail.com ([192.0.2.66]) by CAT004-NEKO0R02.hotmail.com
|
53
|
+
over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
|
54
|
+
Thu, 29 Apr 2015 23:34:45 -0800
|
55
|
+
Received: from r091.example.org (neko.example.co.jp [203.0.113.31])
|
56
|
+
(Authenticated sender: sironeko-nyaan)
|
57
|
+
by r1.example.co.jp (Postfix) with ESMTPA id EEEEEEEE000
|
58
|
+
for <kijitora@hotmail.com>; Thu, 29 Apr 2015 23:34:45 +0000 (UTC)
|
59
|
+
From: "Neko, Nyaan" <sironeko@example.co.jp>
|
60
|
+
To: Kijitora <kijitora@hotmail.com>
|
61
|
+
Subject: Nyaan
|
62
|
+
Date: Thu, 29 Apr 2015 23:34:45 -0000
|
63
|
+
Message-ID: <000000222220000000000000fffffff@example.co.jp>
|
64
|
+
MIME-Version: 1.0
|
65
|
+
Content-Type: text/plain
|
66
|
+
Return-Path: sironeko@example.co.jp
|
67
|
+
|
68
|
+
Nyaan
|
69
|
+
|
70
|
+
--0022FFAB0000=_0000FFFF002222EE00220022220000?NEKO22.22--
|
@@ -0,0 +1,56 @@
|
|
1
|
+
Received: from blu2-omc4-s22.blu2.hotmail.com ([192.0.2.225]) by bay2-pamc4-f2.Bay2.hotmail.com with Microsoft SMTPSVC(6.0.3300.4400);
|
2
|
+
Thu, 29 Apr 2012 23:34:45 -0700
|
3
|
+
From: postmaster@mail.hotmail.com
|
4
|
+
To: sironeko@example.com
|
5
|
+
Date: Thu, 29 Apr 2012 23:34:45 -0700
|
6
|
+
MIME-Version: 1.0
|
7
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
8
|
+
boundary="0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats"
|
9
|
+
Message-ID: <4073f71390419fb17139ca00cf1100b1@blu2-omc4-s22.blu2.hotmail.com>
|
10
|
+
Subject: Delivery Status Notification (Failure)
|
11
|
+
Return-Path: <>
|
12
|
+
|
13
|
+
This is a MIME-formatted message.
|
14
|
+
Portions of this message may be unreadable without a MIME-capable mail program.
|
15
|
+
|
16
|
+
--0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats
|
17
|
+
Content-Type: text/plain; charset=unicode-1-1-utf-7
|
18
|
+
|
19
|
+
This is an automatically generated Delivery Status Notification.
|
20
|
+
|
21
|
+
Delivery to the following recipients failed.
|
22
|
+
|
23
|
+
kijitora@example.org
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
--0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats
|
29
|
+
Content-Type: message/delivery-status
|
30
|
+
|
31
|
+
Reporting-MTA: dns;blu2-omc4-s22.blu2.hotmail.com
|
32
|
+
Received-From-MTA: dns;BLU222-CR22
|
33
|
+
Arrival-Date: Thu, 29 Apr 2012 23:34:45 -0700
|
34
|
+
|
35
|
+
Final-Recipient: rfc822;kijitora@example.org
|
36
|
+
Action: failed
|
37
|
+
Status: 5.5.0
|
38
|
+
Diagnostic-Code: smtp;550 domain [example.com] mismatches client ip 192.0.2.225.
|
39
|
+
|
40
|
+
--0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats
|
41
|
+
Content-Type: message/rfc822
|
42
|
+
|
43
|
+
Received: from BLU222-CR22 ([203.0.113.2]) by blu2-omc4-s22.blu2.hotmail.com with Microsoft SMTPSVC(6.0.3300.4400);
|
44
|
+
Thu, 29 Apr 2012 23:34:45 -0700
|
45
|
+
Message-ID: <BLU222-CR22FC17FE7748FA3ABB087581BC0@phx.gbl>
|
46
|
+
Return-Path: sironeko@example.com
|
47
|
+
From: "Neko, Nyaan" <sironeko@example.com>
|
48
|
+
To: "Kijitorajanus" <kijitora@example.org>
|
49
|
+
Subject: Nyaan
|
50
|
+
Date: Thu, 29 Apr 2012 23:34:45 +0800
|
51
|
+
MIME-Version: 1.0
|
52
|
+
Content-Type: text/plain;
|
53
|
+
|
54
|
+
Nyaan
|
55
|
+
|
56
|
+
--0022FEEEFF=____0202222FFFEE0AEF?neko.nyaan.cats--
|
@@ -0,0 +1,49 @@
|
|
1
|
+
Delivered-To: abuse-report@example.com
|
2
|
+
Received: by 192.0.2.25 with SMTP id fffffffff000000;
|
3
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
4
|
+
X-Received: by 192.0.2.2 with SMTP id eeeeeeeee0000001.222.1500000000000;
|
5
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
6
|
+
Return-Path: <neko@example.org>
|
7
|
+
Received: from CAT000-NEKO2.example.com (cat000-neko2.example.com. [203.0.113.25])
|
8
|
+
by mx.example.com with ESMTPS id fffffffff11111.222.2016.04.29.23.34.45
|
9
|
+
for <abuse-report@example.com>
|
10
|
+
(version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
|
11
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
12
|
+
Received: from CAT000-NEKO-022.r.example.org ([198.51.100.1]) by CAT004-R.example.com
|
13
|
+
with Microsoft SMTPSVC(7.5.7601.22751); Thu, 29 Apr 2016 23:34:45 +0000
|
14
|
+
Date: Thu, 29 Apr 2016 23:34:45 +0000
|
15
|
+
From: staff@hotmail.com
|
16
|
+
Subject: complaint about message from 192.0.2.222
|
17
|
+
To: abuse-report@example.com
|
18
|
+
MIME-Version: 1.0
|
19
|
+
Content-Type: multipart/mixed; boundary="F0000EEE2-0000-2111-AAB0-000000000000"
|
20
|
+
Message-ID: <CAT0-NNE-000000000000000022@CAT0-RRR.example.org>
|
21
|
+
X-OriginalArrivalTime: 29 Apr 2016 23:34:45.0000 (UTC) FILETIME=[FFFFFFFF:00000000]
|
22
|
+
Return-Path: neko@example.org
|
23
|
+
|
24
|
+
--F0000EEE2-0000-2111-AAB0-000000000000
|
25
|
+
Content-Type: message/rfc822
|
26
|
+
Content-Disposition: inline
|
27
|
+
|
28
|
+
X-HmXmrOriginalRecipient: kijitora@example.com
|
29
|
+
X-Reporter-IP: 192.0.2.22
|
30
|
+
Authentication-Results: example.com; spf=pass (sender IP is 203.0.113.245; identity alignment result is pass and alignment mode is relaxed) smtp.mailfrom=sironeko@example.com; dkim=pass (identity alignment result is pass and alignment mode is relaxed) header.d=example.com; x-hmca=pass header.id=sironeko@example.com
|
31
|
+
X-SID-PRA: sironeko@example.com
|
32
|
+
X-AUTH-Result: PASS
|
33
|
+
X-SID-Result: PASS
|
34
|
+
Received: from smtp.example.com ([203.0.113.245]) by R7038-AA.example.com over TLS
|
35
|
+
secured channel with Microsoft SMTPSVC(7.5.7601.23008);
|
36
|
+
Thu, 29 Apr 2016 23:34:45 +0000
|
37
|
+
Date: Thu, 29 Apr 2016 23:34:45 +0200
|
38
|
+
To: kijitora@example.com
|
39
|
+
From: Neko <sironeko@example.com>
|
40
|
+
Subject: Nyaan
|
41
|
+
MIME-Version: 1.0
|
42
|
+
Content-Transfer-Encoding: 8bit
|
43
|
+
Content-Type: text/plain; charset="utf-8"
|
44
|
+
Message-ID: <0000000000fffffffff0000000000000@example.com>
|
45
|
+
X-OriginalArrivalTime: 29 Apr 2016 23:34:45.0000 (UTC) FILETIME=[00000000:FFFFFFFF]
|
46
|
+
|
47
|
+
Nyaan
|
48
|
+
|
49
|
+
--F0000EEE2-0000-2111-AAB0-000000000000--
|
@@ -0,0 +1,49 @@
|
|
1
|
+
Delivered-To: abuse-report@example.com
|
2
|
+
Received: by 192.0.2.25 with SMTP id fffffffff000000;
|
3
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
4
|
+
X-Received: by 192.0.2.2 with SMTP id eeeeeeeee0000001.222.1500000000000;
|
5
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
6
|
+
Return-Path: <neko@example.org>
|
7
|
+
Received: from CAT000-NEKO2.example.com (cat000-neko2.example.com. [203.0.113.25])
|
8
|
+
by mx.example.com with ESMTPS id fffffffff11111.222.2016.04.29.23.34.45
|
9
|
+
for <abuse-report@example.com>
|
10
|
+
(version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
|
11
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
12
|
+
Received: from CAT000-NEKO-022.r.example.org ([198.51.100.1]) by CAT004-R.example.com
|
13
|
+
with Microsoft SMTPSVC(7.5.7601.22751); Thu, 29 Apr 2016 23:34:45 +0000
|
14
|
+
Date: Thu, 29 Apr 2016 23:34:45 +0000
|
15
|
+
From: <staff@hotmail.com>
|
16
|
+
Subject: complaint about message from 192.0.2.222
|
17
|
+
To: abuse-report@example.com
|
18
|
+
MIME-Version: 1.0
|
19
|
+
Content-Type: multipart/mixed; boundary="F0000EEE2-0000-2111-AAB0-000000000000"
|
20
|
+
Message-ID: <CAT0-NNE-000000000000000022@CAT0-RRR.example.org>
|
21
|
+
X-OriginalArrivalTime: 29 Apr 2016 23:34:45.0000 (UTC) FILETIME=[FFFFFFFF:00000000]
|
22
|
+
Return-Path: neko@example.org
|
23
|
+
|
24
|
+
--F0000EEE2-0000-2111-AAB0-000000000000
|
25
|
+
Content-Type: message/rfc822
|
26
|
+
Content-Disposition: inline
|
27
|
+
|
28
|
+
X-HmXmrOriginalRecipient: kijitora@example.com
|
29
|
+
X-Reporter-IP: 192.0.2.22
|
30
|
+
Authentication-Results: example.com; spf=pass (sender IP is 203.0.113.245; identity alignment result is pass and alignment mode is relaxed) smtp.mailfrom=sironeko@example.com; dkim=pass (identity alignment result is pass and alignment mode is relaxed) header.d=example.com; x-hmca=pass header.id=sironeko@example.com
|
31
|
+
X-SID-PRA: sironeko@example.com
|
32
|
+
X-AUTH-Result: PASS
|
33
|
+
X-SID-Result: PASS
|
34
|
+
Received: from smtp.example.com ([203.0.113.245]) by R7038-AA.example.com over TLS
|
35
|
+
secured channel with Microsoft SMTPSVC(7.5.7601.23008);
|
36
|
+
Thu, 29 Apr 2016 23:34:45 +0000
|
37
|
+
Date: Thu, 29 Apr 2016 23:34:45 +0200
|
38
|
+
To: kijitora@example.com
|
39
|
+
From: Neko <sironeko@example.com>
|
40
|
+
Subject: Nyaan
|
41
|
+
MIME-Version: 1.0
|
42
|
+
Content-Transfer-Encoding: 8bit
|
43
|
+
Content-Type: text/plain; charset="utf-8"
|
44
|
+
Message-ID: <0000000000fffffffff0000000000000@example.com>
|
45
|
+
X-OriginalArrivalTime: 29 Apr 2016 23:34:45.0000 (UTC) FILETIME=[00000000:FFFFFFFF]
|
46
|
+
|
47
|
+
Nyaan
|
48
|
+
|
49
|
+
--F0000EEE2-0000-2111-AAB0-000000000000--
|
@@ -0,0 +1,50 @@
|
|
1
|
+
Delivered-To: abuse-report@example.com
|
2
|
+
Received: by 192.0.2.25 with SMTP id fffffffff000000;
|
3
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
4
|
+
X-Received: by 192.0.2.2 with SMTP id eeeeeeeee0000001.222.1500000000000;
|
5
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
6
|
+
Return-Path: <neko@example.org>
|
7
|
+
Received: from CAT000-NEKO2.example.com (cat000-neko2.example.com. [203.0.113.25])
|
8
|
+
by mx.example.com with ESMTPS id fffffffff11111.222.2016.04.29.23.34.45
|
9
|
+
for <abuse-report@example.com>
|
10
|
+
(version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
|
11
|
+
Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
|
12
|
+
Received: from CAT000-NEKO-022.r.example.org ([198.51.100.1]) by CAT004-R.example.com
|
13
|
+
with Microsoft SMTPSVC(7.5.7601.22751); Thu, 29 Apr 2016 23:34:45 +0000
|
14
|
+
Date: Thu, 29 Apr 2016 23:34:45 +0000
|
15
|
+
From: staff@hotmail.com
|
16
|
+
Subject: complaint about message from 192.0.2.222
|
17
|
+
To: abuse-report@example.com
|
18
|
+
MIME-Version: 1.0
|
19
|
+
Content-Type: multipart/mixed; boundary="F0000EEE2-0000-2111-AAB0-000000000000"
|
20
|
+
Message-ID: <CAT0-NNE-000000000000000022@CAT0-RRR.example.org>
|
21
|
+
X-OriginalArrivalTime: 29 Apr 2016 23:34:45.0000 (UTC) FILETIME=[FFFFFFFF:00000000]
|
22
|
+
Return-Path: neko@example.org
|
23
|
+
|
24
|
+
--F0000EEE2-0000-2111-AAB0-000000000000
|
25
|
+
Content-Type: message/rfc822
|
26
|
+
Content-Disposition: inline
|
27
|
+
|
28
|
+
X-HmXmrOriginalRecipient: kijitora@example.com
|
29
|
+
X-Reporter-IP: 192.0.2.22
|
30
|
+
Authentication-Results: example.com; spf=pass (sender IP is 203.0.113.245; identity alignment result is pass and alignment mode is relaxed) smtp.mailfrom=sironeko@example.com; dkim=pass (identity alignment result is pass and alignment mode is relaxed) header.d=example.com; x-hmca=pass header.id=sironeko@example.com
|
31
|
+
X-SID-PRA: sironeko@example.com
|
32
|
+
X-AUTH-Result: PASS
|
33
|
+
X-SID-Result: PASS
|
34
|
+
Received: from smtp.example.com ([203.0.113.245]) by R7038-AA.example.com over TLS
|
35
|
+
secured channel with Microsoft SMTPSVC(7.5.7601.23008);
|
36
|
+
Thu, 29 Apr 2016 23:34:45 +0000
|
37
|
+
Date: Thu, 29 Apr 2016 23:34:45 +0200
|
38
|
+
To: kijitora@example.com
|
39
|
+
From: name-part-looks-like-an-email-address@kyoto-japan
|
40
|
+
<sironeko@example.com>
|
41
|
+
Subject: Nyaan
|
42
|
+
MIME-Version: 1.0
|
43
|
+
Content-Transfer-Encoding: 8bit
|
44
|
+
Content-Type: text/plain; charset="utf-8"
|
45
|
+
Message-ID: <0000000000fffffffff0000000000000@example.com>
|
46
|
+
X-OriginalArrivalTime: 29 Apr 2016 23:34:45.0000 (UTC) FILETIME=[00000000:FFFFFFFF]
|
47
|
+
|
48
|
+
Nyaan
|
49
|
+
|
50
|
+
--F0000EEE2-0000-2111-AAB0-000000000000--
|
@@ -0,0 +1,28 @@
|
|
1
|
+
From MAILER-DAEMON Mon 1 Jan 2015 00:00:00 +0900
|
2
|
+
Return-Path: <>
|
3
|
+
X-Original-To: shironeko@example.ad.jp
|
4
|
+
Delivered-To: shironeko@example.ad.jp
|
5
|
+
Received: from shiba@example.com
|
6
|
+
by xxxxxx (Postfix) with ESMTPS id xxxxxx
|
7
|
+
for shironeko@example.ad.jp; Mon, 1 Jan 2015 00:00:00 +0900 (JST)
|
8
|
+
Received: from Debian-exim by xxxxxx with local
|
9
|
+
id xxxxxxx; Mon, 1 Jan 2015 00:00:00 +0900
|
10
|
+
X-Failed-Recipients: shiba@example.com
|
11
|
+
Reply-To: shiba@example.com
|
12
|
+
Auto-Submitted: auto-replied
|
13
|
+
From: Mail Delivery System <MAILER-DAEMON@example.jp>
|
14
|
+
To: shironeko@example.ad.jp
|
15
|
+
Subject: Mail delivery failed: returning message to sender
|
16
|
+
Date: Mon, 1 Jan 2015 00:00:00 +0900
|
17
|
+
|
18
|
+
This message was created automatically by mail delivery software.
|
19
|
+
|
20
|
+
A message that you sent could not be delivered to one or more of its
|
21
|
+
recipients. This is a permanent error. The following address(es) failed:
|
22
|
+
|
23
|
+
save to xxxx
|
24
|
+
generated by xxxx
|
25
|
+
mailbox is full: retry timeout exceeded
|
26
|
+
|
27
|
+
------ This is a copy of the message, including all the headers. ------
|
28
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sisimai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.1
|
4
|
+
version: 5.2.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- azumakuniyuki
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -106,15 +106,11 @@ files:
|
|
106
106
|
- lib/sisimai/fact.rb
|
107
107
|
- lib/sisimai/fact/json.rb
|
108
108
|
- lib/sisimai/fact/yaml.rb
|
109
|
+
- lib/sisimai/lda.rb
|
109
110
|
- lib/sisimai/lhost.rb
|
110
111
|
- lib/sisimai/lhost/activehunter.rb
|
111
|
-
- lib/sisimai/lhost/amavis.rb
|
112
112
|
- lib/sisimai/lhost/amazonses.rb
|
113
|
-
- lib/sisimai/lhost/amazonworkmail.rb
|
114
|
-
- lib/sisimai/lhost/aol.rb
|
115
113
|
- lib/sisimai/lhost/apachejames.rb
|
116
|
-
- lib/sisimai/lhost/barracuda.rb
|
117
|
-
- lib/sisimai/lhost/bigfoot.rb
|
118
114
|
- lib/sisimai/lhost/biglobe.rb
|
119
115
|
- lib/sisimai/lhost/courier.rb
|
120
116
|
- lib/sisimai/lhost/domino.rb
|
@@ -124,51 +120,35 @@ files:
|
|
124
120
|
- lib/sisimai/lhost/exchange2007.rb
|
125
121
|
- lib/sisimai/lhost/exim.rb
|
126
122
|
- lib/sisimai/lhost/ezweb.rb
|
127
|
-
- lib/sisimai/lhost/facebook.rb
|
128
123
|
- lib/sisimai/lhost/fml.rb
|
129
124
|
- lib/sisimai/lhost/gmail.rb
|
130
125
|
- lib/sisimai/lhost/gmx.rb
|
131
126
|
- lib/sisimai/lhost/googlegroups.rb
|
132
|
-
- lib/sisimai/lhost/
|
127
|
+
- lib/sisimai/lhost/googleworkspace.rb
|
133
128
|
- lib/sisimai/lhost/imailserver.rb
|
134
129
|
- lib/sisimai/lhost/interscanmss.rb
|
135
130
|
- lib/sisimai/lhost/kddi.rb
|
136
131
|
- lib/sisimai/lhost/mailfoundry.rb
|
137
132
|
- lib/sisimai/lhost/mailmarshalsmtp.rb
|
138
|
-
- lib/sisimai/lhost/mailru.rb
|
139
|
-
- lib/sisimai/lhost/mcafee.rb
|
140
|
-
- lib/sisimai/lhost/messagelabs.rb
|
141
133
|
- lib/sisimai/lhost/messagingserver.rb
|
142
134
|
- lib/sisimai/lhost/mfilter.rb
|
143
|
-
- lib/sisimai/lhost/mxlogic.rb
|
144
135
|
- lib/sisimai/lhost/notes.rb
|
145
|
-
- lib/sisimai/lhost/office365.rb
|
146
136
|
- lib/sisimai/lhost/opensmtpd.rb
|
147
|
-
- lib/sisimai/lhost/outlook.rb
|
148
137
|
- lib/sisimai/lhost/postfix.rb
|
149
|
-
- lib/sisimai/lhost/powermta.rb
|
150
138
|
- lib/sisimai/lhost/qmail.rb
|
151
|
-
- lib/sisimai/lhost/receivingses.rb
|
152
|
-
- lib/sisimai/lhost/sendgrid.rb
|
153
139
|
- lib/sisimai/lhost/sendmail.rb
|
154
|
-
- lib/sisimai/lhost/surfcontrol.rb
|
155
140
|
- lib/sisimai/lhost/v5sendmail.rb
|
156
141
|
- lib/sisimai/lhost/verizon.rb
|
157
142
|
- lib/sisimai/lhost/x1.rb
|
158
143
|
- lib/sisimai/lhost/x2.rb
|
159
144
|
- lib/sisimai/lhost/x3.rb
|
160
|
-
- lib/sisimai/lhost/x4.rb
|
161
|
-
- lib/sisimai/lhost/x5.rb
|
162
145
|
- lib/sisimai/lhost/x6.rb
|
163
|
-
- lib/sisimai/lhost/yahoo.rb
|
164
|
-
- lib/sisimai/lhost/yandex.rb
|
165
146
|
- lib/sisimai/lhost/zoho.rb
|
166
147
|
- lib/sisimai/mail.rb
|
167
148
|
- lib/sisimai/mail/maildir.rb
|
168
149
|
- lib/sisimai/mail/mbox.rb
|
169
150
|
- lib/sisimai/mail/memory.rb
|
170
151
|
- lib/sisimai/mail/stdin.rb
|
171
|
-
- lib/sisimai/mda.rb
|
172
152
|
- lib/sisimai/message.rb
|
173
153
|
- lib/sisimai/order.rb
|
174
154
|
- lib/sisimai/reason.rb
|
@@ -179,6 +159,7 @@ files:
|
|
179
159
|
- lib/sisimai/reason/delivered.rb
|
180
160
|
- lib/sisimai/reason/exceedlimit.rb
|
181
161
|
- lib/sisimai/reason/expired.rb
|
162
|
+
- lib/sisimai/reason/failedstarttls.rb
|
182
163
|
- lib/sisimai/reason/feedback.rb
|
183
164
|
- lib/sisimai/reason/filtered.rb
|
184
165
|
- lib/sisimai/reason/hasmoved.rb
|
@@ -197,6 +178,7 @@ files:
|
|
197
178
|
- lib/sisimai/reason/securityerror.rb
|
198
179
|
- lib/sisimai/reason/spamdetected.rb
|
199
180
|
- lib/sisimai/reason/speeding.rb
|
181
|
+
- lib/sisimai/reason/suppressed.rb
|
200
182
|
- lib/sisimai/reason/suspend.rb
|
201
183
|
- lib/sisimai/reason/syntaxerror.rb
|
202
184
|
- lib/sisimai/reason/systemerror.rb
|
@@ -206,29 +188,38 @@ files:
|
|
206
188
|
- lib/sisimai/reason/userunknown.rb
|
207
189
|
- lib/sisimai/reason/vacation.rb
|
208
190
|
- lib/sisimai/reason/virusdetected.rb
|
191
|
+
- lib/sisimai/rfc1123.rb
|
209
192
|
- lib/sisimai/rfc1894.rb
|
210
193
|
- lib/sisimai/rfc2045.rb
|
211
194
|
- lib/sisimai/rfc3464.rb
|
195
|
+
- lib/sisimai/rfc3464/thirdparty.rb
|
212
196
|
- lib/sisimai/rfc3834.rb
|
213
197
|
- lib/sisimai/rfc5322.rb
|
214
198
|
- lib/sisimai/rfc5965.rb
|
199
|
+
- lib/sisimai/rfc791.rb
|
215
200
|
- lib/sisimai/rhost.rb
|
201
|
+
- lib/sisimai/rhost/aol.rb
|
216
202
|
- lib/sisimai/rhost/apple.rb
|
203
|
+
- lib/sisimai/rhost/cloudflare.rb
|
217
204
|
- lib/sisimai/rhost/cox.rb
|
205
|
+
- lib/sisimai/rhost/facebook.rb
|
218
206
|
- lib/sisimai/rhost/franceptt.rb
|
219
207
|
- lib/sisimai/rhost/godaddy.rb
|
220
208
|
- lib/sisimai/rhost/google.rb
|
209
|
+
- lib/sisimai/rhost/gsuite.rb
|
221
210
|
- lib/sisimai/rhost/iua.rb
|
222
211
|
- lib/sisimai/rhost/kddi.rb
|
212
|
+
- lib/sisimai/rhost/messagelabs.rb
|
223
213
|
- lib/sisimai/rhost/microsoft.rb
|
224
214
|
- lib/sisimai/rhost/mimecast.rb
|
225
215
|
- lib/sisimai/rhost/nttdocomo.rb
|
216
|
+
- lib/sisimai/rhost/outlook.rb
|
226
217
|
- lib/sisimai/rhost/spectrum.rb
|
227
218
|
- lib/sisimai/rhost/tencent.rb
|
228
219
|
- lib/sisimai/rhost/yahooinc.rb
|
229
220
|
- lib/sisimai/smtp.rb
|
230
221
|
- lib/sisimai/smtp/command.rb
|
231
|
-
- lib/sisimai/smtp/
|
222
|
+
- lib/sisimai/smtp/failure.rb
|
232
223
|
- lib/sisimai/smtp/reply.rb
|
233
224
|
- lib/sisimai/smtp/status.rb
|
234
225
|
- lib/sisimai/smtp/transcript.rb
|
@@ -287,12 +278,6 @@ files:
|
|
287
278
|
- set-of-emails/maildir/bsd/lhost-amazonworkmail-05.eml
|
288
279
|
- set-of-emails/maildir/bsd/lhost-amazonworkmail-07.eml
|
289
280
|
- set-of-emails/maildir/bsd/lhost-amazonworkmail-08.eml
|
290
|
-
- set-of-emails/maildir/bsd/lhost-aol-01.eml
|
291
|
-
- set-of-emails/maildir/bsd/lhost-aol-02.eml
|
292
|
-
- set-of-emails/maildir/bsd/lhost-aol-03.eml
|
293
|
-
- set-of-emails/maildir/bsd/lhost-aol-04.eml
|
294
|
-
- set-of-emails/maildir/bsd/lhost-aol-05.eml
|
295
|
-
- set-of-emails/maildir/bsd/lhost-aol-06.eml
|
296
281
|
- set-of-emails/maildir/bsd/lhost-apachejames-01.eml
|
297
282
|
- set-of-emails/maildir/bsd/lhost-barracuda-01.eml
|
298
283
|
- set-of-emails/maildir/bsd/lhost-barracuda-02.eml
|
@@ -398,8 +383,6 @@ files:
|
|
398
383
|
- set-of-emails/maildir/bsd/lhost-ezweb-05.eml
|
399
384
|
- set-of-emails/maildir/bsd/lhost-ezweb-07.eml
|
400
385
|
- set-of-emails/maildir/bsd/lhost-ezweb-08.eml
|
401
|
-
- set-of-emails/maildir/bsd/lhost-facebook-03.eml
|
402
|
-
- set-of-emails/maildir/bsd/lhost-facebook-04.eml
|
403
386
|
- set-of-emails/maildir/bsd/lhost-fml-02.eml
|
404
387
|
- set-of-emails/maildir/bsd/lhost-fml-03.eml
|
405
388
|
- set-of-emails/maildir/bsd/lhost-gmail-01.eml
|
@@ -435,22 +418,7 @@ files:
|
|
435
418
|
- set-of-emails/maildir/bsd/lhost-googlegroups-12.eml
|
436
419
|
- set-of-emails/maildir/bsd/lhost-googlegroups-13.eml
|
437
420
|
- set-of-emails/maildir/bsd/lhost-googlegroups-14.eml
|
438
|
-
- set-of-emails/maildir/bsd/lhost-
|
439
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-01.eml
|
440
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-02.eml
|
441
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-03.eml
|
442
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-04.eml
|
443
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-05.eml
|
444
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-06.eml
|
445
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-07.eml
|
446
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-08.eml
|
447
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-09.eml
|
448
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-10.eml
|
449
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-11.eml
|
450
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-12.eml
|
451
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-13.eml
|
452
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-14.eml
|
453
|
-
- set-of-emails/maildir/bsd/lhost-gsuite-15.eml
|
421
|
+
- set-of-emails/maildir/bsd/lhost-googleworkspace-01.eml
|
454
422
|
- set-of-emails/maildir/bsd/lhost-imailserver-01.eml
|
455
423
|
- set-of-emails/maildir/bsd/lhost-imailserver-02.eml
|
456
424
|
- set-of-emails/maildir/bsd/lhost-imailserver-03.eml
|
@@ -480,9 +448,6 @@ files:
|
|
480
448
|
- set-of-emails/maildir/bsd/lhost-mcafee-03.eml
|
481
449
|
- set-of-emails/maildir/bsd/lhost-mcafee-04.eml
|
482
450
|
- set-of-emails/maildir/bsd/lhost-mcafee-05.eml
|
483
|
-
- set-of-emails/maildir/bsd/lhost-messagelabs-01.eml
|
484
|
-
- set-of-emails/maildir/bsd/lhost-messagelabs-02.eml
|
485
|
-
- set-of-emails/maildir/bsd/lhost-messagelabs-03.eml
|
486
451
|
- set-of-emails/maildir/bsd/lhost-messagingserver-01.eml
|
487
452
|
- set-of-emails/maildir/bsd/lhost-messagingserver-02.eml
|
488
453
|
- set-of-emails/maildir/bsd/lhost-messagingserver-03.eml
|
@@ -724,13 +689,13 @@ files:
|
|
724
689
|
- set-of-emails/maildir/bsd/lhost-x2-03.eml
|
725
690
|
- set-of-emails/maildir/bsd/lhost-x2-04.eml
|
726
691
|
- set-of-emails/maildir/bsd/lhost-x2-05.eml
|
692
|
+
- set-of-emails/maildir/bsd/lhost-x2-06.eml
|
727
693
|
- set-of-emails/maildir/bsd/lhost-x3-01.eml
|
728
694
|
- set-of-emails/maildir/bsd/lhost-x3-02.eml
|
729
695
|
- set-of-emails/maildir/bsd/lhost-x3-03.eml
|
730
696
|
- set-of-emails/maildir/bsd/lhost-x3-05.eml
|
731
697
|
- set-of-emails/maildir/bsd/lhost-x3-06.eml
|
732
698
|
- set-of-emails/maildir/bsd/lhost-x4-01.eml
|
733
|
-
- set-of-emails/maildir/bsd/lhost-x4-08.eml
|
734
699
|
- set-of-emails/maildir/bsd/lhost-x5-01.eml
|
735
700
|
- set-of-emails/maildir/bsd/lhost-x6-01.eml
|
736
701
|
- set-of-emails/maildir/bsd/lhost-x6-02.eml
|
@@ -770,22 +735,43 @@ files:
|
|
770
735
|
- set-of-emails/maildir/bsd/rfc3464-34.eml
|
771
736
|
- set-of-emails/maildir/bsd/rfc3464-35.eml
|
772
737
|
- set-of-emails/maildir/bsd/rfc3464-36.eml
|
773
|
-
- set-of-emails/maildir/bsd/rfc3464-37.eml
|
774
|
-
- set-of-emails/maildir/bsd/rfc3464-38.eml
|
775
|
-
- set-of-emails/maildir/bsd/rfc3464-39.eml
|
776
738
|
- set-of-emails/maildir/bsd/rfc3464-40.eml
|
777
739
|
- set-of-emails/maildir/bsd/rfc3464-42.eml
|
778
740
|
- set-of-emails/maildir/bsd/rfc3464-43.eml
|
741
|
+
- set-of-emails/maildir/bsd/rfc3464-51.eml
|
742
|
+
- set-of-emails/maildir/bsd/rfc3464-52.eml
|
743
|
+
- set-of-emails/maildir/bsd/rfc3464-53.eml
|
744
|
+
- set-of-emails/maildir/bsd/rfc3464-54.eml
|
745
|
+
- set-of-emails/maildir/bsd/rfc3464-55.eml
|
746
|
+
- set-of-emails/maildir/bsd/rfc3464-56.eml
|
747
|
+
- set-of-emails/maildir/bsd/rfc3464-57.eml
|
748
|
+
- set-of-emails/maildir/bsd/rfc3464-58.eml
|
749
|
+
- set-of-emails/maildir/bsd/rfc3464-59.eml
|
750
|
+
- set-of-emails/maildir/bsd/rfc3464-60.eml
|
751
|
+
- set-of-emails/maildir/bsd/rfc3464-61.eml
|
752
|
+
- set-of-emails/maildir/bsd/rfc3464-62.eml
|
753
|
+
- set-of-emails/maildir/bsd/rfc3464-63.eml
|
754
|
+
- set-of-emails/maildir/bsd/rfc3464-64.eml
|
755
|
+
- set-of-emails/maildir/bsd/rfc3464-65.eml
|
779
756
|
- set-of-emails/maildir/bsd/rfc3834-01.eml
|
780
757
|
- set-of-emails/maildir/bsd/rfc3834-02.eml
|
781
758
|
- set-of-emails/maildir/bsd/rfc3834-03.eml
|
782
759
|
- set-of-emails/maildir/bsd/rfc3834-04.eml
|
783
760
|
- set-of-emails/maildir/bsd/rfc3834-05.eml
|
761
|
+
- set-of-emails/maildir/bsd/rhost-aol-01.eml
|
762
|
+
- set-of-emails/maildir/bsd/rhost-aol-02.eml
|
763
|
+
- set-of-emails/maildir/bsd/rhost-aol-03.eml
|
764
|
+
- set-of-emails/maildir/bsd/rhost-aol-04.eml
|
765
|
+
- set-of-emails/maildir/bsd/rhost-aol-05.eml
|
766
|
+
- set-of-emails/maildir/bsd/rhost-aol-06.eml
|
784
767
|
- set-of-emails/maildir/bsd/rhost-apple-01.eml
|
785
768
|
- set-of-emails/maildir/bsd/rhost-apple-02.eml
|
786
769
|
- set-of-emails/maildir/bsd/rhost-apple-03.eml
|
787
770
|
- set-of-emails/maildir/bsd/rhost-apple-04.eml
|
771
|
+
- set-of-emails/maildir/bsd/rhost-cloudflare-01.eml
|
788
772
|
- set-of-emails/maildir/bsd/rhost-cox-01.eml
|
773
|
+
- set-of-emails/maildir/bsd/rhost-facebook-03.eml
|
774
|
+
- set-of-emails/maildir/bsd/rhost-facebook-04.eml
|
789
775
|
- set-of-emails/maildir/bsd/rhost-franceptt-01.eml
|
790
776
|
- set-of-emails/maildir/bsd/rhost-franceptt-02.eml
|
791
777
|
- set-of-emails/maildir/bsd/rhost-franceptt-03.eml
|
@@ -807,9 +793,27 @@ files:
|
|
807
793
|
- set-of-emails/maildir/bsd/rhost-google-06.eml
|
808
794
|
- set-of-emails/maildir/bsd/rhost-google-07.eml
|
809
795
|
- set-of-emails/maildir/bsd/rhost-google-08.eml
|
796
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-01.eml
|
797
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-02.eml
|
798
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-03.eml
|
799
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-04.eml
|
800
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-05.eml
|
801
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-06.eml
|
802
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-07.eml
|
803
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-08.eml
|
804
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-09.eml
|
805
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-10.eml
|
806
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-11.eml
|
807
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-12.eml
|
808
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-13.eml
|
809
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-14.eml
|
810
|
+
- set-of-emails/maildir/bsd/rhost-gsuite-15.eml
|
810
811
|
- set-of-emails/maildir/bsd/rhost-iua-01.eml
|
811
812
|
- set-of-emails/maildir/bsd/rhost-kddi-01.eml
|
812
813
|
- set-of-emails/maildir/bsd/rhost-kddi-02.eml
|
814
|
+
- set-of-emails/maildir/bsd/rhost-messagelabs-01.eml
|
815
|
+
- set-of-emails/maildir/bsd/rhost-messagelabs-02.eml
|
816
|
+
- set-of-emails/maildir/bsd/rhost-messagelabs-03.eml
|
813
817
|
- set-of-emails/maildir/bsd/rhost-microsoft-01.eml
|
814
818
|
- set-of-emails/maildir/bsd/rhost-microsoft-02.eml
|
815
819
|
- set-of-emails/maildir/bsd/rhost-microsoft-03.eml
|
@@ -820,6 +824,14 @@ files:
|
|
820
824
|
- set-of-emails/maildir/bsd/rhost-nttdocomo-01.eml
|
821
825
|
- set-of-emails/maildir/bsd/rhost-nttdocomo-02.eml
|
822
826
|
- set-of-emails/maildir/bsd/rhost-nttdocomo-03.eml
|
827
|
+
- set-of-emails/maildir/bsd/rhost-outlook-01.eml
|
828
|
+
- set-of-emails/maildir/bsd/rhost-outlook-02.eml
|
829
|
+
- set-of-emails/maildir/bsd/rhost-outlook-03.eml
|
830
|
+
- set-of-emails/maildir/bsd/rhost-outlook-04.eml
|
831
|
+
- set-of-emails/maildir/bsd/rhost-outlook-06.eml
|
832
|
+
- set-of-emails/maildir/bsd/rhost-outlook-07.eml
|
833
|
+
- set-of-emails/maildir/bsd/rhost-outlook-08.eml
|
834
|
+
- set-of-emails/maildir/bsd/rhost-outlook-09.eml
|
823
835
|
- set-of-emails/maildir/bsd/rhost-spectrum-01.eml
|
824
836
|
- set-of-emails/maildir/bsd/rhost-tencent-01.eml
|
825
837
|
- set-of-emails/maildir/bsd/rhost-tencent-02.eml
|
@@ -994,6 +1006,13 @@ files:
|
|
994
1006
|
- set-of-emails/maildir/mac/rhost-tencentqq-01.eml
|
995
1007
|
- set-of-emails/maildir/not/is-not-bounce-01.eml
|
996
1008
|
- set-of-emails/maildir/not/is-not-bounce-02.eml
|
1009
|
+
- set-of-emails/maildir/tmp/arf-22.eml
|
1010
|
+
- set-of-emails/maildir/tmp/arf-23.eml
|
1011
|
+
- set-of-emails/maildir/tmp/arf-24.eml
|
1012
|
+
- set-of-emails/maildir/tmp/lhost-exim-07.eml
|
1013
|
+
- set-of-emails/maildir/tmp/rfc3464-37.eml
|
1014
|
+
- set-of-emails/maildir/tmp/rfc3464-38.eml
|
1015
|
+
- set-of-emails/maildir/tmp/rfc3464-39.eml
|
997
1016
|
- set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml
|
998
1017
|
- set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml
|
999
1018
|
- set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml
|