mailbounce 0.1.0 → 0.1.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 +4 -0
- data/README.md +14 -14
- data/lib/mailbounce/version.rb +1 -1
- data/mailbounce.gemspec +1 -2
- metadata +2 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 475505e3807f1ffa431026bcce91ccf41f241a47eb48c85314ee0a2d3ceef68a
|
|
4
|
+
data.tar.gz: b848522dea5184b318a6666f600130dbf2a8172bd347d18d1758df9d558d6720
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64e4d94d50f45823c5c5dc26f824fc4c7818e8cc5c31e5d53e267a45f29e6ac98da199edc900e5e583ae8468d00e13369d299a694130102b1f4142611495c8b1
|
|
7
|
+
data.tar.gz: 216ca4a564961a311306532736271f29c15cf900d64424d86e1578ae379ccc5fdac1470f94bcbdf3b5c1ab7cacc6ad6397cc99874fb52e4121abe70b29fe7f51
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# mailbounce
|
|
2
2
|
|
|
3
|
-
📭 Email delivery failures for Ruby
|
|
3
|
+
📭 Email delivery failures for Ruby.
|
|
4
4
|
|
|
5
5
|
Answers one question about a rejected message: whose fault was it?
|
|
6
6
|
|
|
7
|
-
**mailbounce** reads the two ways mail comes back: a rejection during the SMTP session, and a delivery status notification (RFC 3464) arriving afterwards.
|
|
7
|
+
**mailbounce** reads the two ways mail comes back: a rejection during the SMTP session, and a delivery status notification (RFC 3464) arriving afterwards.
|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
@@ -24,6 +24,8 @@ Answers one question about a rejected message: whose fault was it?
|
|
|
24
24
|
- [Reading a Report](#reading-a-report)
|
|
25
25
|
- [Testing](#testing)
|
|
26
26
|
- [History](#history)
|
|
27
|
+
- [Contributing](#contributing)
|
|
28
|
+
- [License](#license)
|
|
27
29
|
|
|
28
30
|
## Getting Started
|
|
29
31
|
|
|
@@ -52,13 +54,13 @@ rejection.about_us? # => false
|
|
|
52
54
|
|
|
53
55
|
## Categories
|
|
54
56
|
|
|
55
|
-
| Category
|
|
56
|
-
|
|
|
57
|
-
| `:invalid`
|
|
58
|
-
| `:full`
|
|
59
|
-
| `:oversized` | This message was too large; another might not be
|
|
60
|
-
| `:blocked`
|
|
61
|
-
| `:unknown`
|
|
57
|
+
| Category | What it means |
|
|
58
|
+
| ------------ | ------------------------------------------------------------------------------------------ |
|
|
59
|
+
| `:invalid` | The mailbox doesn't exist - the one category that says something lasting about the address |
|
|
60
|
+
| `:full` | The mailbox exists and is over quota |
|
|
61
|
+
| `:oversized` | This message was too large; another might not be |
|
|
62
|
+
| `:blocked` | Policy, reputation, or the network - about the exchange, not the address |
|
|
63
|
+
| `:unknown` | Nothing matched |
|
|
62
64
|
|
|
63
65
|
Classification reads the enhanced status code first, then falls back to wording, since plenty of servers pair a bare `5.0.0` with a diagnostic that names the cause. The wording it knows is what Postfix, Exim, and Sendmail say by default - there's no per-provider table, since those go stale silently.
|
|
64
66
|
|
|
@@ -115,21 +117,19 @@ bundle install
|
|
|
115
117
|
rake
|
|
116
118
|
```
|
|
117
119
|
|
|
118
|
-
Nothing touches the network. Fixtures in `test/fixtures/` are complete bounce messages covering permanent failure, delay, transient failure, several recipients, an unnamed recipient, and a report with no machine-readable part at all.
|
|
119
|
-
|
|
120
120
|
## History
|
|
121
121
|
|
|
122
|
-
View the changelog
|
|
122
|
+
View the [changelog](CHANGELOG.md).
|
|
123
123
|
|
|
124
124
|
## Contributing
|
|
125
125
|
|
|
126
126
|
Everyone is encouraged to help improve this project:
|
|
127
127
|
|
|
128
|
-
- [Report bugs](https://github.com/
|
|
128
|
+
- [Report bugs](https://github.com/mailpiece/mailbounce/issues)
|
|
129
129
|
- Fix bugs and submit pull requests
|
|
130
130
|
- Write, clarify, or fix documentation
|
|
131
131
|
- Suggest or add new features
|
|
132
132
|
|
|
133
133
|
## License
|
|
134
134
|
|
|
135
|
-
MIT. See [LICENSE](LICENSE).
|
|
135
|
+
MIT. See [LICENSE](LICENSE).
|
data/lib/mailbounce/version.rb
CHANGED
data/mailbounce.gemspec
CHANGED
|
@@ -7,9 +7,8 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.platform = Gem::Platform::RUBY
|
|
8
8
|
spec.required_ruby_version = ">= 3.3.4"
|
|
9
9
|
spec.authors = [ "Simon Lev" ]
|
|
10
|
-
spec.email = [ "support@postrider.dev" ]
|
|
11
10
|
|
|
12
|
-
spec.summary = "
|
|
11
|
+
spec.summary = "Email delivery failures for Ruby."
|
|
13
12
|
spec.description = "Answers one question about a rejected message: whose fault was it?"
|
|
14
13
|
|
|
15
14
|
spec.homepage = "https://github.com/mailpiece/mailbounce"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mailbounce
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Lev
|
|
@@ -24,8 +24,6 @@ dependencies:
|
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
25
|
version: '2.7'
|
|
26
26
|
description: 'Answers one question about a rejected message: whose fault was it?'
|
|
27
|
-
email:
|
|
28
|
-
- support@postrider.dev
|
|
29
27
|
executables: []
|
|
30
28
|
extensions: []
|
|
31
29
|
extra_rdoc_files: []
|
|
@@ -64,5 +62,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
64
62
|
requirements: []
|
|
65
63
|
rubygems_version: 4.0.3
|
|
66
64
|
specification_version: 4
|
|
67
|
-
summary:
|
|
65
|
+
summary: Email delivery failures for Ruby.
|
|
68
66
|
test_files: []
|