Skip to content

Commit ad52331

Browse files
committed
#42 #72 Update the README files
1 parent b112299 commit ad52331

File tree

2 files changed

+13
-23
lines changed

2 files changed

+13
-23
lines changed

README-JA.md

+7-12
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The key features of Sisimai
4949
* __発信者情報__: `Addresser`, `SenderDomain`,
5050
* __受信者情報__: `Recipient`, `Destination`, `Alias`
5151
* __配信の情報__: `Action`, `ReplyCode`, `DeliveryStatus`, `Command`
52-
* __エラー情報__: `Reason`, `DiagnosticCode`, `DiagnosticType`, `FeedbackType`, `FeedbacID`, `hardbounce`
52+
* __エラー情報__: `Reason`, `DiagnosticCode`, `DiagnosticType`, `FeedbackType`, `FeedbacID`, `HardBounce`
5353
* __メール情報__: `Subject`, `MessageID`, `ListID`,
5454
* __その他情報__: `DecodedBy`, `TimezoneOffset`, `Lhost`, `Rhost`, `Token`, `Catch`
5555
* __出力可能な形式__
@@ -59,7 +59,7 @@ The key features of Sisimai
5959
* `$ go get -u libsisimai.org/sisimai@latest`
6060
* `import "libsisimai.org/sisimai"`
6161
* __高い解析精度__
62-
* [58種類のMTAs/MDAs/ESPs](https://libsisimai.org/en/engine/)に対応
62+
* [59種類のMTAs/MDAs/ESPs](https://libsisimai.org/en/engine/)に対応
6363
* Feedback Loop(ARF)にも対応
6464
* [36種類のバウンス理由](https://libsisimai.org/en/reason/)を検出
6565

@@ -79,8 +79,7 @@ System requirements
7979
をご覧ください。
8080

8181
* [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で標準モジュールを除く外部モジュール依存は無くなりました
8483

8584
Install
8685
---------------------------------------------------------------------------------------------------
@@ -92,8 +91,6 @@ $ go mod init example.com/sisimaicli
9291
go: creating new go.mod: module example.com/sisimaicli
9392

9493
$ 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
9794
go: added libsisimai.org/sisimai v5.2.0
9895

9996
$ cat ./go.mod
@@ -102,8 +99,6 @@ module example.com/sisimaicli
10299
go 1.20
103100

104101
require (
105-
golang.org/x/net v0.35.0 // indirect
106-
golang.org/x/text v0.22.0 // indirect
107102
libsisimai.org/sisimai v5.2.0 // indirect
108103
)
109104
```
@@ -380,13 +375,13 @@ Features
380375
| 機能 | Go | Perl | Ruby / JRuby |
381376
|-----------------------------------------|-----------------|-------------------|-----------------|
382377
| 動作環境 | 1.17 - | 5.26 - | 2.4 - / 9.2 - |
383-
| 依存モジュール数(標準パッケージを除く) | 2 パッケージ | 2 モジュール | 1 gem |
378+
| 依存モジュール数(標準パッケージを除く) | ** 0 ** | 2 モジュール | 1 gem |
384379
| 対応している文字コード | **UTF-8のみ** | UTF-8と他[^2] | UTF-8と他[^3] |
385-
| ソースコードの行数 | 9,100| 9,900 行 | 9,800 行 |
380+
| ソースコードの行数 | 9,000| 9,900 行 | 9,800 行 |
386381
| テスト件数 | 144,000 件 | 320,000 件 | 410,000 件 |
387-
| 1秒間に解析できるバウンスメール数[^4] | 1200 通 | 450 通 | 340|
382+
| 1秒間に解析できるバウンスメール数[^4] | 1200 通 | 450 通 | 360|
388383
| ライセンス | 二条項BSD | 二条項BSD | 二条項BSD |
389-
| 開発会社による商用サポート | 準備中 | 提供中 | 提供中 |
384+
| 開発会社による商用サポート | 提供中 | 提供中 | 提供中 |
390385

391386
[^2]: `Encode``Encode::Guess`に対応している文字コード
392387
[^3]: `String#encode`メソッドが解釈できる文字コード

README.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The key features of Sisimai
6262
* `$ go get -u libsisimai.org/sisimai@latest`
6363
* `import "libsisimai.org/sisimai"`
6464
* __High Precision of Analysis__
65-
* Support [58 MTAs/MDAs/ESPs](https://libsisimai.org/en/engine/)
65+
* Support [59 MTAs/MDAs/ESPs](https://libsisimai.org/en/engine/)
6666
* Support Feedback Loop Message(ARF)
6767
* Can detect [36 bounce reasons](https://libsisimai.org/en/reason/)
6868

@@ -84,8 +84,7 @@ More details about system requirements are available at
8484
[Sisimai | Getting Started](https://libsisimai.org/en/start/) page.
8585

8686
* [Go 1.17.0 or later](http://go.dev/dl/)
87-
* [golang.org/x/text/encoding](https://pkg.go.dev/golang.org/x/text/encoding)
88-
* [golang.org/x/net/html/charset](https://pkg.go.dev/golang.org/x/net/html/charset)
87+
* No external dependencies (excluding standard library) since v5.2.1
8988

9089
Install and Build
9190
---------------------------------------------------------------------------------------------------
@@ -97,8 +96,6 @@ $ go mod init example.com/sisimaicli
9796
go: creating new go.mod: module example.com/sisimaicli
9897

9998
$ go get -u libsisimai.org/sisimai@latest
100-
go: added golang.org/x/net v0.35.0
101-
go: added golang.org/x/text v0.22.0
10299
go: added libsisimai.org/sisimai v5.2.0
103100

104101
$ cat ./go.mod
@@ -107,8 +104,6 @@ module example.com/sisimaicli
107104
go 1.20
108105

109106
require (
110-
golang.org/x/net v0.35.0 // indirect
111-
golang.org/x/text v0.22.0 // indirect
112107
libsisimai.org/sisimai v5.2.0 // indirect
113108
)
114109
```
@@ -391,13 +386,13 @@ Features
391386
| Features | Go | Perl | Ruby / JRuby |
392387
|----------------------------------------------|----------------|-----------------|---------------|
393388
| System requirements | 1.17 - | 5.26 - | 2.4 - / 9.2 - |
394-
| Dependencies (Except standard libs) | 2 packages | 2 modules | 1 gem |
389+
| Dependencies (Except standard libs) | **0 packages** | 2 modules | 1 gem |
395390
| Supported character sets | **UTF-8 only** | UTF-8,etc. [^2] | UTF-8,etc.[^3]|
396-
| Source lines of code | 9,100 lines | 9,900 lines | 9,800 lines |
391+
| Source lines of code | 9,000 lines | 9,900 lines | 9,800 lines |
397392
| The number of tests | 144,000 tests | 320,000 tests | 410,000 tests |
398-
| The number of bounce emails decoded/sec [^4] | 1200 emails | 450 emails | 340 emails |
393+
| The number of bounce emails decoded/sec [^4] | 1200 emails | 450 emails | 360 emails |
399394
| License | 2 Clause BSD | 2 Caluse BSD | 2 Clause BSD |
400-
| Commercial support | Coming soon | Available | Available |
395+
| Commercial support | Available | Available | Available |
401396

402397
[^2]: Character sets supported by `Encode` and `Encode::Guess` modules
403398
[^3]: Character sets supported by `String#encode` method

0 commit comments

Comments
 (0)