@@ -49,7 +49,7 @@ The key features of Sisimai
49
49
* __ 発信者情報__ : ` Addresser ` , ` SenderDomain ` ,
50
50
* __ 受信者情報__ : ` Recipient ` , ` Destination ` , ` Alias `
51
51
* __ 配信の情報__ : ` Action ` , ` ReplyCode ` , ` DeliveryStatus ` , ` Command `
52
- * __ エラー情報__ : ` Reason ` , ` DiagnosticCode ` , ` DiagnosticType ` , ` FeedbackType ` , ` FeedbacID ` , ` hardbounce `
52
+ * __ エラー情報__ : ` Reason ` , ` DiagnosticCode ` , ` DiagnosticType ` , ` FeedbackType ` , ` FeedbacID ` , ` HardBounce `
53
53
* __ メール情報__ : ` Subject ` , ` MessageID ` , ` ListID ` ,
54
54
* __ その他情報__ : ` DecodedBy ` , ` TimezoneOffset ` , ` Lhost ` , ` Rhost ` , ` Token ` , ` Catch `
55
55
* __ 出力可能な形式__
@@ -59,7 +59,7 @@ The key features of Sisimai
59
59
* ` $ go get -u libsisimai.org/sisimai@latest `
60
60
* ` import "libsisimai.org/sisimai" `
61
61
* __ 高い解析精度__
62
- * [ 58種類のMTAs /MDAs/ESPs] ( https://libsisimai.org/en/engine/ ) に対応
62
+ * [ 59種類のMTAs /MDAs/ESPs] ( https://libsisimai.org/en/engine/ ) に対応
63
63
* Feedback Loop(ARF)にも対応
64
64
* [ 36種類のバウンス理由] ( https://libsisimai.org/en/reason/ ) を検出
65
65
@@ -79,8 +79,7 @@ System requirements
79
79
をご覧ください。
80
80
81
81
* [ Go 1.17.0 or later] ( http://go.dev/dl/ )
82
- * [ golang.org/x/text/encoding] ( https://pkg.go.dev/golang.org/x/text/encoding )
83
- * [ golang.org/x/net/html/charset] ( https://pkg.go.dev/golang.org/x/net/html/charset )
82
+ * v5.2.1で標準モジュールを除く外部モジュール依存は無くなりました
84
83
85
84
Install
86
85
---------------------------------------------------------------------------------------------------
@@ -92,8 +91,6 @@ $ go mod init example.com/sisimaicli
92
91
go: creating new go.mod: module example.com/sisimaicli
93
92
94
93
$ go get -u libsisimai.org/sisimai@latest
95
- go: added golang.org/x/net v0.35.0
96
- go: added golang.org/x/text v0.22.0
97
94
go: added libsisimai.org/sisimai v5.2.0
98
95
99
96
$ cat ./go.mod
@@ -102,8 +99,6 @@ module example.com/sisimaicli
102
99
go 1.20
103
100
104
101
require (
105
- golang.org/x/net v0.35.0 // indirect
106
- golang.org/x/text v0.22.0 // indirect
107
102
libsisimai.org/sisimai v5.2.0 // indirect
108
103
)
109
104
```
@@ -380,13 +375,13 @@ Features
380
375
| 機能 | Go | Perl | Ruby / JRuby |
381
376
| -----------------------------------------| -----------------| -------------------| -----------------|
382
377
| 動作環境 | 1.17 - | 5.26 - | 2.4 - / 9.2 - |
383
- | 依存モジュール数(標準パッケージを除く) | 2 パッケージ | 2 モジュール | 1 gem |
378
+ | 依存モジュール数(標準パッケージを除く) | ** 0 ** | 2 モジュール | 1 gem |
384
379
| 対応している文字コード | ** UTF-8のみ** | UTF-8と他[ ^ 2 ] | UTF-8と他[ ^ 3 ] |
385
- | ソースコードの行数 | 9,100 行 | 9,900 行 | 9,800 行 |
380
+ | ソースコードの行数 | 9,000 行 | 9,900 行 | 9,800 行 |
386
381
| テスト件数 | 144,000 件 | 320,000 件 | 410,000 件 |
387
- | 1秒間に解析できるバウンスメール数[ ^ 4 ] | 1200 通 | 450 通 | 340 通 |
382
+ | 1秒間に解析できるバウンスメール数[ ^ 4 ] | 1200 通 | 450 通 | 360 通 |
388
383
| ライセンス | 二条項BSD | 二条項BSD | 二条項BSD |
389
- | 開発会社による商用サポート | 準備中 | 提供中 | 提供中 |
384
+ | 開発会社による商用サポート | 提供中 | 提供中 | 提供中 |
390
385
391
386
[ ^ 2 ] : ` Encode ` と` Encode::Guess ` に対応している文字コード
392
387
[ ^ 3 ] : ` String#encode ` メソッドが解釈できる文字コード
0 commit comments