mailreport 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 +17 -3
- data/lib/mailreport/version.rb +1 -1
- data/mailreport.gemspec +2 -3
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 77edcdf57f9e324d318c45251384bd4cc7a21340280654d686c1a42627df88bd
|
|
4
|
+
data.tar.gz: 6dbc12089ee32f07f8e1a6c9b8539ce3bb4d40069b21c879d151dd405a0426c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d35ab1ed5769680d4536e5cf32b790c75110757c15a4297f799f29e916f347514f4db719bedaee46cdaa2aa4ed8109b2c124800af6c9a382c7283cb28452ca79
|
|
7
|
+
data.tar.gz: 25ab27ad73f9cb8b67d9f704c528822ed19df7de3c32e1d1967401ccb3c2f96a6c9bda0a9649ccd54599c48f3ef9bef2b8e79532b7ab3400ece2ec3e59054974
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# mailreport
|
|
2
2
|
|
|
3
|
-
📧
|
|
3
|
+
📧 DMARC report parsing for Ruby.
|
|
4
4
|
|
|
5
|
-
Answers one question:
|
|
5
|
+
Answers one question: how does your mail look on their end?
|
|
6
|
+
|
|
7
|
+
**mailreport** reads the reports receivers send back about your domain.
|
|
6
8
|
|
|
7
9
|
## Features
|
|
8
10
|
|
|
@@ -20,11 +22,14 @@ Answers one question: what are receivers seeing?.
|
|
|
20
22
|
- [What Is Not Filled In](#what-is-not-filled-in)
|
|
21
23
|
- [Unreadable Documents](#unreadable-documents)
|
|
22
24
|
- [Testing](#testing)
|
|
25
|
+
- [History](#history)
|
|
23
26
|
- [Contributing](#contributing)
|
|
24
27
|
- [License](#license)
|
|
25
28
|
|
|
26
29
|
## Getting Started
|
|
27
30
|
|
|
31
|
+
Add this line to your application's Gemfile:
|
|
32
|
+
|
|
28
33
|
```ruby
|
|
29
34
|
gem "mailreport"
|
|
30
35
|
```
|
|
@@ -137,9 +142,18 @@ bundle install
|
|
|
137
142
|
rake
|
|
138
143
|
```
|
|
139
144
|
|
|
145
|
+
## History
|
|
146
|
+
|
|
147
|
+
View the [changelog](CHANGELOG.md).
|
|
148
|
+
|
|
140
149
|
## Contributing
|
|
141
150
|
|
|
142
|
-
|
|
151
|
+
Everyone is encouraged to help improve this project:
|
|
152
|
+
|
|
153
|
+
- [Report bugs](https://github.com/mailpiece/mailreport/issues)
|
|
154
|
+
- Fix bugs and submit pull requests
|
|
155
|
+
- Write, clarify, or fix documentation
|
|
156
|
+
- Suggest or add new features
|
|
143
157
|
|
|
144
158
|
## License
|
|
145
159
|
|
data/lib/mailreport/version.rb
CHANGED
data/mailreport.gemspec
CHANGED
|
@@ -7,10 +7,9 @@ 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 = "DMARC
|
|
13
|
-
spec.description = "Answers one question
|
|
11
|
+
spec.summary = "DMARC report parsing for Ruby."
|
|
12
|
+
spec.description = "Answers one question: how does your mail look on their end? Reads the reports receivers send back about your domain."
|
|
14
13
|
|
|
15
14
|
spec.homepage = "https://github.com/mailpiece/mailreport"
|
|
16
15
|
spec.license = "MIT"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mailreport
|
|
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
|
|
@@ -37,9 +37,8 @@ dependencies:
|
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '6.3'
|
|
40
|
-
description: 'Answers one question
|
|
41
|
-
|
|
42
|
-
- support@postrider.dev
|
|
40
|
+
description: 'Answers one question: how does your mail look on their end? Reads the
|
|
41
|
+
reports receivers send back about your domain.'
|
|
43
42
|
executables: []
|
|
44
43
|
extensions: []
|
|
45
44
|
extra_rdoc_files: []
|
|
@@ -79,5 +78,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
79
78
|
requirements: []
|
|
80
79
|
rubygems_version: 4.0.3
|
|
81
80
|
specification_version: 4
|
|
82
|
-
summary: DMARC
|
|
81
|
+
summary: DMARC report parsing for Ruby.
|
|
83
82
|
test_files: []
|