sisimai 5.5.0-java → 5.7.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/rake-test.yml +0 -4
- data/ChangeLog.md +53 -0
- data/LICENSE +1 -1
- data/README-JA.md +26 -20
- data/README.md +30 -25
- data/lib/sisimai/address.rb +8 -31
- data/lib/sisimai/arf.rb +3 -5
- data/lib/sisimai/fact.rb +26 -36
- data/lib/sisimai/lhost/activehunter.rb +0 -2
- data/lib/sisimai/lhost/amazonses.rb +7 -9
- data/lib/sisimai/lhost/apachejames.rb +0 -1
- data/lib/sisimai/lhost/biglobe.rb +0 -16
- data/lib/sisimai/lhost/courier.rb +5 -4
- data/lib/sisimai/lhost/deutschetelekom.rb +120 -0
- data/lib/sisimai/lhost/domino.rb +0 -3
- data/lib/sisimai/lhost/dragonfly.rb +0 -27
- data/lib/sisimai/lhost/einsundeins.rb +1 -10
- data/lib/sisimai/lhost/exchange2003.rb +4 -4
- data/lib/sisimai/lhost/exchange2007.rb +5 -6
- data/lib/sisimai/lhost/exim.rb +35 -85
- data/lib/sisimai/lhost/ezweb.rb +12 -49
- data/lib/sisimai/lhost/fml.rb +4 -29
- data/lib/sisimai/lhost/gmail.rb +0 -23
- data/lib/sisimai/lhost/gmx.rb +7 -24
- data/lib/sisimai/lhost/googlegroups.rb +3 -3
- data/lib/sisimai/lhost/googleworkspace.rb +0 -4
- data/lib/sisimai/lhost/imailserver.rb +3 -9
- data/lib/sisimai/lhost/kddi.rb +6 -20
- data/lib/sisimai/lhost/mailfoundry.rb +0 -2
- data/lib/sisimai/lhost/mailmarshal.rb +1 -3
- data/lib/sisimai/lhost/messagingserver.rb +4 -15
- data/lib/sisimai/lhost/mfilter.rb +0 -1
- data/lib/sisimai/lhost/mimecast.rb +0 -1
- data/lib/sisimai/lhost/notes.rb +1 -2
- data/lib/sisimai/lhost/opensmtpd.rb +0 -40
- data/lib/sisimai/lhost/postfix.rb +10 -11
- data/lib/sisimai/lhost/qmail.rb +14 -81
- data/lib/sisimai/lhost/sendmail.rb +4 -4
- data/lib/sisimai/lhost/trendmicro.rb +3 -3
- data/lib/sisimai/lhost/v5sendmail.rb +0 -1
- data/lib/sisimai/lhost/verizon.rb +1 -2
- data/lib/sisimai/lhost/x1.rb +1 -2
- data/lib/sisimai/lhost/x2.rb +0 -2
- data/lib/sisimai/lhost/x3.rb +4 -9
- data/lib/sisimai/lhost/x6.rb +0 -1
- data/lib/sisimai/lhost/zoho.rb +0 -12
- data/lib/sisimai/lhost.rb +38 -19
- data/lib/sisimai/message.rb +3 -1
- data/lib/sisimai/order.rb +4 -1
- data/lib/sisimai/reason/authfailure.rb +9 -13
- data/lib/sisimai/reason/badreputation.rb +7 -7
- data/lib/sisimai/reason/blocked.rb +57 -83
- data/lib/sisimai/reason/contenterror.rb +16 -8
- data/lib/sisimai/reason/{mesgtoobig.rb → emailtoolarge.rb} +22 -25
- data/lib/sisimai/reason/expired.rb +27 -23
- data/lib/sisimai/reason/filtered.rb +13 -17
- data/lib/sisimai/reason/hasmoved.rb +2 -1
- data/lib/sisimai/reason/hostunknown.rb +25 -19
- data/lib/sisimai/reason/mailboxfull.rb +28 -49
- data/lib/sisimai/reason/networkerror.rb +28 -16
- data/lib/sisimai/reason/norelaying.rb +21 -20
- data/lib/sisimai/reason/notaccept.rb +13 -8
- data/lib/sisimai/reason/notcompliantrfc.rb +6 -9
- data/lib/sisimai/reason/policyviolation.rb +17 -26
- data/lib/sisimai/reason/ratelimited.rb +62 -0
- data/lib/sisimai/reason/rejected.rb +51 -59
- data/lib/sisimai/reason/requireptr.rb +13 -25
- data/lib/sisimai/reason/securityerror.rb +14 -19
- data/lib/sisimai/reason/spamdetected.rb +51 -101
- data/lib/sisimai/reason/suspend.rb +30 -24
- data/lib/sisimai/reason/syntaxerror.rb +1 -8
- data/lib/sisimai/reason/systemerror.rb +37 -23
- data/lib/sisimai/reason/systemfull.rb +1 -1
- data/lib/sisimai/reason/userunknown.rb +81 -112
- data/lib/sisimai/reason/virusdetected.rb +6 -8
- data/lib/sisimai/reason.rb +15 -15
- data/lib/sisimai/rfc1123.rb +1 -1
- data/lib/sisimai/rfc1894.rb +7 -6
- data/lib/sisimai/rfc2045.rb +2 -2
- data/lib/sisimai/rfc3464/thirdparty.rb +1 -1
- data/lib/sisimai/rfc3464.rb +10 -14
- data/lib/sisimai/rfc3834.rb +3 -4
- data/lib/sisimai/rfc791.rb +3 -38
- data/lib/sisimai/rhost/apple.rb +5 -5
- data/lib/sisimai/rhost/cloudflare.rb +2 -0
- data/lib/sisimai/rhost/cox.rb +22 -20
- data/lib/sisimai/rhost/facebook.rb +16 -16
- data/lib/sisimai/rhost/franceptt.rb +8 -3
- data/lib/sisimai/rhost/godaddy.rb +33 -15
- data/lib/sisimai/rhost/google.rb +63 -64
- data/lib/sisimai/rhost/iua.rb +1 -1
- data/lib/sisimai/rhost/messagelabs.rb +12 -12
- data/lib/sisimai/rhost/microsoft.rb +86 -86
- data/lib/sisimai/rhost/mimecast.rb +34 -34
- data/lib/sisimai/rhost/nttdocomo.rb +2 -2
- data/lib/sisimai/rhost/spectrum.rb +7 -7
- data/lib/sisimai/rhost/tencent.rb +9 -11
- data/lib/sisimai/rhost/yahooinc.rb +7 -8
- data/lib/sisimai/rhost.rb +1 -1
- data/lib/sisimai/smtp/command.rb +2 -0
- data/lib/sisimai/smtp/status.rb +73 -109
- data/lib/sisimai/string.rb +0 -27
- data/lib/sisimai/version.rb +1 -1
- data/set-of-emails/maildir/bsd/lhost-deutschetelekom-01.eml +66 -0
- data/set-of-emails/maildir/bsd/lhost-deutschetelekom-02.eml +68 -0
- data/set-of-emails/maildir/bsd/lhost-deutschetelekom-03.eml +50 -0
- data/set-of-emails/should-not-crash/p5-664-iomart-mail-filter.eml +258 -0
- data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/.gitkeep +0 -0
- metadata +10 -6
- data/lib/sisimai/reason/exceedlimit.rb +0 -47
- data/lib/sisimai/reason/speeding.rb +0 -47
- data/lib/sisimai/reason/toomanyconn.rb +0 -59
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
Return-Path: <mailfilter@iomart.com>
|
|
2
|
+
Delivered-To: bounces@senderdomain.org
|
|
3
|
+
Received: from senderdomain-1.senderdomain.org
|
|
4
|
+
by senderdomain-1.senderdomain.org with LMTP
|
|
5
|
+
id iP4FCpn+HmoJQBEAMbU1mA
|
|
6
|
+
(envelope-from <mailfilter@iomart.com>)
|
|
7
|
+
for <bounces@senderdomain.org>; Tue, 02 Jun 2026 16:02:33 +0000
|
|
8
|
+
Received: from sender-op-e24.zoho.eu (sender-op-e24.zoho.eu [136.143.169.24])
|
|
9
|
+
by senderdomain-1.senderdomain.org (Postfix) with ESMTPS id F11663EBF7
|
|
10
|
+
for <bounces@senderdomain.org>; Tue, 2 Jun 2026 16:02:27 +0000 (UTC)
|
|
11
|
+
Authentication-Results: senderdomain-1.senderdomain.org;
|
|
12
|
+
dkim=none;
|
|
13
|
+
spf=neutral (senderdomain-1.senderdomain.org: 136.143.169.24 is neither permitted nor denied by domain of mailfilter@iomart.com) smtp.mailfrom=mailfilter@iomart.com;
|
|
14
|
+
dmarc=fail reason="No valid SPF, No valid DKIM" header.from=iomart.com (policy=none)
|
|
15
|
+
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=senderdomain.org;
|
|
16
|
+
s=default; t=1780416149;
|
|
17
|
+
h=from:from:reply-to:subject:subject:message-id:message-id:to:to:cc:
|
|
18
|
+
mime-version:mime-version:content-type:content-type;
|
|
19
|
+
bh=jj91hzN6hv0fCZGbdiOLSa5XwBLS2kBf/w7Aulsd83E=;
|
|
20
|
+
b=NyvtemJB+HXhTTbNQAMlJhgOqx/rPaU9vXyu61oQvL9RbIlZAQvurDW8/nl2ATziGkfwqe
|
|
21
|
+
JpSOL9fW0RFVyrWLvR1Nn5CxaUos+qApJitrm+9+kp67PWxQ1/xeASo5oxqsqdd8V8lqU5
|
|
22
|
+
iYmieDjG8gnSRgEjlBGGVcnyg9DNaf4=
|
|
23
|
+
ARC-Seal: i=1; a=rsa-sha256; d=senderdomain.org; s=default; cv=none;
|
|
24
|
+
t=1780416149;
|
|
25
|
+
b=g7Z+WOsiNm+BFXhwPxpOkZHQUxfK6yzhMtJ+5jBUkb7M5+z0sq30lQxAn20umoCCnKx41N
|
|
26
|
+
cRLiQN5bV3KknEQE+RjTGz7PlT3DFFSa5M/uO5X/iCFLOxSHmbFdZAtvOQ1gnZOe8Qzjxi
|
|
27
|
+
90PQ9Ga8eZiMKJ75tR2vwoPid9V/Nt0=
|
|
28
|
+
ARC-Authentication-Results: i=1;
|
|
29
|
+
senderdomain-1.senderdomain.org;
|
|
30
|
+
dkim=none;
|
|
31
|
+
spf=neutral (senderdomain-1.senderdomain.org: 136.143.169.24 is neither permitted nor denied by domain of mailfilter@iomart.com) smtp.mailfrom=mailfilter@iomart.com;
|
|
32
|
+
dmarc=fail reason="No valid SPF, No valid DKIM" header.from=iomart.com (policy=none)
|
|
33
|
+
Received: from mailfilter.iomart.com (vmf50.iomart.com [62.128.193.123]) by mx.zoho.eu
|
|
34
|
+
with SMTP id 1780409842164540.7772159241572; Tue, 2 Jun 2026 16:17:22 +0200 (CEST)
|
|
35
|
+
From: "Mail Filter" <mailfilter@iomart.com>
|
|
36
|
+
To: <bounces@senderdomain.org>
|
|
37
|
+
Subject: Warning. Still could not deliver email.
|
|
38
|
+
Message-ID: <1780409841733.filter@mailfilter.iomart.com>
|
|
39
|
+
MIME-Version: 1.0
|
|
40
|
+
Content-Type: multipart/mixed;
|
|
41
|
+
boundary="----=NEXT.MAIL.FILTER.mailfilter.iomart.com"
|
|
42
|
+
X-Zoho-Virus-Status: 1
|
|
43
|
+
X-Zoho-AV-Stamp: zmail-av-0.2.2.1.5.2/280.384.96
|
|
44
|
+
X-ZohoMail-Delivered-To: bounces@senderdomain.org
|
|
45
|
+
X-ZOHOMAIL-MSRID: 0801128601a9ba295145cc044f25df669c000038f7bcf1200dea6d700da6cec6caa4f4c77b81d4bbe52bd30cd04b014df0ab63599d6790020aee9ffd6fcd9b8372b3e1c9eb99c02bdfadefd094795d54c9846f059c4623e3f84ed5be4b426ea68e983d5c184fcdbff38043accaa32bfb7b27ebee32d159b8c304fa298c3d5a927ad7bcb5fc7bc388a8b86c
|
|
46
|
+
X-Spam-Status: No, score=-1.79
|
|
47
|
+
X-Spamd-Bar: -
|
|
48
|
+
|
|
49
|
+
From: "Mail Filter" <mailfilter@iomart.com>
|
|
50
|
+
To: <bounces@senderdomain.org>
|
|
51
|
+
Subject: Warning. Still could not deliver email.
|
|
52
|
+
Message-ID: <1780409841733.filter@mailfilter.iomart.com>
|
|
53
|
+
MIME-Version: 1.0
|
|
54
|
+
Content-Type: multipart/mixed;
|
|
55
|
+
boundary="----=NEXT.MAIL.FILTER.mailfilter.iomart.com"
|
|
56
|
+
|
|
57
|
+
------=NEXT.MAIL.FILTER.mailfilter.iomart.com
|
|
58
|
+
Content-Type: text/plain; charset="iso-8859-1"
|
|
59
|
+
Content-Transfer-Encoding: 7bit
|
|
60
|
+
|
|
61
|
+
** This is a warning only. You do not need to resend the message. **
|
|
62
|
+
|
|
63
|
+
An email you sent has not yet been delivered.
|
|
64
|
+
Subject: Invitation: European Corporate Sustainability B
|
|
65
|
+
|
|
66
|
+
The email has not been delivered to the following recipient:
|
|
67
|
+
sales@receiverdomain.co.uk
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
Technical information about the problem:
|
|
71
|
+
|
|
72
|
+
IO error while connecting to smtp host (0) : 85.232.47.135 on port 25
|
|
73
|
+
Could not connect to any listed smtp host.
|
|
74
|
+
|
|
75
|
+
-- Transcript of session follows --
|
|
76
|
+
IO error connecting to: 85.232.47.135 on port 25
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
The original message was received from:
|
|
80
|
+
from glamf-vs1.iomart.com(localhost[127.0.0.1]) by mailfilter.iomart.com ; Tue, 02 Jun 2026 12:53:05 BST
|
|
81
|
+
Email id: AA202606021253_1780401185862_50169_41576_42109_1s
|
|
82
|
+
|
|
83
|
+
We will continue trying to deliver this email.
|
|
84
|
+
------=NEXT.MAIL.FILTER.mailfilter.iomart.com
|
|
85
|
+
Content-Type: message/rfc822
|
|
86
|
+
Content-Transfer-Encoding: 7bit
|
|
87
|
+
Content-Disposition: attachment
|
|
88
|
+
|
|
89
|
+
Received: from glamf-vs1.iomart.com(localhost[127.0.0.1]) by mailfilter.iomart.com ; Tue, 02 Jun 2026 12:53:05 BST
|
|
90
|
+
Received: from glamf-vs1.iomart.com (unknown [127.0.0.1])
|
|
91
|
+
by IMSVA (Postfix) with ESMTP id 83C0534063
|
|
92
|
+
for <sales@receiverdomain.co.uk>; Tue, 2 Jun 2026 12:53:02 +0100 (BST)
|
|
93
|
+
Received: from glamf-vs1.iomart.com (unknown [127.0.0.1])
|
|
94
|
+
by IMSVA (Postfix) with ESMTP id 81DCD34060
|
|
95
|
+
for <sales@receiverdomain.co.uk>; Tue, 2 Jun 2026 12:53:02 +0100 (BST)
|
|
96
|
+
Received: from glamta1.netintelligence.com (unknown [10.12.10.19])
|
|
97
|
+
by glamf-vs1.iomart.com (Postfix) with ESMTPS
|
|
98
|
+
for <sales@receiverdomain.co.uk>; Tue, 2 Jun 2026 12:53:02 +0100 (BST)
|
|
99
|
+
Received: from s1.senderdomain.host (s1.senderdomain.host [167.235.249.153])
|
|
100
|
+
by glamta1.netintelligence.com (8.14.7/8.14.7) with ESMTP id 652Br29L011553
|
|
101
|
+
(version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO)
|
|
102
|
+
for <sales@receiverdomain.co.uk>; Tue, 2 Jun 2026 12:53:02 +0100
|
|
103
|
+
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=senderdomain.org;
|
|
104
|
+
s=default; t=1780401180;
|
|
105
|
+
bh=1bw+zJ2AdOYfu05oQ1HCx2en0M4sX2PakOpFmEFonL0=;
|
|
106
|
+
h=To:Subject:Date:From:Reply-To:From;
|
|
107
|
+
b=BOiJelFXZlHbdigL6dRbLw0tNZYrELghVUI1b2xPgWgjwFwdXMYbDS2+IWBLQ5rq4
|
|
108
|
+
QstpmIu7lxjhzy9BOJ7B0fwc8ZDSjeylqpTxLlZyOo5WqOmHoBNknvs+rpYoMZ+GDf
|
|
109
|
+
ORSLiFon8RpKlov70q0Oq7kxxcsM383gQSlbtwUc=
|
|
110
|
+
Received: by s1.senderdomain.host (Postfix, from userid 1004)
|
|
111
|
+
id D4F6C8B6BE; Tue, 2 Jun 2026 13:53:00 +0200 (CEST)
|
|
112
|
+
To: sales@receiverdomain.co.uk
|
|
113
|
+
Subject: =?us-ascii?Q?Invitation:_European_Corporate_Sustainability_B?=
|
|
114
|
+
=?us-ascii?Q?arometer_2026_|_University_of_Augsburg?=
|
|
115
|
+
X-PHP-Originating-Script: 33:PHPMailer.php
|
|
116
|
+
Date: Tue, 2 Jun 2026 13:53:00 +0200
|
|
117
|
+
From: "Prof. Dr. Martin " <noreply@senderdomain.org>
|
|
118
|
+
Reply-To: "Prof. Dr. Martin " <some@replytoaddress.de>
|
|
119
|
+
Message-ID: <pxSIY20LQym8SZORFklISH8sgYlZU4BbXeCEzwumY4@senderdomain.com>
|
|
120
|
+
X-Mailer: PHPMailer 6.12.0 (https://github.com/PHPMailer/PHPMailer)
|
|
121
|
+
X-Surveymailer: =?us-ascii?Q?LimeService_-_Your_online_survey_service_Emaile?=
|
|
122
|
+
=?us-ascii?Q?r_(LimeSurvey.org)?=
|
|
123
|
+
X-surveyid: 912278
|
|
124
|
+
X-did: 63513
|
|
125
|
+
X-tokenid: xuUWWu6FH6aHdm9
|
|
126
|
+
X-messagetype: invite
|
|
127
|
+
MIME-Version: 1.0
|
|
128
|
+
Content-Type: multipart/alternative;
|
|
129
|
+
boundary="b1=_pxSIY20LQym8SZORFklISH8sgYlZU4BbXeCEzwumY4"
|
|
130
|
+
X-TM-AS-GCONF: 11111111
|
|
131
|
+
X-TM-AS-SMTP:
|
|
132
|
+
1.0 Z2xhbXRhMS5uZXRpbnRlbGxpZ2VuY2UuY29t Ym91bmNlc0BsaW1lc3VydmV5Lm9yZw==
|
|
133
|
+
X-TM-AS-ERS: 10.12.10.19-0.0.0.0
|
|
134
|
+
X-TM-AS-Product-Ver: IMSVA-9.1.0.2090-9.0.0.1006-29464.005
|
|
135
|
+
X-TM-AS-Result: No--10.483-7.0-31-10
|
|
136
|
+
X-imss-scan-details:
|
|
137
|
+
No--10.483-7.0-31-10;No--10.483-5.0-31-10;No--10.483-4.5-31-10
|
|
138
|
+
X-TMASE-Version: IMSVA-9.1.0.2090-9.0.1006-29464.005
|
|
139
|
+
X-TMASE-Result: 10--10.482900-10.000000
|
|
140
|
+
X-TMASE-MatchedRID: EbN6pWSdrfAQXv4ZkZu4P4g/1pSA5n4nHRuUgrO0t5n3wgCpjef5UNn9
|
|
141
|
+
edN4SIbOXP0in0dtj3Pkcbb/N6urD5IMp0yoBQPx6ljkEk+hhAdacIFsLrAMEvUCJ2JcwqKkOju
|
|
142
|
+
4nBxa+XwZ2J/pZiRUOE5GBIYERk6jo8tN19oTXle7tGOkYCEd72uowxHx/YorLUTefmf+XF49l1
|
|
143
|
+
mFkoi18lwZfENnKtl2WDAqA04FJPFihx6vxfxUH0cltf+SgGe/pXSpBRF6DKE3/uuesHGjHPlx4
|
|
144
|
+
f8giwvwNrP38pzXr1tC3LyCIIlbjXh/XlQwKiYPTYEVkMjfR3XnAw8yp081LMBZTXYckm+KfE2g
|
|
145
|
+
LTo6fr9e8sETQPMTzGg4D2QV/2zL6r3HCixfuKfXp+RWL3KkY+j0B6obqgb25VVMmcR7Y/T/voI
|
|
146
|
+
zhn8wZu8ILeOEeNyPUgKYbZFF6GiYJLfysl51FYTH85Y/n3xJHN6L1eChrlGU/qSI6oq2xmkAiI
|
|
147
|
+
HfatzC3rH2a9USUYRycyj3arqe0g2y5A4HtQVbRuW84rvZ5t93H4nnvy8F6R+sd7GBQLJcModgu
|
|
148
|
+
xHirQsfE8yM4pjsD4MbH85DUZXy8OZ2f6mIONWXfrBL7N7xTz166Jh7ejx4+X/HOFEWz1JcoJTb
|
|
149
|
+
e+M/JoNP4m9cZusk8hTK7r4cHK64NStYgRpoI25FeHtsUoHu5EIXcRvZqmQi4BZf3coNM1yQZYF
|
|
150
|
+
5ilVTWAGwnAWNQQ0+kK598Yf3Mg==
|
|
151
|
+
X-TMASE-SNAP-Result: 1.821001.0001-0-1-22:0,33:0,34:0-0
|
|
152
|
+
Content-Transfer-Encoding: 7bit
|
|
153
|
+
X-NIVirusScan: OK
|
|
154
|
+
|
|
155
|
+
--b1=_pxSIY20LQym8SZORFklISH8sgYlZU4BbXeCEzwumY4
|
|
156
|
+
Content-Type: text/plain; charset=utf-8
|
|
157
|
+
Content-Transfer-Encoding: quoted-printable
|
|
158
|
+
|
|
159
|
+
=C2=A0=20
|
|
160
|
+
Dear Sir or Madam,
|
|
161
|
+
|
|
162
|
+
we would like to invite your organization to participate in the
|
|
163
|
+
"survey". This study captures
|
|
164
|
+
key trends in corporate environmental and sustainability management
|
|
165
|
+
across Europe, and your expertise is crucial for an accurate
|
|
166
|
+
representation of the industry.
|
|
167
|
+
|
|
168
|
+
The questionnaire is designed to be highly efficient, as it consists
|
|
169
|
+
almost entirely of structured checkbox questions. It is directed at
|
|
170
|
+
the person most knowledgeable about sustainability within your
|
|
171
|
+
organization. If a colleague is more familiar with this topic, we
|
|
172
|
+
kindly ask you to forward this email to them.
|
|
173
|
+
|
|
174
|
+
As a thank you for your valuable time, we are pleased to offer you an
|
|
175
|
+
EXCLUSIVE EXECUTIVE SUMMARY OF THE FINAL RESULTS, allowing you to
|
|
176
|
+
benchmark your organization against European peers.=C2=A0Additionally,
|
|
177
|
+
valuable prizes will be drawn, namely copies of the book
|
|
178
|
+
=E2=80=9CEntrepreneurship, Innovation and Sustainability=E2=80=9D, and Am=
|
|
179
|
+
azon
|
|
180
|
+
vouchers with a value of 30=E2=82=AC each.
|
|
181
|
+
All analyses are conducted in a pseudonymized and aggregated manner.
|
|
182
|
+
No individual company names or personal data will be visible in the
|
|
183
|
+
final report or disclosed to third parties.
|
|
184
|
+
|
|
185
|
+
PLEASE CLICK ON THE FOLLOWING LINK TO START THE SURVEY:=C2=A0
|
|
186
|
+
[Removed link]
|
|
187
|
+
|
|
188
|
+
We kindly ask for your response within one week. If you have any
|
|
189
|
+
questions regarding the study or data processing, please do not
|
|
190
|
+
hesitate to contact us at .
|
|
191
|
+
|
|
192
|
+
Thank you very much for your time, support and collaboration, which
|
|
193
|
+
are the prerequisite=C2=A0for this project=E2=80=99s success.
|
|
194
|
+
|
|
195
|
+
Kind regards
|
|
196
|
+
Professor
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
___________________________________________=0D=0AThis email has been scanned=
|
|
201
|
+
by iomartcloud.=0D=0Ahttp://www.iomartcloud.com/=0D=
|
|
202
|
+
=0A=
|
|
203
|
+
|
|
204
|
+
--b1=_pxSIY20LQym8SZORFklISH8sgYlZU4BbXeCEzwumY4
|
|
205
|
+
Content-Type: text/html; charset=utf-8
|
|
206
|
+
Content-Transfer-Encoding: quoted-printable
|
|
207
|
+
|
|
208
|
+
<html>
|
|
209
|
+
<head>
|
|
210
|
+
<title></title>
|
|
211
|
+
</head>
|
|
212
|
+
<body>=C2=A0
|
|
213
|
+
<br><hr>This email has been scanned by iomartcloud.<br><a href=3D"http://www=
|
|
214
|
+
.iomartcloud.com">http://www.iomartcloud.com</a><br><hr>=
|
|
215
|
+
|
|
216
|
+
</body>
|
|
217
|
+
</html>
|
|
218
|
+
<title></title>
|
|
219
|
+
<p>Dear Sir or Madam,</p>
|
|
220
|
+
|
|
221
|
+
<p>we would like to invite your organization to participate in the "<stro=
|
|
222
|
+
ng>European Corporate</strong><strong>=C2=A0Sustainability Barometer</str=
|
|
223
|
+
ong>". This study captures key trends in corporate environmental and sust=
|
|
224
|
+
ainability management across Europe, and your expertise is crucial for an=
|
|
225
|
+
accurate representation of the industry.</p>
|
|
226
|
+
|
|
227
|
+
<p style=3D"text-align: justify;">The questionnaire is designed to be hig=
|
|
228
|
+
hly efficient, as it consists almost entirely of structured checkbox ques=
|
|
229
|
+
tions. It is directed at the person most knowledgeable about sustainabili=
|
|
230
|
+
ty within your organization. If a colleague is more familiar with this to=
|
|
231
|
+
pic, we kindly ask you to forward this email to them.</p>
|
|
232
|
+
|
|
233
|
+
<p style=3D"text-align: justify;">As a thank you for your valuable time, =
|
|
234
|
+
we are pleased to offer you an <strong>exclusive executive summary of the=
|
|
235
|
+
final results</strong>, allowing you to benchmark your organization agai=
|
|
236
|
+
nst European peers.=C2=A0Additionally, valuable prizes will be drawn, nam=
|
|
237
|
+
ely copies of the book =E2=80=9CEntrepreneurship, Innovation and Sustaina=
|
|
238
|
+
bility=E2=80=9D, and Amazon vouchers with a value of 30=E2=82=AC each.<br=
|
|
239
|
+
/>All analyses are conducted in a pseudonymized and aggregated manner. N=
|
|
240
|
+
o individual company names or personal data will be visible in the final =
|
|
241
|
+
report or disclosed to third parties.</p>
|
|
242
|
+
|
|
243
|
+
test teste test test test teste Please click on the following link to sta=
|
|
244
|
+
kindly ask for your response within one week. If you have any questions r=
|
|
245
|
+
egarding the study or data processing, please do not hesitate to contact =
|
|
246
|
+
us at .</p>
|
|
247
|
+
|
|
248
|
+
<p style=3D"text-align: justify;">Thank you very much for your time, supp=
|
|
249
|
+
ort and collaboration, which are the prerequisite=C2=A0for this project=E2=
|
|
250
|
+
=80=99s success.<br /><br />Kind regards<br />Professor </p>
|
|
251
|
+
|
|
252
|
+
<p style=3D"text-align: justify;"><img alt=3D"" style=3D"width: 438px; height: 150px;" /></p>
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
--b1=_pxSIY20LQym8SZORFklISH8sgYlZU4BbXeCEzwumY4--
|
|
256
|
+
|
|
257
|
+
------=NEXT.MAIL.FILTER.mailfilter.iomart.com--
|
|
258
|
+
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sisimai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.7.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- azumakuniyuki
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-06-22 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: bundler
|
|
@@ -112,6 +112,7 @@ files:
|
|
|
112
112
|
- lib/sisimai/lhost/apachejames.rb
|
|
113
113
|
- lib/sisimai/lhost/biglobe.rb
|
|
114
114
|
- lib/sisimai/lhost/courier.rb
|
|
115
|
+
- lib/sisimai/lhost/deutschetelekom.rb
|
|
115
116
|
- lib/sisimai/lhost/domino.rb
|
|
116
117
|
- lib/sisimai/lhost/dragonfly.rb
|
|
117
118
|
- lib/sisimai/lhost/einsundeins.rb
|
|
@@ -157,7 +158,7 @@ files:
|
|
|
157
158
|
- lib/sisimai/reason/blocked.rb
|
|
158
159
|
- lib/sisimai/reason/contenterror.rb
|
|
159
160
|
- lib/sisimai/reason/delivered.rb
|
|
160
|
-
- lib/sisimai/reason/
|
|
161
|
+
- lib/sisimai/reason/emailtoolarge.rb
|
|
161
162
|
- lib/sisimai/reason/expired.rb
|
|
162
163
|
- lib/sisimai/reason/failedstarttls.rb
|
|
163
164
|
- lib/sisimai/reason/feedback.rb
|
|
@@ -166,24 +167,22 @@ files:
|
|
|
166
167
|
- lib/sisimai/reason/hostunknown.rb
|
|
167
168
|
- lib/sisimai/reason/mailboxfull.rb
|
|
168
169
|
- lib/sisimai/reason/mailererror.rb
|
|
169
|
-
- lib/sisimai/reason/mesgtoobig.rb
|
|
170
170
|
- lib/sisimai/reason/networkerror.rb
|
|
171
171
|
- lib/sisimai/reason/norelaying.rb
|
|
172
172
|
- lib/sisimai/reason/notaccept.rb
|
|
173
173
|
- lib/sisimai/reason/notcompliantrfc.rb
|
|
174
174
|
- lib/sisimai/reason/onhold.rb
|
|
175
175
|
- lib/sisimai/reason/policyviolation.rb
|
|
176
|
+
- lib/sisimai/reason/ratelimited.rb
|
|
176
177
|
- lib/sisimai/reason/rejected.rb
|
|
177
178
|
- lib/sisimai/reason/requireptr.rb
|
|
178
179
|
- lib/sisimai/reason/securityerror.rb
|
|
179
180
|
- lib/sisimai/reason/spamdetected.rb
|
|
180
|
-
- lib/sisimai/reason/speeding.rb
|
|
181
181
|
- lib/sisimai/reason/suppressed.rb
|
|
182
182
|
- lib/sisimai/reason/suspend.rb
|
|
183
183
|
- lib/sisimai/reason/syntaxerror.rb
|
|
184
184
|
- lib/sisimai/reason/systemerror.rb
|
|
185
185
|
- lib/sisimai/reason/systemfull.rb
|
|
186
|
-
- lib/sisimai/reason/toomanyconn.rb
|
|
187
186
|
- lib/sisimai/reason/undefined.rb
|
|
188
187
|
- lib/sisimai/reason/userunknown.rb
|
|
189
188
|
- lib/sisimai/reason/vacation.rb
|
|
@@ -288,6 +287,9 @@ files:
|
|
|
288
287
|
- set-of-emails/maildir/bsd/lhost-courier-02.eml
|
|
289
288
|
- set-of-emails/maildir/bsd/lhost-courier-03.eml
|
|
290
289
|
- set-of-emails/maildir/bsd/lhost-courier-04.eml
|
|
290
|
+
- set-of-emails/maildir/bsd/lhost-deutschetelekom-01.eml
|
|
291
|
+
- set-of-emails/maildir/bsd/lhost-deutschetelekom-02.eml
|
|
292
|
+
- set-of-emails/maildir/bsd/lhost-deutschetelekom-03.eml
|
|
291
293
|
- set-of-emails/maildir/bsd/lhost-domino-01.eml
|
|
292
294
|
- set-of-emails/maildir/bsd/lhost-domino-02.eml
|
|
293
295
|
- set-of-emails/maildir/bsd/lhost-domino-03.eml
|
|
@@ -1031,6 +1033,8 @@ files:
|
|
|
1031
1033
|
- set-of-emails/maildir/tmp/rfc3464-37.eml
|
|
1032
1034
|
- set-of-emails/maildir/tmp/rfc3464-38.eml
|
|
1033
1035
|
- set-of-emails/maildir/tmp/rfc3464-39.eml
|
|
1036
|
+
- set-of-emails/should-not-crash/p5-664-iomart-mail-filter.eml
|
|
1037
|
+
- set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/.gitkeep
|
|
1034
1038
|
- set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml
|
|
1035
1039
|
- set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml
|
|
1036
1040
|
- set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
module Sisimai
|
|
2
|
-
module Reason
|
|
3
|
-
# Sisimai::Reason::ExceedLimit checks the bounce reason is "exceedlimit" or not. This class is
|
|
4
|
-
# called only Sisimai::Reason class.
|
|
5
|
-
#
|
|
6
|
-
# This is the error that a message was rejected due to an email exceeded the limit. The value
|
|
7
|
-
# of D.S.N. is 5.2.3. This reason is almost the same as "MesgTooBig", we think.
|
|
8
|
-
module ExceedLimit
|
|
9
|
-
class << self
|
|
10
|
-
Index = [
|
|
11
|
-
'message header size exceeds limit',
|
|
12
|
-
'message too large',
|
|
13
|
-
].freeze
|
|
14
|
-
|
|
15
|
-
def text; return 'exceedlimit'; end
|
|
16
|
-
def description; return 'Email rejected due to an email exceeded the limit'; end
|
|
17
|
-
|
|
18
|
-
# Try to match that the given text and regular expressions
|
|
19
|
-
# @param [String] argv1 String to be matched with regular expressions
|
|
20
|
-
# @return [Boolean] false: Did not match, true: Matched
|
|
21
|
-
def match(argv1)
|
|
22
|
-
return false if argv1.nil? || argv1.empty?
|
|
23
|
-
return true if Index.any? { |a| argv1.include?(a) }
|
|
24
|
-
return false
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
# Exceed limit or not
|
|
28
|
-
# @param [Sisimai::Fact] argvs Object to be detected the reason
|
|
29
|
-
# @return [Boolean] true: Exceeds the limit
|
|
30
|
-
# false: Did not exceed the limit
|
|
31
|
-
# @see http://www.ietf.org/rfc/rfc2822.txt
|
|
32
|
-
def true(argvs)
|
|
33
|
-
return false if argvs['deliverystatus'].empty?
|
|
34
|
-
return true if argvs['reason'] == 'exceedlimit'
|
|
35
|
-
|
|
36
|
-
# Delivery status code points exceedlimit.
|
|
37
|
-
# Status: 5.2.3
|
|
38
|
-
# Diagnostic-Code: SMTP; 552 5.2.3 Message size exceeds fixed maximum message size
|
|
39
|
-
return true if Sisimai::SMTP::Status.name(argvs['deliverystatus']) == 'exceedlimit'
|
|
40
|
-
return match(argvs['diagnosticcode'].downcase)
|
|
41
|
-
end
|
|
42
|
-
|
|
43
|
-
end
|
|
44
|
-
end
|
|
45
|
-
end
|
|
46
|
-
end
|
|
47
|
-
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
module Sisimai
|
|
2
|
-
module Reason
|
|
3
|
-
# Sisimai::Reason::Speeding checks the bounce reason is "speeding" or not. This class is called
|
|
4
|
-
# only Sisimai::Reason class. This is the error that a connection rejected due to exceeding a
|
|
5
|
-
# rate limit or sending too fast.
|
|
6
|
-
module Speeding
|
|
7
|
-
class << self
|
|
8
|
-
Index = [
|
|
9
|
-
'mail sent from your IP address has been temporarily rate limited',
|
|
10
|
-
'please try again slower',
|
|
11
|
-
'receiving mail at a rate that prevents additional messages from being delivered',
|
|
12
|
-
].freeze
|
|
13
|
-
|
|
14
|
-
def text; return 'speeding'; end
|
|
15
|
-
def description; return 'Rejected due to exceeding a rate limit or sending too fast'; end
|
|
16
|
-
|
|
17
|
-
# Try to match that the given text and regular expressions
|
|
18
|
-
# @param [String] argv1 String to be matched with regular expressions
|
|
19
|
-
# @return [Boolean] false: Did not match, true: Matched
|
|
20
|
-
def match(argv1)
|
|
21
|
-
return false if argv1.nil? || argv1.empty?
|
|
22
|
-
return true if Index.any? { |a| argv1.include?(a) }
|
|
23
|
-
return false
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
# Speeding or not
|
|
27
|
-
# @param [Sisimai::Fact] argvs Object to be detected the reason
|
|
28
|
-
# @return [Boolean] true: is speeding
|
|
29
|
-
# false: is not speeding
|
|
30
|
-
# @see http://www.ietf.org/rfc/rfc2822.txt
|
|
31
|
-
def true(argvs)
|
|
32
|
-
return false if argvs['deliverystatus'].empty?
|
|
33
|
-
return true if argvs['reason'] == 'speeding'
|
|
34
|
-
|
|
35
|
-
# Action: failed
|
|
36
|
-
# Status: 4.7.1
|
|
37
|
-
# Remote-MTA: dns; smtp.example.jp
|
|
38
|
-
# Diagnostic-Code: smtp; 451 4.7.1 <mx.example.org[192.0.2.2]>: Client host rejected:
|
|
39
|
-
# Please try again slower
|
|
40
|
-
return match(argvs['diagnosticcode'].downcase)
|
|
41
|
-
end
|
|
42
|
-
|
|
43
|
-
end
|
|
44
|
-
end
|
|
45
|
-
end
|
|
46
|
-
end
|
|
47
|
-
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
module Sisimai
|
|
2
|
-
module Reason
|
|
3
|
-
# Sisimai::Reason::TooManyConn checks the bounce reason is "toomanyconn" or not. This class is
|
|
4
|
-
# called only Sisimai::Reason class.
|
|
5
|
-
#
|
|
6
|
-
# This is the error that SMTP connection was rejected temporarily due to too many concurrency
|
|
7
|
-
# connections to the remote server. This reason has added in Sisimai 4.1.26.
|
|
8
|
-
#
|
|
9
|
-
# <kijitora@example.ne.jp>: host mx02.example.ne.jp[192.0.1.20] said:
|
|
10
|
-
# 452 4.3.2 Connection rate limit exceeded. (in reply to MAIL FROM command)
|
|
11
|
-
module TooManyConn
|
|
12
|
-
class << self
|
|
13
|
-
Index = [
|
|
14
|
-
'all available ips are at maximum connection limit', # SendGrid
|
|
15
|
-
'connection rate limit exceeded',
|
|
16
|
-
'exceeds per-domain connection limit for',
|
|
17
|
-
'has exceeded the max emails per hour ',
|
|
18
|
-
'throttling failure: daily message quota exceeded',
|
|
19
|
-
'throttling failure: maximum sending rate exceeded',
|
|
20
|
-
'too many connections',
|
|
21
|
-
'too many connections from your host.', # Microsoft
|
|
22
|
-
'too many concurrent smtp connections', # Microsoft
|
|
23
|
-
'too many errors from your ip', # Free.fr
|
|
24
|
-
'too many recipients', # ntt docomo
|
|
25
|
-
'too many smtp sessions for this host', # Sendmail(daemon.c)
|
|
26
|
-
'trop de connexions, ',
|
|
27
|
-
'we have already made numerous attempts to deliver this message',
|
|
28
|
-
].freeze
|
|
29
|
-
|
|
30
|
-
def text; return 'toomanyconn'; end
|
|
31
|
-
def description; return 'SMTP connection rejected temporarily due to too many concurrency connections to the remote host'; end
|
|
32
|
-
|
|
33
|
-
# Try to match that the given text and regular expressions
|
|
34
|
-
# @param [String] argv1 String to be matched with regular expressions
|
|
35
|
-
# @return [Boolean] false: Did not match, true: Matched
|
|
36
|
-
def match(argv1)
|
|
37
|
-
return false if argv1.nil? || argv1.empty?
|
|
38
|
-
return true if Index.any? { |a| argv1.include?(a) }
|
|
39
|
-
return false
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
# Rejected by domain or address filter ?
|
|
43
|
-
# @param [Sisimai::Fact] argvs Object to be detected the reason
|
|
44
|
-
# @return [Boolean] true: is filtered
|
|
45
|
-
# false: is not filtered
|
|
46
|
-
# @see http://www.ietf.org/rfc/rfc2822.txt
|
|
47
|
-
def true(argvs)
|
|
48
|
-
return true if argvs['reason'] == 'toomanyconn'
|
|
49
|
-
return true if Sisimai::SMTP::Status.name(argvs['deliverystatus']) == 'toomanyconn'
|
|
50
|
-
return match(argvs['diagnosticcode'].downcase)
|
|
51
|
-
end
|
|
52
|
-
|
|
53
|
-
end
|
|
54
|
-
end
|
|
55
|
-
end
|
|
56
|
-
end
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|