sisimai 5.1.0 → 5.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake-test.yml +1 -1
  3. data/ChangeLog.md +112 -0
  4. data/Makefile +4 -2
  5. data/README-JA.md +28 -21
  6. data/README.md +30 -23
  7. data/lib/sisimai/arf.rb +121 -210
  8. data/lib/sisimai/fact.rb +208 -158
  9. data/lib/sisimai/lda.rb +98 -0
  10. data/lib/sisimai/lhost/activehunter.rb +1 -1
  11. data/lib/sisimai/lhost/amazonses.rb +185 -301
  12. data/lib/sisimai/lhost/apachejames.rb +48 -51
  13. data/lib/sisimai/lhost/biglobe.rb +1 -2
  14. data/lib/sisimai/lhost/courier.rb +10 -8
  15. data/lib/sisimai/lhost/domino.rb +25 -25
  16. data/lib/sisimai/lhost/dragonfly.rb +3 -4
  17. data/lib/sisimai/lhost/einsundeins.rb +3 -4
  18. data/lib/sisimai/lhost/exchange2003.rb +6 -8
  19. data/lib/sisimai/lhost/exchange2007.rb +111 -101
  20. data/lib/sisimai/lhost/exim.rb +232 -242
  21. data/lib/sisimai/lhost/ezweb.rb +43 -51
  22. data/lib/sisimai/lhost/fml.rb +2 -3
  23. data/lib/sisimai/lhost/gmail.rb +32 -28
  24. data/lib/sisimai/lhost/gmx.rb +4 -16
  25. data/lib/sisimai/lhost/googlegroups.rb +9 -8
  26. data/lib/sisimai/lhost/googleworkspace.rb +94 -0
  27. data/lib/sisimai/lhost/imailserver.rb +7 -16
  28. data/lib/sisimai/lhost/interscanmss.rb +1 -1
  29. data/lib/sisimai/lhost/kddi.rb +3 -4
  30. data/lib/sisimai/lhost/mailfoundry.rb +2 -5
  31. data/lib/sisimai/lhost/mailmarshalsmtp.rb +1 -2
  32. data/lib/sisimai/lhost/messagingserver.rb +14 -13
  33. data/lib/sisimai/lhost/mfilter.rb +4 -3
  34. data/lib/sisimai/lhost/notes.rb +2 -4
  35. data/lib/sisimai/lhost/opensmtpd.rb +2 -2
  36. data/lib/sisimai/lhost/postfix.rb +25 -27
  37. data/lib/sisimai/lhost/qmail.rb +130 -106
  38. data/lib/sisimai/lhost/sendmail.rb +19 -18
  39. data/lib/sisimai/lhost/v5sendmail.rb +88 -60
  40. data/lib/sisimai/lhost/verizon.rb +2 -2
  41. data/lib/sisimai/lhost/x1.rb +1 -1
  42. data/lib/sisimai/lhost/x2.rb +1 -2
  43. data/lib/sisimai/lhost/x3.rb +2 -2
  44. data/lib/sisimai/lhost/x6.rb +1 -1
  45. data/lib/sisimai/lhost/zoho.rb +2 -2
  46. data/lib/sisimai/lhost.rb +18 -21
  47. data/lib/sisimai/message.rb +93 -146
  48. data/lib/sisimai/order.rb +21 -77
  49. data/lib/sisimai/reason/authfailure.rb +1 -4
  50. data/lib/sisimai/reason/badreputation.rb +2 -2
  51. data/lib/sisimai/reason/blocked.rb +7 -10
  52. data/lib/sisimai/reason/contenterror.rb +7 -1
  53. data/lib/sisimai/reason/exceedlimit.rb +1 -4
  54. data/lib/sisimai/reason/failedstarttls.rb +42 -0
  55. data/lib/sisimai/reason/filtered.rb +5 -4
  56. data/lib/sisimai/reason/hasmoved.rb +1 -2
  57. data/lib/sisimai/reason/hostunknown.rb +3 -3
  58. data/lib/sisimai/reason/mailboxfull.rb +2 -4
  59. data/lib/sisimai/reason/mailererror.rb +1 -2
  60. data/lib/sisimai/reason/mesgtoobig.rb +2 -4
  61. data/lib/sisimai/reason/norelaying.rb +2 -3
  62. data/lib/sisimai/reason/notaccept.rb +2 -3
  63. data/lib/sisimai/reason/notcompliantrfc.rb +10 -4
  64. data/lib/sisimai/reason/rejected.rb +1 -1
  65. data/lib/sisimai/reason/requireptr.rb +2 -2
  66. data/lib/sisimai/reason/securityerror.rb +1 -3
  67. data/lib/sisimai/reason/spamdetected.rb +6 -8
  68. data/lib/sisimai/reason/speeding.rb +1 -2
  69. data/lib/sisimai/reason/suppressed.rb +36 -0
  70. data/lib/sisimai/reason/suspend.rb +1 -3
  71. data/lib/sisimai/reason/systemerror.rb +5 -0
  72. data/lib/sisimai/reason/toomanyconn.rb +1 -2
  73. data/lib/sisimai/reason/userunknown.rb +1 -1
  74. data/lib/sisimai/reason/virusdetected.rb +5 -6
  75. data/lib/sisimai/reason.rb +77 -73
  76. data/lib/sisimai/rfc1123.rb +152 -0
  77. data/lib/sisimai/rfc1894.rb +102 -62
  78. data/lib/sisimai/rfc2045.rb +2 -1
  79. data/lib/sisimai/rfc3464/thirdparty.rb +102 -0
  80. data/lib/sisimai/rfc3464.rb +222 -343
  81. data/lib/sisimai/rfc3834.rb +1 -1
  82. data/lib/sisimai/rfc5322.rb +7 -17
  83. data/lib/sisimai/rfc791.rb +69 -0
  84. data/lib/sisimai/rhost/aol.rb +36 -0
  85. data/lib/sisimai/rhost/apple.rb +5 -2
  86. data/lib/sisimai/rhost/cloudflare.rb +31 -0
  87. data/lib/sisimai/rhost/cox.rb +3 -2
  88. data/lib/sisimai/rhost/facebook.rb +100 -0
  89. data/lib/sisimai/rhost/franceptt.rb +3 -2
  90. data/lib/sisimai/rhost/godaddy.rb +3 -2
  91. data/lib/sisimai/rhost/google.rb +19 -17
  92. data/lib/sisimai/rhost/gsuite.rb +42 -0
  93. data/lib/sisimai/rhost/iua.rb +3 -3
  94. data/lib/sisimai/rhost/kddi.rb +3 -2
  95. data/lib/sisimai/rhost/messagelabs.rb +37 -0
  96. data/lib/sisimai/rhost/microsoft.rb +56 -49
  97. data/lib/sisimai/rhost/mimecast.rb +29 -27
  98. data/lib/sisimai/rhost/nttdocomo.rb +12 -5
  99. data/lib/sisimai/rhost/outlook.rb +36 -0
  100. data/lib/sisimai/rhost/spectrum.rb +3 -2
  101. data/lib/sisimai/rhost/tencent.rb +3 -2
  102. data/lib/sisimai/rhost/yahooinc.rb +4 -3
  103. data/lib/sisimai/rhost.rb +70 -39
  104. data/lib/sisimai/smtp/command.rb +31 -21
  105. data/lib/sisimai/smtp/failure.rb +103 -0
  106. data/lib/sisimai/smtp/reply.rb +29 -25
  107. data/lib/sisimai/smtp/status.rb +37 -20
  108. data/lib/sisimai/smtp/transcript.rb +15 -15
  109. data/lib/sisimai/string.rb +0 -46
  110. data/lib/sisimai/version.rb +1 -1
  111. data/set-of-emails/maildir/bsd/lhost-postfix-30.eml +81 -81
  112. data/set-of-emails/maildir/bsd/{lhost-aol-03.eml → rhost-aol-03.eml} +1264 -1264
  113. data/set-of-emails/maildir/bsd/{lhost-aol-04.eml → rhost-aol-04.eml} +1260 -1260
  114. data/set-of-emails/maildir/bsd/{lhost-aol-05.eml → rhost-aol-05.eml} +105 -105
  115. data/set-of-emails/maildir/bsd/{lhost-aol-06.eml → rhost-aol-06.eml} +105 -105
  116. data/set-of-emails/maildir/bsd/rhost-cloudflare-01.eml +75 -0
  117. data/set-of-emails/maildir/bsd/rhost-gsuite-01.eml +189 -0
  118. data/set-of-emails/maildir/bsd/rhost-gsuite-02.eml +180 -0
  119. data/set-of-emails/maildir/bsd/rhost-gsuite-03.eml +251 -0
  120. data/set-of-emails/maildir/bsd/rhost-gsuite-04.eml +211 -0
  121. data/set-of-emails/maildir/bsd/rhost-gsuite-05.eml +226 -0
  122. data/set-of-emails/maildir/bsd/rhost-gsuite-06.eml +257 -0
  123. data/set-of-emails/maildir/bsd/rhost-gsuite-07.eml +289 -0
  124. data/set-of-emails/maildir/bsd/rhost-gsuite-08.eml +231 -0
  125. data/set-of-emails/maildir/bsd/rhost-gsuite-09.eml +231 -0
  126. data/set-of-emails/maildir/bsd/rhost-gsuite-10.eml +254 -0
  127. data/set-of-emails/maildir/bsd/rhost-gsuite-11.eml +228 -0
  128. data/set-of-emails/maildir/bsd/rhost-gsuite-12.eml +271 -0
  129. data/set-of-emails/maildir/bsd/rhost-gsuite-13.eml +261 -0
  130. data/set-of-emails/maildir/bsd/rhost-gsuite-14.eml +273 -0
  131. data/set-of-emails/maildir/bsd/rhost-gsuite-15.eml +229 -0
  132. data/set-of-emails/maildir/bsd/{lhost-messagelabs-01.eml → rhost-messagelabs-01.eml} +93 -93
  133. data/set-of-emails/maildir/bsd/rhost-outlook-01.eml +72 -0
  134. data/set-of-emails/maildir/bsd/rhost-outlook-02.eml +72 -0
  135. data/set-of-emails/maildir/bsd/rhost-outlook-03.eml +72 -0
  136. data/set-of-emails/maildir/bsd/rhost-outlook-04.eml +79 -0
  137. data/set-of-emails/maildir/bsd/rhost-outlook-06.eml +75 -0
  138. data/set-of-emails/maildir/bsd/rhost-outlook-07.eml +70 -0
  139. data/set-of-emails/maildir/bsd/rhost-outlook-08.eml +70 -0
  140. data/set-of-emails/maildir/bsd/rhost-outlook-09.eml +56 -0
  141. data/set-of-emails/maildir/tmp/arf-22.eml +49 -0
  142. data/set-of-emails/maildir/tmp/arf-23.eml +49 -0
  143. data/set-of-emails/maildir/tmp/arf-24.eml +50 -0
  144. data/set-of-emails/maildir/tmp/lhost-exim-07.eml +28 -0
  145. metadata +75 -56
  146. data/lib/sisimai/lhost/amavis.rb +0 -163
  147. data/lib/sisimai/lhost/amazonworkmail.rb +0 -127
  148. data/lib/sisimai/lhost/aol.rb +0 -125
  149. data/lib/sisimai/lhost/barracuda.rb +0 -92
  150. data/lib/sisimai/lhost/bigfoot.rb +0 -125
  151. data/lib/sisimai/lhost/facebook.rb +0 -188
  152. data/lib/sisimai/lhost/gsuite.rb +0 -194
  153. data/lib/sisimai/lhost/mailru.rb +0 -214
  154. data/lib/sisimai/lhost/mcafee.rb +0 -109
  155. data/lib/sisimai/lhost/messagelabs.rb +0 -120
  156. data/lib/sisimai/lhost/mxlogic.rb +0 -198
  157. data/lib/sisimai/lhost/office365.rb +0 -252
  158. data/lib/sisimai/lhost/outlook.rb +0 -129
  159. data/lib/sisimai/lhost/powermta.rb +0 -118
  160. data/lib/sisimai/lhost/receivingses.rb +0 -126
  161. data/lib/sisimai/lhost/sendgrid.rb +0 -150
  162. data/lib/sisimai/lhost/surfcontrol.rb +0 -105
  163. data/lib/sisimai/lhost/x4.rb +0 -269
  164. data/lib/sisimai/lhost/x5.rb +0 -112
  165. data/lib/sisimai/lhost/yahoo.rb +0 -102
  166. data/lib/sisimai/lhost/yandex.rb +0 -118
  167. data/lib/sisimai/mda.rb +0 -121
  168. data/lib/sisimai/smtp/error.rb +0 -119
  169. /data/set-of-emails/maildir/bsd/{lhost-googlegroups-15.eml → lhost-googleworkspace-01.eml} +0 -0
  170. /data/set-of-emails/maildir/bsd/{lhost-x4-08.eml → lhost-x2-06.eml} +0 -0
  171. /data/set-of-emails/maildir/bsd/{lhost-gsuite-01.eml → rfc3464-51.eml} +0 -0
  172. /data/set-of-emails/maildir/bsd/{lhost-gsuite-03.eml → rfc3464-52.eml} +0 -0
  173. /data/set-of-emails/maildir/bsd/{lhost-gsuite-04.eml → rfc3464-53.eml} +0 -0
  174. /data/set-of-emails/maildir/bsd/{lhost-gsuite-05.eml → rfc3464-54.eml} +0 -0
  175. /data/set-of-emails/maildir/bsd/{lhost-gsuite-06.eml → rfc3464-55.eml} +0 -0
  176. /data/set-of-emails/maildir/bsd/{lhost-gsuite-07.eml → rfc3464-56.eml} +0 -0
  177. /data/set-of-emails/maildir/bsd/{lhost-gsuite-08.eml → rfc3464-57.eml} +0 -0
  178. /data/set-of-emails/maildir/bsd/{lhost-gsuite-09.eml → rfc3464-58.eml} +0 -0
  179. /data/set-of-emails/maildir/bsd/{lhost-gsuite-10.eml → rfc3464-59.eml} +0 -0
  180. /data/set-of-emails/maildir/bsd/{lhost-gsuite-11.eml → rfc3464-60.eml} +0 -0
  181. /data/set-of-emails/maildir/bsd/{lhost-gsuite-12.eml → rfc3464-61.eml} +0 -0
  182. /data/set-of-emails/maildir/bsd/{lhost-gsuite-13.eml → rfc3464-62.eml} +0 -0
  183. /data/set-of-emails/maildir/bsd/{lhost-gsuite-14.eml → rfc3464-63.eml} +0 -0
  184. /data/set-of-emails/maildir/bsd/{lhost-gsuite-15.eml → rfc3464-64.eml} +0 -0
  185. /data/set-of-emails/maildir/bsd/{lhost-gsuite-02.eml → rfc3464-65.eml} +0 -0
  186. /data/set-of-emails/maildir/bsd/{lhost-aol-01.eml → rhost-aol-01.eml} +0 -0
  187. /data/set-of-emails/maildir/bsd/{lhost-aol-02.eml → rhost-aol-02.eml} +0 -0
  188. /data/set-of-emails/maildir/bsd/{lhost-facebook-03.eml → rhost-facebook-03.eml} +0 -0
  189. /data/set-of-emails/maildir/bsd/{lhost-facebook-04.eml → rhost-facebook-04.eml} +0 -0
  190. /data/set-of-emails/maildir/bsd/{lhost-messagelabs-02.eml → rhost-messagelabs-02.eml} +0 -0
  191. /data/set-of-emails/maildir/bsd/{lhost-messagelabs-03.eml → rhost-messagelabs-03.eml} +0 -0
  192. /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-37.eml +0 -0
  193. /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-38.eml +0 -0
  194. /data/set-of-emails/maildir/{bsd → tmp}/rfc3464-39.eml +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b60a0c3953cb8512fed6e5e71e63780f8b6b681576f3a2b25787e7a98b42c36
4
- data.tar.gz: 722e000aa41aa57e4efced1cf9ce3fb1c9658a725a8a027b26b58a07b31b7408
3
+ metadata.gz: bab63d91aaae7cafcd3eb9fb7d5f10335abdf48ea110aa653e9b1cab0826295b
4
+ data.tar.gz: a0538d447059d4faf79d3d70de91fc131c1c8718fce4623ea0d1e6d11f4d76a8
5
5
  SHA512:
6
- metadata.gz: 7ff66c2010a0eb055c34a2827f9d5824641a463c574264594d422f54e484cbe002eef9500ae1cff2878906f15e694b77f0a74e70f2cd14cf89dfd16517b4d256
7
- data.tar.gz: 87a333ddb94b2f0a37c8921858e6f9be775e8f7d85a4c220fcf4a827748d230de0992049ee8e58f81e449525274290a51e7b6b7aadc93dde988e12baf654e3d3
6
+ metadata.gz: 8570d1381042de41fd967b5d63731d23b5d5dae98de06d72c8b67e34a47eb8f4d32bc792407eff2a1c336dc90b656999742dddedcb427f8abd3347b9184f7089
7
+ data.tar.gz: fe629b00d60cfffa2a8f3b37c86f9ae6796fb5baec6bf9383c36be996ffed2d672a5a546b4e279dd53a22b4e91411ba39981e1dea21d231fa07e547e96615456
@@ -37,7 +37,7 @@ jobs:
37
37
  strategy:
38
38
  fail-fast: false
39
39
  matrix:
40
- jruby: ["jruby-9.2", "jruby-9.4"]
40
+ jruby: ["jruby-9.4"]
41
41
  steps:
42
42
  - name: Checkout the repository(JRuby)
43
43
  uses: actions/checkout@v4
data/ChangeLog.md CHANGED
@@ -3,6 +3,118 @@ RELEASE NOTES for Ruby version of Sisimai
3
3
  - releases: "https://github.com/sisimai/rb-sisimai/releases"
4
4
  - download: "https://rubygems.org/gems/sisimai"
5
5
 
6
+ v5.2.1
7
+ ---------------------------------------------------------------------------------------------------
8
+ - release: "Wed, 12 Mar 2025 06:50:25 +0900 (JST)"
9
+ - version: "5.2.1"
10
+ - changes:
11
+ - Implement `Sisimai::Rhost::Cloudflare` #336 #337
12
+ - #333 NTT DOCOMO (Major Japanese mobile carrier) no longer returns a bounce mail due to domain
13
+ rejection or similar email settings, but instead were being delivered to the spam folder after
14
+ March 13th. #334
15
+
16
+ v5.2.0
17
+ ---------------------------------------------------------------------------------------------------
18
+ - release: "5.2.0"
19
+ - version: "Tue, 25 Feb 2025 11:17:31 +0900 (JST)"
20
+ - changes:
21
+ - **Keep compatibility with the Go language version of Sisimai** #311 #318 #327
22
+ - **BREAKING CHANGES AT EXTERNAL USER APIs**
23
+ - Changes in accessors of `Sisimai::Fact` and key names in JSON string
24
+ - `smtpagent` has been renamed to `decodedby` #323
25
+ - `smtpcommand` has been renamed to `command` #323
26
+ - Removed accessors/keys are still available until v5.5.0
27
+ - New accessor and key `feedbackid`, it is a field for the `Feedback-ID:` header of the
28
+ original message #328
29
+ - New bounce reason `Sisimai::Reason::Suppressed`
30
+ - New bounce reason `Sisimai::Reason::FailedSTARTTLS` #322
31
+ - **THERE ARE SOME BREAKING CHANGES AT INTERNAL APIs**
32
+ - `Sisimai::SMTP::Error` has been renamed to `Sisimai::SMTP::Failure` and the following methods
33
+ implemented: #309
34
+ - `is_temporary()`
35
+ - `is_hardbounce()`
36
+ - `is_softbounce()`
37
+ - `soft_or_hard()` has been removed
38
+ - Changes in `Sisimai::Rhost`
39
+ - `get()` method has been renamed to `find()`
40
+ - Fix bug in code to check the domain part of an email address as a remote hostname
41
+ - Add a new error message pattern: `hosted tenant which has no mail-enabled subscriptions'`
42
+ in `Sisimai::Rhost::Microsoft`
43
+ - Implement `name()` method
44
+ - Bug fix in `Sisimai::Rhost::Facebook`
45
+ - Remove `hardbounce` accessor from `Sisimai::Lhost` #313
46
+ - Implement `Sisimai::RFC3464::ThirdParty`
47
+ - Remove the following MTA modules from `Sisimai::Lhost` #315
48
+ - `Sisimai::RFC3464` can decode a bounce mail returned from services/MTAs below #317
49
+ - Amavis
50
+ - AmazonWorkMail
51
+ - Aol
52
+ - Barracuda
53
+ - Bigfoot
54
+ - Facebook
55
+ - McAfee
56
+ - MessageLabs
57
+ - Outlook
58
+ - PowerMTA
59
+ - Some codes for checking heaaders have been moved to `Sisimai::RFC3464::ThirdParty`
60
+ - ReceivingSES
61
+ - SendGrid
62
+ - SurfControl
63
+ - X5
64
+ - Yandex
65
+ - `Sisimai::Lhost::Exim` can decode a bounce mail returned from services/MTAs below
66
+ - MailRu
67
+ - MXLogic
68
+ - `Sisimai::Lhost::qmail` can decode a bounce mail returned from services/MTAs below
69
+ - X4
70
+ - Yahoo
71
+ - `Sisimai::Lhost::Exchange2007` can decode a bounce mail returned from Office365
72
+ - `Sisimai::Lhost::GSuite` has been renamed to `Sisimai::Lhost::GoogleWorkspace`
73
+ - `Sisimai::Lhost::AmazonSES` decodes only JSON formatted bounce mail notified from Amazon SNS
74
+ - The bounce mail from Amazon SES which have no JSON string is decoded by `Sisimai::RFC3464`
75
+ - Each error code table of the following MTA modules (removed at issue #315) have been moved to
76
+ `Sisimai::Rhost::*` #318
77
+ - Aol
78
+ - Facebook
79
+ - GSuite
80
+ - MessageLabs
81
+ - Outlook
82
+ - `Sisimai::MDA` has been renamed to `Sisimai::LDA`
83
+ - `Sisimai::RFC791` for the IPv4 address implemented #319
84
+ - `Sisimai::String.ipv4` has been moved/renamed to `Sisimai::RFC791.find`
85
+ - Implement `Sisimai::RFC791.is_ipv4address`
86
+ - `Sisimai::RFC1123.is_validhostname()` has been renamed to `is_internethost()`
87
+ - Implement `Sisimai::RFC1123.find()`
88
+ - #312 `Sisimai::RFC1894.field()` method detect a comment string (returns an array which have
89
+ 5 elements: ["field-name", "value-type", "value", "field-group", "comment"])
90
+ - `Reporting-MTA` indicates `lhost` in `Sisimai::RFC1894` (bug fix)
91
+ - Code improvement and bug fix at `Sisimai::Lhost::Exim`
92
+ - Remove needless condition for getting error messages
93
+ - Rewrite code for getting an SMTP reply code and a delivery status code
94
+ - Warn if `Sisimai::Message.load` method was called #302 #303
95
+ - Remove unused method `Sisimai::Order.deault` #304
96
+ - Fix bug in `Sisimai::Message.tidy()` method #305
97
+ - Code improvement in `Sisimai::RFC5322` and `Sisimai::ARF`
98
+ - Fix the minimum and the maximum SMTP Reply code: 221 and 557 in `Sisimai::SMTP::Reply`
99
+ - Add a new error message pattern in the followings:
100
+ - `Sisimai::Reason::BadReputation`
101
+ - `Sisimai::Reason::Blocked`
102
+ - `Sisimai::Reason::Filtered`
103
+ - `Sisimai::Reason::MailboxFull`
104
+ - `Sisimai::Reason::MesgTooBig`
105
+ - `Sisimai::Reason::RequirePTR`
106
+ - `Sisimai::Reason::SpamDetected`
107
+ - `Sisimai::Reason::SystemError`
108
+ - Remove regular expressions from error message patterns at the following classes: #308
109
+ - `Sisimai::Reason::Blocked`
110
+ - `Sisimai::Reason::MailerError`
111
+ - `Sisimai::Reason::SpamDetected`
112
+ - Fix typo in `Sisimai::Rhost::YahooInc` #310
113
+ - Bug fix: Unstable matching for getting an `Sisimai::Rhost::*` module name when the bounce mail
114
+ sent from Microsoft to Aol (Random key sort order of the Hash)
115
+ - Add `sv-SE` in `Sisimai::Lhost::Exchange2007`
116
+ - Large scale code improvement in `Sisimai::Lhost::V5sendmail`
117
+
6
118
  v5.1.0
7
119
  ---------------------------------------------------------------------------------------------------
8
120
  - release: "Mon, 1 Jul 2024 12:02:22 +0900 (JST)"
data/Makefile CHANGED
@@ -57,10 +57,12 @@ release:
57
57
 
58
58
  test: user-test author-test
59
59
  user-test:
60
- rake publictest
60
+ # Suppress warning messages until v5.5.0
61
+ rake publictest 2> /dev/null
61
62
 
62
63
  author-test:
63
- rake privatetest
64
+ # Suppress warning messages until v5.5.0
65
+ rake privatetest 2> /dev/null
64
66
 
65
67
  check:
66
68
  find lib -type f -exec grep --color -E ' $$' {} /dev/null \;
data/README-JA.md CHANGED
@@ -10,6 +10,11 @@
10
10
  > ブランチを見てください。また`main`や`master`ブランチはもうこのリポジトリでは使用していません。
11
11
  [^1]: 4系を`clone`する場合は`git clone -b 4-stable https://github.com/sisimai/rb-sisimai.git`
12
12
 
13
+ > [!CAUTION]
14
+ > **Sisimai 4.25.14p11およびそれ以前のバージョンには 正規表現に関する脆弱性
15
+ > [ReDoS: CVE-2022-4891](https://jvndb.jvn.jp/ja/contents/2022/JVNDB-2022-005663.html)があります。
16
+ > 該当するバージョンをお使いの場合はv4.25.14p12以降へアップグレードしてください。**
17
+
13
18
  > [!WARNING]
14
19
  > Sisimai 5はRuby 2.4以上が必要です。インストール/アップグレードを実行する前に`ruby -v`コマンドで
15
20
  > システムに入っているRubyのバージョンを確認してください。
@@ -60,14 +65,14 @@ Sisimai(シシマイ)は複雑で多種多様なバウンスメールを解析
60
65
  The key features of Sisimai
61
66
  ---------------------------------------------------------------------------------------------------
62
67
  * __バウンスメールを構造化したデータに変換__
63
- * 以下24項目の情報を含むデータ構造[^2]
68
+ * 以下26項目の情報を含むデータ構造[^2]
64
69
  * __基本的情報__: `timestamp`, `origin`
65
70
  * __発信者情報__: `addresser`, `senderdomain`,
66
71
  * __受信者情報__: `recipient`, `destination`, `alias`
67
- * __配信の情報__: `action`, `replycode`,`action`, `replycode`, `deliverystatus`
72
+ * __配信の情報__: `action`, `replycode`, `deliverystatus`, `command`
68
73
  * __エラー情報__: `reason`, `diagnosticcode`, `diagnostictype`, `feedbacktype`, `hardbounce`
69
74
  * __メール情報__: `subject`, `messageid`, `listid`,
70
- * __その他情報__: `smtpagent`, `timezoneoffset`, `lhost`, `rhost`, `token`, `catch`
75
+ * __その他情報__: `decodedby`, `timezoneoffset`, `lhost`, `rhost`, `token`, `catch`
71
76
  * __出力可能な形式__
72
77
  * Ruby (Hash, Array)
73
78
  * JSON
@@ -110,10 +115,10 @@ Install
110
115
  ### From RubyGems.org
111
116
  ```shell
112
117
  $ sudo gem install sisimai
113
- Fetching: sisimai-5.1.0.gem (100%)
114
- Successfully installed sisimai-5.1.0
115
- Parsing documentation for sisimai-5.1.0
116
- Installing ri documentation for sisimai-5.1.0
118
+ Fetching: sisimai-5.2.0.gem (100%)
119
+ Successfully installed sisimai-5.2.0
120
+ Parsing documentation for sisimai-5.2.0
121
+ Installing ri documentation for sisimai-5.2.0
117
122
  Done installing documentation for sisimai after 6 seconds
118
123
  1 gem installed
119
124
  ```
@@ -141,13 +146,13 @@ if [ -d "/usr/local/jr" ]; then \
141
146
  ...
142
147
  3 gems installed
143
148
  /opt/local/bin/rake install
144
- sisimai 5.1.0 built to pkg/sisimai-5.1.0.gem.
145
- sisimai (5.1.0) installed.
149
+ sisimai 5.2.0 built to pkg/sisimai-5.2.0.gem.
150
+ sisimai (5.2.0) installed.
146
151
  if [ -d "/usr/local/jr" ]; then \
147
152
  PATH="/usr/local/jr/bin:$PATH" /usr/local/jr/bin/rake install; \
148
153
  fi
149
- sisimai 5.1.0 built to pkg/sisimai-5.1.0-java.gem.
150
- sisimai (5.1.0) installed.
154
+ sisimai 5.2.0 built to pkg/sisimai-5.2.0-java.gem.
155
+ sisimai (5.2.0) installed.
151
156
  ```
152
157
 
153
158
  Usage
@@ -314,8 +319,8 @@ Output example
314
319
  "catch": null,
315
320
  "addresser": "michitsuna@example.jp",
316
321
  "alias": "nekochan@example.co.jp",
317
- "smtpagent": "Postfix",
318
- "smtpcommand": "DATA",
322
+ "decodedby": "Postfix",
323
+ "command": "DATA",
319
324
  "senderdomain": "example.jp",
320
325
  "listid": "",
321
326
  "action": "failed",
@@ -348,16 +353,16 @@ Sisimai 5.0.0から**Ruby 2.4以上**が必要になります。
348
353
 
349
354
  | 機能 | Sisimai 4 | Sisimai 5 |
350
355
  |------------------------------------------------------|--------------------|---------------------|
351
- | 動作環境(CRuby) | 2.1 - | **2.4** or later |
356
+ | 動作環境(CRuby) | 2.1 - 3.3.0 | **2.4** or later |
352
357
  | 動作環境(JRuby) | 9.0.4.0 - 9.1.17.0 | **9.2** or later |
353
358
  | 元メールファイルを操作可能なコールバック機能 | なし | あり[^3] |
354
- | 解析エンジン(MTA/ESPモジュール)の数 | 68 | 73 |
355
- | 検出可能なバウンス理由の数 | 29 | 34 |
359
+ | 解析エンジン(MTA/ESPモジュール)の数 | 68 | 58 |
360
+ | 検出可能なバウンス理由の数 | 29 | 36 |
356
361
  | 依存Gem数(Ruby Standard Gemsを除く) | 1 Gem | 1 Gem |
357
- | ソースコードの行数 | 10,800 行 | 11,660 |
362
+ | ソースコードの行数 | 10,800 行 | 9,860 |
358
363
  | テストフレームワーク | rspec | minitest |
359
- | テスト件数(spec/またはtest/ディレクトリ) | 311,000 件 | 414,000 件 |
360
- | 1秒間に解析できるバウンスメール数[^4] | 231 通 | 305 通 |
364
+ | テスト件数(spec/またはtest/ディレクトリ) | 311,000 件 | 410,000 件 |
365
+ | 1秒間に解析できるバウンスメール数[^4] | 290 通 | 360 通 |
361
366
  | ライセンス | 2条項BSD | 2条項BSD |
362
367
  | 開発会社による商用サポート | 提供中 | 提供中 |
363
368
 
@@ -410,6 +415,8 @@ Sisimai 5では新たに5個のバウンス理由が増えました。検出可
410
415
  | PTRレコードが未設定または無効なPTRレコード | `Blocked` | `RequirePTR` |
411
416
  | RFCに準拠していないメール[^7] | `SecurityError` | `NotCompliantRFC` |
412
417
  | 単位時間の流量制限・送信速度が速すぎる | `SecurityError` | `Speeding` |
418
+ | STARTTLS関連のエラー (added at v5.2.0) | `SecurityError` | `FailedSTARTTLS` |
419
+ | 宛先がサプレッションリストに一致 (added at v5.2.0) | `OnHold` | `Suppressed` |
413
420
 
414
421
  [^7]: RFC5322など
415
422
 
@@ -431,11 +438,11 @@ Related sites
431
438
  ---------------------------------------------------------------------------------------------------
432
439
  * __@libsisimai__ | [Sisimai on Twitter (@libsisimai)](https://twitter.com/libsisimai)
433
440
  * __LIBSISIMAI.ORG__ | [SISIMAI | MAIL ANALYZING INTERFACE | DECODING BOUNCES, BETTER AND FASTER.](https://libsisimai.org/)
434
- * __Sisimai Blog__ | [blog.libsisimai.org](http://blog.libsisimai.org/)
435
441
  * __Facebook Page__ | [facebook.com/libsisimai](https://www.facebook.com/libsisimai/)
436
442
  * __GitHub__ | [github.com/sisimai/rb-sisimai](https://github.com/sisimai/rb-sisimai)
437
443
  * __RubyGems.org__ | [rubygems.org/gems/sisimai](https://rubygems.org/gems/sisimai)
438
444
  * __Perl verson__ | [Perl version of Sisimai](https://github.com/sisimai/p5-sisimai)
445
+ * __Go verson__ | [Go version of Sisimai](https://github.com/sisimai/go-sisimai)
439
446
  * __Fixtures__ | [set-of-emails - Sample emails for "make test"](https://github.com/sisimai/set-of-emails)
440
447
 
441
448
  See also
@@ -453,7 +460,7 @@ Author
453
460
 
454
461
  Copyright
455
462
  ===================================================================================================
456
- Copyright (C) 2015-2024 azumakuniyuki, All Rights Reserved.
463
+ Copyright (C) 2015-2025 azumakuniyuki, All Rights Reserved.
457
464
 
458
465
  License
459
466
  ===================================================================================================
data/README.md CHANGED
@@ -11,6 +11,11 @@
11
11
  > branch instead. We have moved away from using both the `main` and `master` branches in our development process.
12
12
  [^1]: Specify `-b 4-stable` when you clone Sisimai 4 for example, `git clone -b 4-stable https://github.com/sisimai/rb-sisimai.git`
13
13
 
14
+ > [!CAUTION]
15
+ > **Sisimai versions 4.25.14p11 and earlier contain a regular expression vulnerability
16
+ > [ReDoS: CVE-2022-4891](https://nvd.nist.gov/vuln/detail/CVE-2022-4891).
17
+ > If you are using one of these versions, please upgrade to v4.25.14p12 or later.**
18
+
14
19
  > [!WARNING]
15
20
  > Sisimai 5 requires Ruby 2.4 or later. Check the version of Ruby in your system before installing/upgrading
16
21
  > by `ruby -v` command.
@@ -62,14 +67,14 @@ Perl version of Sisimai at [github.com/sisimai/p5-sisimai](https://github.com/si
62
67
  The key features of Sisimai
63
68
  ---------------------------------------------------------------------------------------------------
64
69
  * __Decode email bounces to structured data__
65
- * Sisimai provides detailed insights into bounce emails by extracting 24 key data points.[^2]
70
+ * Sisimai provides detailed insights into bounce emails by extracting 26 key data points.[^2]
66
71
  * __Essential information__: `timestamp`, `origin`
67
72
  * __Sender information__: `addresser`, `senderdomain`,
68
73
  * __Recipient information__: `recipient`, `destination`, `alias`
69
- * __Delivery information__: `action`, `replycode`,`action`, `replycode`, `deliverystatus`
70
- * __Bounce details__: `reason`, `diagnosticcode`, `diagnostictype`, `feedbacktype`, `hardbounce`
74
+ * __Delivery information__: `action`, `replycode`, `deliverystatus`, `command`
75
+ * __Bounce details__: `reason`, `diagnosticcode`, `diagnostictype`, `feedbacktype`, `feedbackid`, `hardbounce`
71
76
  * __Message details__: `subject`, `messageid`, `listid`,
72
- * __Additional information__: `smtpagent`, `timezoneoffset`, `lhost`, `rhost`, `token`, `catch`
77
+ * __Additional information__: `decodedby`, `timezoneoffset`, `lhost`, `rhost`, `token`, `catch`
73
78
  * Output formats
74
79
  * Ruby (Hash, Array)
75
80
  * JSON
@@ -80,9 +85,9 @@ The key features of Sisimai
80
85
  * `gem install`
81
86
  * `git clone && make`
82
87
  * __High Precision of Analysis__
83
- * Support [73 MTAs/MDAs/ESPs](https://libsisimai.org/en/engine/)
88
+ * Support [59 MTAs/MDAs/ESPs](https://libsisimai.org/en/engine/)
84
89
  * Support Feedback Loop Message(ARF)
85
- * Can detect [34 bounce reasons](https://libsisimai.org/en/reason/)
90
+ * Can detect [36 bounce reasons](https://libsisimai.org/en/reason/)
86
91
 
87
92
  [^2]: The callback function allows you to add your own data under the `catch` accessor.
88
93
 
@@ -109,10 +114,10 @@ Install
109
114
  ### From RubyGems
110
115
  ```shell
111
116
  $ sudo gem install sisimai
112
- Fetching: sisimai-5.1.0.gem (100%)
113
- Successfully installed sisimai-5.1.0
114
- Parsing documentation for sisimai-5.1.0
115
- Installing ri documentation for sisimai-5.1.0
117
+ Fetching: sisimai-5.2.1.gem (100%)
118
+ Successfully installed sisimai-5.2.1
119
+ Parsing documentation for sisimai-5.2.1
120
+ Installing ri documentation for sisimai-5.2.1
116
121
  Done installing documentation for sisimai after 6 seconds
117
122
  1 gem installed
118
123
  ```
@@ -140,13 +145,13 @@ if [ -d "/usr/local/jr" ]; then \
140
145
  ...
141
146
  3 gems installed
142
147
  /opt/local/bin/rake install
143
- sisimai 5.1.0 built to pkg/sisimai-5.1.0.gem.
144
- sisimai (5.1.0) installed.
148
+ sisimai 5.2.1 built to pkg/sisimai-5.2.1.gem.
149
+ sisimai (5.2.1) installed.
145
150
  if [ -d "/usr/local/jr" ]; then \
146
151
  PATH="/usr/local/jr/bin:$PATH" /usr/local/jr/bin/rake install; \
147
152
  fi
148
- sisimai 5.1.0 built to pkg/sisimai-5.1.0-java.gem.
149
- sisimai (5.1.0) installed.
153
+ sisimai 5.2.1 built to pkg/sisimai-5.2.1-java.gem.
154
+ sisimai (5.2.1) installed.
150
155
  ```
151
156
 
152
157
  Usage
@@ -313,8 +318,8 @@ Output example
313
318
  "catch": null,
314
319
  "addresser": "michitsuna@example.jp",
315
320
  "alias": "nekochan@example.co.jp",
316
- "smtpagent": "Postfix",
317
- "smtpcommand": "DATA",
321
+ "decodedby": "Postfix",
322
+ "command": "DATA",
318
323
  "senderdomain": "example.jp",
319
324
  "listid": "",
320
325
  "action": "failed",
@@ -350,13 +355,13 @@ Beginning with v5.0.0, Sisimai requires **Ruby 2.4.0 or later.**
350
355
  | System requirements (CRuby) | 2.1 - 3.3.0 | **2.4** or later |
351
356
  | System requirements (JRuby) | 9.0.4.0 - 9.1.17.0 | **9.2** or later |
352
357
  | Callback feature for the original email file | N/A | Available[^3] |
353
- | The number of MTA/ESP modules | 68 | 73 |
354
- | The number of detectable bounce reasons | 29 | 34 |
358
+ | The number of MTA/ESP modules | 68 | 59 |
359
+ | The number of detectable bounce reasons | 29 | 36 |
355
360
  | Dependencies (Except Ruby Standard Gems) | 1 gem | 1 gem |
356
- | Source lines of code | 10,300 lines | 11,660 lines |
361
+ | Source lines of code | 10,300 lines | 9,800 lines |
357
362
  | Test frameworks | rspec | minitest |
358
- | The number of tests in spec/ or test/ directory | 311,000 tests | 414,000 tests |
359
- | The number of bounce emails decoded/sec (CRuby)[^4] | 231 emails | 305 emails |
363
+ | The number of tests in spec/ or test/ directory | 311,000 tests | 410,000 tests |
364
+ | The number of bounce emails decoded/sec (CRuby)[^4] | 290 emails | 360 emails |
360
365
  | License | 2 Clause BSD | 2 Caluse BSD |
361
366
  | Commercial support | Available | Available |
362
367
 
@@ -411,6 +416,8 @@ detect is available at [LIBSISIMAI.ORG/EN/REASON](https://libsisimai.org/en/reas
411
416
  | missing PTR/having invalid PTR | `Blocked` | `RequirePTR` |
412
417
  | non-compliance with RFC[^7] | `SecurityError` | `NotCompliantRFC` |
413
418
  | exceeding a rate limit or sending too fast | `SecurityError` | `Speeding` |
419
+ | STARTTLS-related errors (added at v5.2.0) | `SecurityError` | `FailedSTARTTLS` |
420
+ | Recipient in the suppression list (added at v5.2.0) | `OnHold` | `Suppressed` |
414
421
 
415
422
  [^7]: RFC5322 and related RFCs
416
423
 
@@ -434,11 +441,11 @@ Related Sites
434
441
  ---------------------------------------------------------------------------------------------------
435
442
  * __@libsisimai__ | [Sisimai on Twitter (@libsisimai)](https://twitter.com/libsisimai)
436
443
  * __LIBSISIMAI.ORG__ | [SISIMAI | MAIL ANALYZING INTERFACE | DECODING BOUNCES, BETTER AND FASTER.](https://libsisimai.org/)
437
- * __Sisimai Blog__ | [blog.libsisimai.org](http://blog.libsisimai.org/)
438
444
  * __Facebook Page__ | [facebook.com/libsisimai](https://www.facebook.com/libsisimai/)
439
445
  * __GitHub__ | [github.com/sisimai/rb-sisimai](https://github.com/sisimai/rb-sisimai)
440
446
  * __RubyGems.org__ | [rubygems.org/gems/sisimai](https://rubygems.org/gems/sisimai)
441
447
  * __Perl verson__ | [Perl version of Sisimai](https://github.com/sisimai/p5-sisimai)
448
+ * __Go verson__ | [Go version of Sisimai](https://github.com/sisimai/go-sisimai)
442
449
  * __Fixtures__ | [set-of-emails - Sample emails for "make test"](https://github.com/sisimai/set-of-emails)
443
450
 
444
451
  See also
@@ -456,7 +463,7 @@ Author
456
463
 
457
464
  Copyright
458
465
  ===================================================================================================
459
- Copyright (C) 2015-2024 azumakuniyuki, All Rights Reserved.
466
+ Copyright (C) 2015-2025 azumakuniyuki, All Rights Reserved.
460
467
 
461
468
  License
462
469
  ===================================================================================================