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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e07f3db5d808f4a1d3d9f4b53fe83f3f78f619008e14de533d4101cfe1f99a6e
4
- data.tar.gz: b2a4341195772ea43fe13a282a27dbcff914da3dbd232f7f0ad7ecbd144a1a59
3
+ metadata.gz: 475505e3807f1ffa431026bcce91ccf41f241a47eb48c85314ee0a2d3ceef68a
4
+ data.tar.gz: b848522dea5184b318a6666f600130dbf2a8172bd347d18d1758df9d558d6720
5
5
  SHA512:
6
- metadata.gz: f404a22a31ce871ab3e6fb948b0dc8ed5e1dafe9a85b74822fd5e30230f7d2b8ecfedea124370a349f4a139bbc7c136ea519f5ac46ad4f6f8c84518d74436abc
7
- data.tar.gz: fd63774ff78d90ef852e94a1994e1282beef51b23daffae422041c0a70a3d02a4e0beb9330639d821093fdcc391afc22855f0efcf5d8a743ddb8a526765c94f1
6
+ metadata.gz: 64e4d94d50f45823c5c5dc26f824fc4c7818e8cc5c31e5d53e267a45f29e6ac98da199edc900e5e583ae8468d00e13369d299a694130102b1f4142611495c8b1
7
+ data.tar.gz: 216ca4a564961a311306532736271f29c15cf900d64424d86e1578ae379ccc5fdac1470f94bcbdf3b5c1ab7cacc6ad6397cc99874fb52e4121abe70b29fe7f51
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1
4
+
5
+ Documentation
6
+
3
7
  ## 0.1.0
4
8
 
5
9
  Initial release.
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. Pure Ruby, no dependencies beyond `mail`.
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 | What it means |
56
- | --- | --- |
57
- | `:invalid` | The mailbox doesn't exist - the one category that says something lasting about the address |
58
- | `:full` | The mailbox exists and is over quota |
59
- | `:oversized` | This message was too large; another might not be |
60
- | `:blocked` | Policy, reputation, or the network - about the exchange, not the address |
61
- | `:unknown` | Nothing matched |
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/example/mailbounce/issues)
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).
@@ -1,3 +1,3 @@
1
1
  module MailBounce
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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 = "RFC 3464 delivery status notifications, parsed and classified, in pure Ruby."
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.0
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: RFC 3464 delivery status notifications, parsed and classified, in pure Ruby.
65
+ summary: Email delivery failures for Ruby.
68
66
  test_files: []