smtp_mock 1.2.0 → 1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -3
- data/README.md +1 -1
- data/lib/smtp_mock/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70712db1d51d5327492ecb730f29e5019b68c33529c81bdacc96422917dcae1d
|
|
4
|
+
data.tar.gz: e70d2ea9e434ee4242e5ad9317894cec1ff89afa2e49e549554c68dae1ed6828
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38dd0ed89c25be25121fcfc4ddeb3261ba3cc3e75517510830b828ea895a662e273d11b2450bf1fe116f865f815ba19e59969a07cc2e44255bb8818a213adad4
|
|
7
|
+
data.tar.gz: 4755aa41982aacac8bf45935e69928d7379185b38e8049fe377d3be2ea8769b1d3e6a019d08f5e6d7daa31e6e0b9c89b7b9139b47b24d57c8e80aa8025b6a82f
|
data/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [1.2.1] - 2022-07-27
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed documentation
|
|
10
|
+
|
|
11
|
+
### Updated
|
|
12
|
+
|
|
13
|
+
- Updated gem documentation, version
|
|
14
|
+
|
|
5
15
|
## [1.2.0] - 2022-07-27
|
|
6
16
|
|
|
7
17
|
### Added
|
|
8
18
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
19
|
+
- Added ability to use `RSET` SMTP command
|
|
20
|
+
- Added ability to configure multiple message receiving flow during one session
|
|
21
|
+
- Added ability to configure SMTP command delay responses
|
|
12
22
|
|
|
13
23
|
### Updated
|
|
14
24
|
|
data/README.md
CHANGED
|
@@ -95,7 +95,7 @@ This gem includes easy system dependency manager. Run `bundle exec smtp_mock` wi
|
|
|
95
95
|
| `session_timeout: 60` | Session timeout in seconds. It's equal to 30 seconds by default |
|
|
96
96
|
| `shutdown_timeout: 5` | Graceful shutdown timeout in seconds. It's equal to 1 second by default |
|
|
97
97
|
| `fail_fast: true` | Enables fail fast scenario. Disabled by default |
|
|
98
|
-
| `
|
|
98
|
+
| `multiple_message_receiving: true` | Enables multiple message receiving scenario. Disabled by default |
|
|
99
99
|
| `blacklisted_helo_domains: %w[a.com b.com]` | Blacklisted `HELO` domains |
|
|
100
100
|
| `blacklisted_mailfrom_emails: %w[a@a.com b@b.com]` | Blacklisted `MAIL FROM` emails |
|
|
101
101
|
| `blacklisted_rcptto_emails: %w[c@c.com d@d.com]` | blacklisted `RCPT TO` emails |
|
data/lib/smtp_mock/version.rb
CHANGED