email_data 1605432951 → 1605814579
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/.github/CODEOWNERS +4 -0
- data/.github/FUNDING.yml +3 -2
- data/.github/ISSUE_TEMPLATE/bug_report.md +41 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +23 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +38 -0
- data/.github/dependabot.yml +15 -0
- data/.github/workflows/{tests.yml → ruby-tests.yml} +3 -3
- data/.rubocop.yml +6 -10
- data/CONTRIBUTING.md +77 -0
- data/Gemfile +0 -1
- data/Gemfile.lock +4 -3
- data/LICENSE.md +20 -0
- data/README.md +64 -41
- data/VERSION +1 -1
- data/bin/console +8 -6
- data/bin/helpers.rb +0 -0
- data/bin/setup +2 -0
- data/data/disposable_domains.txt +68 -5
- data/data/free_email_domains.txt +1 -0
- data/data/manual/free_email_domains.txt +1 -0
- data/email_data.gemspec +20 -14
- data/lib/email_data.rb +1 -0
- data/lib/email_data/source/active_record.rb +8 -0
- data/lib/email_data/source/file_system.rb +4 -0
- data/package.json +1 -1
- metadata +15 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1325c004dd2ef498d04e30eb8a8a8df06a591b235c878e1180ee9cd480eaa60f
|
4
|
+
data.tar.gz: 589136b1c9e4665be26e65ad89207ba3b429992d1cffa6323e7b5d076d598b72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4af26916f549d1425841bd4facf345d253550a7f893fd558bad75cac16907f73f2d09836012cb8ba85d8ba59af561903778c90748edbacfefd7021dd1ed2bcf0
|
7
|
+
data.tar.gz: b15e5f870927f7a005014ad4871e66cd89254002aa2480181a7ddc0a475a47250766bcf6fd45844de673a9b17cdb8cee6c4ef2bd6871ec5ccd443e36c31d38d0
|
data/.github/CODEOWNERS
ADDED
data/.github/FUNDING.yml
CHANGED
@@ -0,0 +1,41 @@
|
|
1
|
+
---
|
2
|
+
name: "🐛 Bug Report"
|
3
|
+
about: Report a reproducible bug or regression.
|
4
|
+
title: 'Bug: '
|
5
|
+
labels: 'Status: Unconfirmed'
|
6
|
+
|
7
|
+
---
|
8
|
+
|
9
|
+
<!--
|
10
|
+
- Please provide a clear and concise description of what the bug is.
|
11
|
+
- If possible, add an example reproducing your issue.
|
12
|
+
- Please test using the latest version of email_data
|
13
|
+
to make sure your issue has not already been fixed.
|
14
|
+
-->
|
15
|
+
|
16
|
+
## Description
|
17
|
+
|
18
|
+
[Add bug description here]
|
19
|
+
|
20
|
+
## How to reproduce
|
21
|
+
|
22
|
+
[Add steps on how to reproduce this issue]
|
23
|
+
|
24
|
+
## What do you expect
|
25
|
+
|
26
|
+
[Describe what do you expect to happen]
|
27
|
+
|
28
|
+
## What happened instead
|
29
|
+
|
30
|
+
[Describe the actual results]
|
31
|
+
|
32
|
+
## Software:
|
33
|
+
|
34
|
+
- Gem version: [Add gem version here]
|
35
|
+
- Ruby version: [Add version here]
|
36
|
+
|
37
|
+
## Full backtrace
|
38
|
+
|
39
|
+
```text
|
40
|
+
[Paste full backtrace here]
|
41
|
+
```
|
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
name: "💡 Feature request"
|
3
|
+
about: Have an idea that may be useful? Make a suggestion!
|
4
|
+
title: 'Feature Request: '
|
5
|
+
labels: 'Feature request'
|
6
|
+
|
7
|
+
---
|
8
|
+
|
9
|
+
## Description
|
10
|
+
|
11
|
+
_A clear and concise description of what the problem is._
|
12
|
+
|
13
|
+
## Describe the solution
|
14
|
+
|
15
|
+
_A clear and concise description of what you want to happen._
|
16
|
+
|
17
|
+
## Alternatives you considered
|
18
|
+
|
19
|
+
_A clear and concise description of any alternative solutions or features you've considered._
|
20
|
+
|
21
|
+
## Additional context
|
22
|
+
|
23
|
+
_Add any other context, screenshots, links, etc about the feature request here._
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<!--
|
2
|
+
If you're making a doc PR or something tiny where the below is irrelevant,
|
3
|
+
delete this template and use a short description, but in your description aim to
|
4
|
+
include both what the change is, and why it is being made, with enough context
|
5
|
+
for anyone to understand.
|
6
|
+
-->
|
7
|
+
|
8
|
+
<details>
|
9
|
+
<summary>PR Checklist</summary>
|
10
|
+
|
11
|
+
### PR Structure
|
12
|
+
|
13
|
+
- [ ] This PR has reasonably narrow scope (if not, break it down into smaller
|
14
|
+
PRs).
|
15
|
+
- [ ] This PR avoids mixing refactoring changes with feature changes (split into
|
16
|
+
two PRs otherwise).
|
17
|
+
- [ ] This PR's title starts is concise and descriptive.
|
18
|
+
|
19
|
+
### Thoroughness
|
20
|
+
|
21
|
+
- [ ] This PR adds tests for the most critical parts of the new functionality or
|
22
|
+
fixes.
|
23
|
+
- [ ] I've updated any docs, `.md` files, etc… affected by this change.
|
24
|
+
|
25
|
+
</details>
|
26
|
+
|
27
|
+
### What
|
28
|
+
|
29
|
+
[TODO: Short statement about what is changing.]
|
30
|
+
|
31
|
+
### Why
|
32
|
+
|
33
|
+
[TODO: Why this change is being made. Include any context required to understand
|
34
|
+
the why.]
|
35
|
+
|
36
|
+
### Known limitations
|
37
|
+
|
38
|
+
[TODO or N/A]
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
# Documentation:
|
3
|
+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
4
|
+
|
5
|
+
version: 2
|
6
|
+
updates:
|
7
|
+
- package-ecosystem: "github-actions"
|
8
|
+
directory: "/"
|
9
|
+
schedule:
|
10
|
+
interval: "daily"
|
11
|
+
|
12
|
+
- package-ecosystem: "bundler"
|
13
|
+
directory: "/"
|
14
|
+
schedule:
|
15
|
+
interval: "daily"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
name:
|
1
|
+
name: ruby-tests
|
2
2
|
|
3
3
|
on:
|
4
4
|
pull_request:
|
@@ -15,7 +15,7 @@ jobs:
|
|
15
15
|
strategy:
|
16
16
|
fail-fast: false
|
17
17
|
matrix:
|
18
|
-
ruby: ["2.7.x", "2.6.x"
|
18
|
+
ruby: ["2.7.x", "2.6.x"]
|
19
19
|
|
20
20
|
services:
|
21
21
|
postgres:
|
@@ -26,7 +26,7 @@ jobs:
|
|
26
26
|
--health-retries 5
|
27
27
|
|
28
28
|
steps:
|
29
|
-
- uses: actions/checkout@
|
29
|
+
- uses: actions/checkout@v2.3.4
|
30
30
|
|
31
31
|
- uses: actions/cache@v2
|
32
32
|
with:
|
data/.rubocop.yml
CHANGED
@@ -3,18 +3,14 @@ inherit_gem:
|
|
3
3
|
rubocop-fnando: .rubocop.yml
|
4
4
|
|
5
5
|
AllCops:
|
6
|
-
TargetRubyVersion: 2.
|
6
|
+
TargetRubyVersion: 2.6
|
7
7
|
NewCops: enable
|
8
8
|
|
9
|
+
Metrics/BlockLength:
|
10
|
+
Enabled: false
|
11
|
+
|
9
12
|
Metrics/AbcSize:
|
10
|
-
|
11
|
-
- test/support/**/*
|
13
|
+
Enabled: false
|
12
14
|
|
13
15
|
Metrics/MethodLength:
|
14
|
-
|
15
|
-
- test/support/**/*
|
16
|
-
|
17
|
-
Metrics/BlockLength:
|
18
|
-
Exclude:
|
19
|
-
- email_data.gemspec
|
20
|
-
- test/support/**/*
|
16
|
+
Enabled: false
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
# Contributing to email_data
|
2
|
+
|
3
|
+
👍🎉 First off, thanks for taking the time to contribute! 🎉👍
|
4
|
+
|
5
|
+
The following is a set of guidelines for contributing to this project. These are
|
6
|
+
mostly guidelines, not rules. Use your best judgment, and feel free to propose
|
7
|
+
changes to this document in a pull request.
|
8
|
+
|
9
|
+
## Code of Conduct
|
10
|
+
|
11
|
+
Everyone interacting in this project's codebases, issue trackers, chat rooms and
|
12
|
+
mailing lists is expected to follow the
|
13
|
+
[code of conduct](https://github.com/fnando/email_data/blob/main/CODE_OF_CONDUCT.md).
|
14
|
+
|
15
|
+
## Reporting bugs
|
16
|
+
|
17
|
+
This section guides you through submitting a bug report. Following these
|
18
|
+
guidelines helps maintainers and the community understand your report, reproduce
|
19
|
+
the behavior, and find related reports.
|
20
|
+
|
21
|
+
- Before creating bug reports, please check the open issues; somebody may
|
22
|
+
already have submitted something similar, and you may not need to create a new
|
23
|
+
one.
|
24
|
+
- When you are creating a bug report, please include as many details as
|
25
|
+
possible, with an example reproducing the issue.
|
26
|
+
|
27
|
+
## Contributing with code
|
28
|
+
|
29
|
+
Before making any radicals changes, please make sure you discuss your intention
|
30
|
+
by [opening an issue on Github](https://github.com/fnando/email_data/issues).
|
31
|
+
|
32
|
+
When you're ready to make your pull request, follow checklist below to make sure
|
33
|
+
your contribution is according to how this project works.
|
34
|
+
|
35
|
+
1. [Fork](https://help.github.com/forking/) email_data
|
36
|
+
2. Create a topic branch - `git checkout -b my_branch`
|
37
|
+
3. Make your changes using [descriptive commit messages](#commit-messages)
|
38
|
+
4. Push to your branch - `git push origin my_branch`
|
39
|
+
5. [Create a pull request](https://help.github.com/articles/creating-a-pull-request)
|
40
|
+
6. That's it!
|
41
|
+
|
42
|
+
## Styleguides
|
43
|
+
|
44
|
+
### Commit messages
|
45
|
+
|
46
|
+
- Use the present tense ("Add feature" not "Added feature")
|
47
|
+
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
|
48
|
+
- Limit the first line to 72 characters or less
|
49
|
+
- Reference issues and pull requests liberally after the first line
|
50
|
+
|
51
|
+
### Changelog
|
52
|
+
|
53
|
+
- Add a message describing your changes to the "Unreleased" section. The
|
54
|
+
changelog message should follow the same style as the commit message.
|
55
|
+
- Prefix your message with one of the following:
|
56
|
+
- `[Added]` for new features.
|
57
|
+
- `[Changed]` for changes in existing functionality.
|
58
|
+
- `[Deprecated]` for soon-to-be removed features.
|
59
|
+
- `[Removed]` for now removed features.
|
60
|
+
- `[Fixed]` for any bug fixes.
|
61
|
+
- `[Security]` in case of vulnerabilities.
|
62
|
+
|
63
|
+
### Ruby code
|
64
|
+
|
65
|
+
- This project uses [Rubocop](https://rubocop.org) to enforce code style. Before
|
66
|
+
submitting your changes, make sure your tests are passing and code conforms to
|
67
|
+
the expected style by running `rake`.
|
68
|
+
- Do not change the library version. This will be done by the maintainer
|
69
|
+
whenever a new version is about to be released.
|
70
|
+
|
71
|
+
### JavaScript code
|
72
|
+
|
73
|
+
- This project uses [ESLint](https://eslint.org) to enforce code style. Before
|
74
|
+
submitting your changes, make sure your tests are passing and code conforms to
|
75
|
+
the expected style by running `yarn test:ci`.
|
76
|
+
- Do not change the library version. This will be done by the maintainer
|
77
|
+
whenever a new version is about to be released.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
email_data (
|
4
|
+
email_data (1605814579)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -38,9 +38,10 @@ GEM
|
|
38
38
|
rake (13.0.1)
|
39
39
|
regexp_parser (1.8.2)
|
40
40
|
rexml (3.2.4)
|
41
|
-
root_domain (0.1.
|
41
|
+
root_domain (0.1.2)
|
42
|
+
email_data
|
42
43
|
simpleidn
|
43
|
-
rubocop (1.3.
|
44
|
+
rubocop (1.3.1)
|
44
45
|
parallel (~> 1.10)
|
45
46
|
parser (>= 2.7.1.5)
|
46
47
|
rainbow (>= 2.2.2, < 4.0)
|
data/LICENSE.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Nando Vieira
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,14 +1,11 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
[](https://www.npmjs.com/package/@fnando/email_data)
|
10
|
-
- License:
|
11
|
-

|
1
|
+
# email_data
|
2
|
+
|
3
|
+
[](https://github.com/fnando/email_data)
|
4
|
+
[](https://codeclimate.com/github/fnando/email_data)
|
5
|
+
[](https://rubygems.org/gems/email_data)
|
6
|
+
[](https://rubygems.org/gems/email_data)
|
7
|
+
[](https://npmjs.org/package/@fnando/email_data)
|
8
|
+
[](https://npmjs.org/package/@fnando/email_data)
|
12
9
|
|
13
10
|
This project is a compilation of datasets related to emails.
|
14
11
|
|
@@ -20,25 +17,21 @@ This project is a compilation of datasets related to emails.
|
|
20
17
|
The data is compiled from several different sources, so thank you all for making
|
21
18
|
this data available.
|
22
19
|
|
23
|
-
##
|
20
|
+
## Ruby
|
21
|
+
|
22
|
+
### Installation
|
24
23
|
|
25
|
-
|
24
|
+
```bash
|
25
|
+
gem install email_data
|
26
|
+
```
|
26
27
|
|
27
|
-
|
28
|
+
Or add the following line to your project's Gemfile:
|
28
29
|
|
29
30
|
```ruby
|
30
31
|
gem "email_data"
|
31
32
|
```
|
32
33
|
|
33
|
-
|
34
|
-
|
35
|
-
$ bundle install
|
36
|
-
|
37
|
-
Or install it yourself as:
|
38
|
-
|
39
|
-
$ gem install email_data
|
40
|
-
|
41
|
-
#### Usage
|
34
|
+
### Usage
|
42
35
|
|
43
36
|
```ruby
|
44
37
|
require "email_data"
|
@@ -58,6 +51,18 @@ EmailData.free_email_domains
|
|
58
51
|
|
59
52
|
# List of roles. Can be used to filter out emails like info@ or all@.
|
60
53
|
EmailData.roles
|
54
|
+
|
55
|
+
# List of private relays like Apple's Hide My Email.
|
56
|
+
EmailData.private_relays
|
57
|
+
|
58
|
+
# List of country tlds.
|
59
|
+
EmailData.country_tlds
|
60
|
+
|
61
|
+
# List of official tlds.
|
62
|
+
EmailData.tlds
|
63
|
+
|
64
|
+
# List of second-level domains.
|
65
|
+
EmailData.slds
|
61
66
|
```
|
62
67
|
|
63
68
|
#### Data sources
|
@@ -98,6 +103,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
|
|
98
103
|
|
99
104
|
add_index :tlds, :name, unique: true
|
100
105
|
|
106
|
+
create_table :slds do |t|
|
107
|
+
t.citext :name, null: false
|
108
|
+
end
|
109
|
+
|
110
|
+
add_index :slds, :name, unique: true
|
111
|
+
|
101
112
|
create_table :country_tlds do |t|
|
102
113
|
t.citext :name, null: false
|
103
114
|
end
|
@@ -127,6 +138,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
|
|
127
138
|
end
|
128
139
|
|
129
140
|
add_index :roles, :name, unique: true
|
141
|
+
|
142
|
+
create_table :private_relays do |t|
|
143
|
+
t.citext :name, null: false
|
144
|
+
end
|
145
|
+
|
146
|
+
add_index :private_relays, :name, unique: true
|
130
147
|
end
|
131
148
|
end
|
132
149
|
```
|
@@ -155,11 +172,13 @@ The you can load each dataset using `COPY`:
|
|
155
172
|
|
156
173
|
```sql
|
157
174
|
COPY tlds (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/tlds.txt';
|
175
|
+
COPY slds (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/slds.txt';
|
158
176
|
COPY country_tlds (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/country_tlds.txt';
|
159
177
|
COPY disposable_emails (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/disposable_emails.txt';
|
160
178
|
COPY disposable_domains (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/disposable_domains.txt';
|
161
179
|
COPY free_email_domains (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/free_email_domains.txt';
|
162
180
|
COPY roles (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/roles.txt';
|
181
|
+
COPY private_relays (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/private_relays.txt';
|
163
182
|
```
|
164
183
|
|
165
184
|
Alternatively, you could create a migrate that executes that same command; given
|
@@ -181,16 +200,20 @@ class LoadEmailData < ActiveRecord::Migration[6.1]
|
|
181
200
|
end
|
182
201
|
|
183
202
|
copy.call(:tlds)
|
203
|
+
copy.call(:slds)
|
184
204
|
copy.call(:country_tlds)
|
185
205
|
copy.call(:disposable_emails)
|
186
206
|
copy.call(:disposable_domains)
|
187
207
|
copy.call(:free_email_domains)
|
188
208
|
copy.call(:roles)
|
209
|
+
copy.call(:private_relays)
|
189
210
|
end
|
190
211
|
end
|
191
212
|
```
|
192
213
|
|
193
|
-
|
214
|
+
## Node.js
|
215
|
+
|
216
|
+
### Installation
|
194
217
|
|
195
218
|
```console
|
196
219
|
$ yarn add @fnando/email_data
|
@@ -202,13 +225,17 @@ or
|
|
202
225
|
$ npm install @fnando/email_data
|
203
226
|
```
|
204
227
|
|
205
|
-
|
228
|
+
### Usage
|
206
229
|
|
207
230
|
```js
|
208
231
|
const disposableEmails = require("@fnando/email_data/data/json/disposable_emails.json");
|
209
232
|
const disposableDomains = require("@fnando/email_data/data/json/disposable_domains.json");
|
210
233
|
const freeEmailDomains = require("@fnando/email_data/data/json/free_email_domains.json");
|
211
234
|
const roles = require("@fnando/email_data/data/json/roles.json");
|
235
|
+
const privateRelays = require("@fnando/email_data/data/json/private_relays.json");
|
236
|
+
const tlds = require("@fnando/email_data/data/json/tlds.json");
|
237
|
+
const slds = require("@fnando/email_data/data/json/slds.json");
|
238
|
+
const cctlds = require("@fnando/email_data/data/json/country_tlds.json");
|
212
239
|
```
|
213
240
|
|
214
241
|
## Dataset
|
@@ -224,34 +251,30 @@ like to add, please make a pull request against the files `data/manual/*.txt`.
|
|
224
251
|
- `data/manual/free_email_domains.txt`: only free email services must go here.
|
225
252
|
- `data/manual/roles.txt`: list of role-based user names like `info` or
|
226
253
|
`no-reply`.
|
254
|
+
- `data/manual/private_relays.txt`: list of private relay services, like Apple's
|
255
|
+
Hide My Email.
|
227
256
|
|
228
|
-
##
|
257
|
+
## Maintainer
|
229
258
|
|
230
|
-
|
231
|
-
`rake test` to run the tests. You can also run `bin/console` for an interactive
|
232
|
-
prompt that will allow you to experiment.
|
259
|
+
- [Nando Vieira](https://github.com/fnando)
|
233
260
|
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
git commits and tags, and push the `.gem` file to
|
238
|
-
[rubygems.org](https://rubygems.org).
|
261
|
+
## Contributors
|
262
|
+
|
263
|
+
- https://github.com/fnando/email_data/contributors
|
239
264
|
|
240
265
|
## Contributing
|
241
266
|
|
242
|
-
|
243
|
-
https://github.com/fnando/email_data.
|
244
|
-
welcoming space for collaboration, and contributors are expected to adhere to
|
245
|
-
the
|
246
|
-
[code of conduct](https://github.com/fnando/email_data/blob/main/CODE_OF_CONDUCT.md).
|
267
|
+
For more details about how to contribute, please read
|
268
|
+
https://github.com/fnando/email_data/blob/main/CONTRIBUTING.md.
|
247
269
|
|
248
270
|
## License
|
249
271
|
|
250
272
|
The gem is available as open source under the terms of the
|
251
|
-
[MIT License](https://opensource.org/licenses/MIT).
|
273
|
+
[MIT License](https://opensource.org/licenses/MIT). A copy of the license can be
|
274
|
+
found at https://github.com/fnando/email_data/blob/main/LICENSE.md.
|
252
275
|
|
253
276
|
## Code of Conduct
|
254
277
|
|
255
|
-
Everyone interacting in the
|
278
|
+
Everyone interacting in the email_data project's codebases, issue trackers, chat
|
256
279
|
rooms and mailing lists is expected to follow the
|
257
280
|
[code of conduct](https://github.com/fnando/email_data/blob/main/CODE_OF_CONDUCT.md).
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
1605814579
|
data/bin/console
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
require "bundler/setup"
|
4
5
|
require "email_data"
|
@@ -6,9 +7,10 @@ require "email_data"
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
8
9
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start(__FILE__)
|
10
|
+
begin
|
11
|
+
require "pry"
|
12
|
+
Pry.start
|
13
|
+
rescue LoadError
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
16
|
+
end
|
data/bin/helpers.rb
CHANGED
File without changes
|
data/bin/setup
CHANGED
data/data/disposable_domains.txt
CHANGED
@@ -33,6 +33,7 @@
|
|
33
33
|
001xs.net
|
34
34
|
001xs.org
|
35
35
|
001xs.xyz
|
36
|
+
002.city
|
36
37
|
002288211.com
|
37
38
|
002r.com
|
38
39
|
002t.com
|
@@ -6988,6 +6989,7 @@
|
|
6988
6989
|
8verxcdkrfal61pfag.tk
|
6989
6990
|
8vkopg.us
|
6990
6991
|
8vnond.us
|
6992
|
+
8w903.buzz
|
6991
6993
|
8wehgc2atizw.cf
|
6992
6994
|
8wehgc2atizw.ga
|
6993
6995
|
8wehgc2atizw.gq
|
@@ -7027,6 +7029,7 @@
|
|
7027
7029
|
8xgui.com
|
7028
7030
|
8xgun.com
|
7029
7031
|
8xgve.com
|
7032
|
+
8xi.org
|
7030
7033
|
8xzr.com
|
7031
7034
|
8ycxiazai.com
|
7032
7035
|
8ycxz.com
|
@@ -7773,6 +7776,7 @@ a02sjv3e4e8jk4liat.gq
|
|
7773
7776
|
a02sjv3e4e8jk4liat.ml
|
7774
7777
|
a02sjv3e4e8jk4liat.tk
|
7775
7778
|
a0f7ukc.com
|
7779
|
+
a0fnjd.us
|
7776
7780
|
a0reklama.pl
|
7777
7781
|
a0txa.icu
|
7778
7782
|
a0ywhm.us
|
@@ -8374,6 +8378,7 @@ accumolecular.com
|
|
8374
8378
|
accur8.net
|
8375
8379
|
accuracyis.com
|
8376
8380
|
accuranker.tech
|
8381
|
+
accuratecallabs.com
|
8377
8382
|
accuratecallabs.net
|
8378
8383
|
accurateforum.info
|
8379
8384
|
accuratehealthman.xyz
|
@@ -10214,6 +10219,7 @@ alcsehar.ml
|
|
10214
10219
|
alcsehar.tk
|
10215
10220
|
alcsx.site
|
10216
10221
|
alcyonoid.info
|
10222
|
+
aldawaeya.org
|
10217
10223
|
aldealdi.shop
|
10218
10224
|
aldeaminera.info
|
10219
10225
|
aldemimea.xyz
|
@@ -10432,6 +10438,7 @@ alisverisistan.net
|
|
10432
10438
|
alitaj.com
|
10433
10439
|
alittle.website
|
10434
10440
|
alivance.com
|
10441
|
+
aliveinlosangeles.com
|
10435
10442
|
alivemail.cf
|
10436
10443
|
alivemail.ga
|
10437
10444
|
alivemail.gq
|
@@ -14839,7 +14846,9 @@ bahisstar221.com
|
|
14839
14846
|
bahisstar226.com
|
14840
14847
|
bahisstar228.com
|
14841
14848
|
bahisstar229.com
|
14849
|
+
bahistek39.com
|
14842
14850
|
bahistek40.com
|
14851
|
+
bahistek86.com
|
14843
14852
|
bahisturk14.com
|
14844
14853
|
bahisturk17.com
|
14845
14854
|
bahisturk23.com
|
@@ -17000,6 +17009,7 @@ betnis87.com
|
|
17000
17009
|
betnis89.com
|
17001
17010
|
betodesa.com
|
17002
17011
|
betoffice206.com
|
17012
|
+
betoffice224.com
|
17003
17013
|
betofis.net
|
17004
17014
|
betofis10.com
|
17005
17015
|
betofis101.com
|
@@ -17942,6 +17952,7 @@ birminghamalcoholrehab.com
|
|
17942
17952
|
birminghamcocainerehab.com
|
17943
17953
|
birminghamfans.com
|
17944
17954
|
birminghamheroinrehab.com
|
17955
|
+
birminghamquote.com
|
17945
17956
|
biro.gq
|
17946
17957
|
biro.ml
|
17947
17958
|
biro.tk
|
@@ -18442,6 +18453,7 @@ blogcash.com
|
|
18442
18453
|
blogcast.blog
|
18443
18454
|
blogcast.lgbt
|
18444
18455
|
blogcast.us
|
18456
|
+
blogchannels.com
|
18445
18457
|
blogcollege.com
|
18446
18458
|
blogdad.com
|
18447
18459
|
blogdiary.live
|
@@ -19900,6 +19912,7 @@ brisbanephotobooth.com
|
|
19900
19912
|
bristlebrush.us
|
19901
19913
|
bristlebrushes.biz
|
19902
19914
|
bristlebrushes.us
|
19915
|
+
bristol-drones.com
|
19903
19916
|
britainst.com
|
19904
19917
|
britbarnmi.ga
|
19905
19918
|
britbarnmi.gq
|
@@ -20080,6 +20093,7 @@ brvbfj.shop
|
|
20080
20093
|
brxqoy.cf
|
20081
20094
|
bryanle.com
|
20082
20095
|
bryanlgx.com
|
20096
|
+
bryanslist.com
|
20083
20097
|
brymstonne.org
|
20084
20098
|
brypeterson.com
|
20085
20099
|
bryskumde.cf
|
@@ -20677,6 +20691,7 @@ buvertu.cf
|
|
20677
20691
|
buvertu.ga
|
20678
20692
|
buvertu.gq
|
20679
20693
|
buvertu.ml
|
20694
|
+
buvetti.com
|
20680
20695
|
buxap.com
|
20681
20696
|
buxl.com
|
20682
20697
|
buxod.com
|
@@ -20746,6 +20761,7 @@ buydispensary.icu
|
|
20746
20761
|
buydubaimarinaproperty.com
|
20747
20762
|
buyeqaslim.com
|
20748
20763
|
buyeriacta10pills.com
|
20764
|
+
buyershop.info
|
20749
20765
|
buyessays-nice.org
|
20750
20766
|
buyfacebooklikeslive.com
|
20751
20767
|
buyfcbkfans.com
|
@@ -21063,6 +21079,7 @@ buyyourtoledohome.com
|
|
21063
21079
|
buyyoutubviews.com
|
21064
21080
|
buzlat.org
|
21065
21081
|
buzlin.club
|
21082
|
+
buzz.buzz
|
21066
21083
|
buzzcluby.com
|
21067
21084
|
buzzcompact.com
|
21068
21085
|
buzzdating.info
|
@@ -22363,6 +22380,7 @@ casinobit.club
|
|
22363
22380
|
casinobonusual2.com
|
22364
22381
|
casinochan2.com
|
22365
22382
|
casinocuan.club
|
22383
|
+
casinoelit47.com
|
22366
22384
|
casinoeridanmark.com
|
22367
22385
|
casinofundaily.info
|
22368
22386
|
casinogreat.club
|
@@ -23623,6 +23641,7 @@ cheapukniketrainerssale.co.uk
|
|
23623
23641
|
cheapuksalehandbagsoutletlv.co.uk
|
23624
23642
|
cheapukstraightenerssale.info
|
23625
23643
|
cheapusbspeakers.info
|
23644
|
+
cheapviagra.org
|
23626
23645
|
cheapwebtraffic.com
|
23627
23646
|
cheapweekendgetawaysforcouples.com
|
23628
23647
|
cheatautomation.com
|
@@ -24453,6 +24472,7 @@ citymdisp.ga
|
|
24453
24472
|
citymdisp.gq
|
24454
24473
|
citymdisp.ml
|
24455
24474
|
cityofnah.com
|
24475
|
+
cityquote.com
|
24456
24476
|
cityroyal.org
|
24457
24477
|
citytorate.ru
|
24458
24478
|
citytowercasino.com
|
@@ -24853,6 +24873,7 @@ clickmp.pro
|
|
24853
24873
|
clickmpnew.pro
|
24854
24874
|
clicknett.com
|
24855
24875
|
clicknowk.pro
|
24876
|
+
clickp.pro
|
24856
24877
|
clickpet.online
|
24857
24878
|
clickpm.pro
|
24858
24879
|
clickpnow.pro
|
@@ -25629,12 +25650,14 @@ coloshild.ru
|
|
25629
25650
|
coloshron.ru
|
25630
25651
|
colosjoy.ru
|
25631
25652
|
colossuscloud.us
|
25653
|
+
colourandcode.com
|
25632
25654
|
colt45forsale.tk
|
25633
25655
|
coltonattorneys.com
|
25634
25656
|
columbuscasino.design
|
25635
25657
|
columbuseldercare.com
|
25636
25658
|
columbusinfo.xyz
|
25637
25659
|
columbusnm.net
|
25660
|
+
columbusquote.com
|
25638
25661
|
com-04536875422364784521.top
|
25639
25662
|
com-101634586696.help
|
25640
25663
|
com-1024493459167.online
|
@@ -25671,6 +25694,8 @@ com-xvrv6yt51g.com
|
|
25671
25694
|
com.com
|
25672
25695
|
com.mz
|
25673
25696
|
com.ninja
|
25697
|
+
com.np
|
25698
|
+
com.ru
|
25674
25699
|
com.uk
|
25675
25700
|
com.us
|
25676
25701
|
com3b.com
|
@@ -25880,6 +25905,7 @@ computerslistnews.site
|
|
25880
25905
|
computersoftware2012.info
|
25881
25906
|
computerspeakers22.com
|
25882
25907
|
computersshop.futbol
|
25908
|
+
computingzone.org
|
25883
25909
|
compvershy.cf
|
25884
25910
|
compvershy.ga
|
25885
25911
|
compvershy.gq
|
@@ -27168,6 +27194,7 @@ crudeoildemulsifier.com
|
|
27168
27194
|
crudewag.icu
|
27169
27195
|
cruisecentraladviser.com
|
27170
27196
|
cruisefloppy.com
|
27197
|
+
cruisessale.com
|
27171
27198
|
crulle.ru
|
27172
27199
|
crumlin-grill.com
|
27173
27200
|
crunchcompass.com
|
@@ -28312,6 +28339,7 @@ dalamananadolulisesi.xyz
|
|
28312
28339
|
dalamanporttransfer.xyz
|
28313
28340
|
dalamanturkishvillas.xyz
|
28314
28341
|
dalanila.tk
|
28342
|
+
dalatrk.site
|
28315
28343
|
dalatvirginia.com
|
28316
28344
|
dalbam7.net
|
28317
28345
|
daleadershipinstitute.org
|
@@ -28830,6 +28858,7 @@ db4t5tes4.ga
|
|
28830
28858
|
db4t5tes4.gq
|
28831
28859
|
db4t5tes4.ml
|
28832
28860
|
db4t5tes4.tk
|
28861
|
+
dbadhe.com
|
28833
28862
|
dbanote.net
|
28834
28863
|
dbatalk.com
|
28835
28864
|
dbataturkioo.com
|
@@ -36337,6 +36366,7 @@ evavbe.ml
|
|
36337
36366
|
evavbe.tk
|
36338
36367
|
evavoyance.com
|
36339
36368
|
evbank.ru
|
36369
|
+
evbholdingsllc.com
|
36340
36370
|
evcmail.com
|
36341
36371
|
evcr8twoxifpaw.cf
|
36342
36372
|
evcr8twoxifpaw.ga
|
@@ -36802,6 +36832,7 @@ extra-penis-enlargement.info
|
|
36802
36832
|
extraaaa.tk
|
36803
36833
|
extraaaa2.ga
|
36804
36834
|
extraaaa2.tk
|
36835
|
+
extraale.com
|
36805
36836
|
extraam.loan
|
36806
36837
|
extrabooks.site
|
36807
36838
|
extracccolorrfull.com
|
@@ -36834,6 +36865,7 @@ exttract.email
|
|
36834
36865
|
extureme.com
|
36835
36866
|
exwta.us
|
36836
36867
|
exxale.shop
|
36868
|
+
exxale.space
|
36837
36869
|
exxon-mobil.tk
|
36838
36870
|
exxoncars.com
|
36839
36871
|
exxx.club
|
@@ -41053,6 +41085,7 @@ g-o-o-g-l-e.gq
|
|
41053
41085
|
g-o-o-g-l-e.ml
|
41054
41086
|
g-oproz.ru
|
41055
41087
|
g-secretclass.website
|
41088
|
+
g-share.biz
|
41056
41089
|
g-shoponline.info
|
41057
41090
|
g-starblog.org
|
41058
41091
|
g-timyoot.ga
|
@@ -42060,6 +42093,7 @@ gerandos.ru
|
|
42060
42093
|
gerdese.online
|
42061
42094
|
gerdimenta.ru
|
42062
42095
|
geremail.info
|
42096
|
+
gerenc.host
|
42063
42097
|
gerenciagran.com
|
42064
42098
|
gergilimembran.com
|
42065
42099
|
gerhanajitu.net
|
@@ -42318,6 +42352,7 @@ getyougadgets.com
|
|
42318
42352
|
getyourbook.site
|
42319
42353
|
getyourstudy.ru
|
42320
42354
|
getyourtantraon.com
|
42355
|
+
getzradonpros.net
|
42321
42356
|
geuur.live
|
42322
42357
|
gevemarket.site
|
42323
42358
|
gewinner-pose.com
|
@@ -44500,6 +44535,7 @@ groupe-psa.cf
|
|
44500
44535
|
groupe-psa.gq
|
44501
44536
|
groupe-psa.ml
|
44502
44537
|
groupe-psa.tk
|
44538
|
+
groupe.cd
|
44503
44539
|
groupfunds.club
|
44504
44540
|
groupkami.com
|
44505
44541
|
groupmaidat.com
|
@@ -49853,6 +49889,7 @@ ieattach.ml
|
|
49853
49889
|
iecrater.com
|
49854
49890
|
iecusa.net
|
49855
49891
|
iedindon.ml
|
49892
|
+
ieeeves.org
|
49856
49893
|
iefbcieuf.cf
|
49857
49894
|
iefbcieuf.ml
|
49858
49895
|
iefbcieuf.tk
|
@@ -50828,7 +50865,6 @@ infinityangelhealingpathways.com
|
|
50828
50865
|
infinitybooksjapan.org
|
50829
50866
|
infinityclasses.info
|
50830
50867
|
infinityclippingpath.com
|
50831
|
-
infis.net.ru
|
50832
50868
|
infitter.ru
|
50833
50869
|
inflammationpills.info
|
50834
50870
|
inflatableslife.com
|
@@ -56347,6 +56383,7 @@ kitchentvs.ru
|
|
56347
56383
|
kite008.xyz
|
56348
56384
|
kitedrooperver.ru
|
56349
56385
|
kitefly.pl
|
56386
|
+
kitela.work
|
56350
56387
|
kiteshot.ru
|
56351
56388
|
kitesportklop.ru
|
56352
56389
|
kitesurfinguonline.pl
|
@@ -57382,6 +57419,7 @@ kuatocokjaran.gq
|
|
57382
57419
|
kuatocokjaran.ml
|
57383
57420
|
kuatocokjaran.tk
|
57384
57421
|
kuba-nedv.ru
|
57422
|
+
kubeflow.info
|
57385
57423
|
kubqs.live
|
57386
57424
|
kubzone.ru
|
57387
57425
|
kuchenmobel-berlin.ovh
|
@@ -57859,6 +57897,7 @@ labogili.ga
|
|
57859
57897
|
labontemty.com
|
57860
57898
|
laboralistascoruna.com
|
57861
57899
|
laboratortehnicadentara.ro
|
57900
|
+
laboratoryreport.win
|
57862
57901
|
labored673vl.online
|
57863
57902
|
laboriously.com
|
57864
57903
|
laborstart.org
|
@@ -59031,6 +59070,7 @@ lesabahis40.com
|
|
59031
59070
|
lesabahis48.com
|
59032
59071
|
lesabahis49.com
|
59033
59072
|
lesabahis55.com
|
59073
|
+
lesabahis90.com
|
59034
59074
|
lesastroi.ru
|
59035
59075
|
lesbugs.com
|
59036
59076
|
lesfineslamesdechicoutimi.com
|
@@ -61820,7 +61860,6 @@ lyaliume.site
|
|
61820
61860
|
lyamda.ru
|
61821
61861
|
lybaba.xyz
|
61822
61862
|
lybe.info
|
61823
|
-
lyceum-life.com.ru
|
61824
61863
|
lydia-uniform.com
|
61825
61864
|
lydias-scrubs.com
|
61826
61865
|
lydiascrubs.com
|
@@ -62046,6 +62085,7 @@ mabterssur.ml
|
|
62046
62085
|
mabterssur.tk
|
62047
62086
|
mabuklagi.ga
|
62048
62087
|
mabulareserve.com
|
62088
|
+
mabv.club
|
62049
62089
|
macaniuo235.cf
|
62050
62090
|
macankumbang.com
|
62051
62091
|
macaoguojihui.com
|
@@ -65476,6 +65516,7 @@ mft9864784.xyz
|
|
65476
65516
|
mft9867978.xyz
|
65477
65517
|
mft9876343.xyz
|
65478
65518
|
mft9883173.xyz
|
65519
|
+
mft9909394.xyz
|
65479
65520
|
mft9911897.xyz
|
65480
65521
|
mft9920868.xyz
|
65481
65522
|
mfuil.us
|
@@ -66799,6 +66840,7 @@ modetoxcenter.com
|
|
66799
66840
|
modety.online
|
66800
66841
|
modhack.net
|
66801
66842
|
modicadacademy.com
|
66843
|
+
modikulp.com
|
66802
66844
|
modish.net
|
66803
66845
|
modjunkies.com
|
66804
66846
|
modkjaj.site
|
@@ -67286,6 +67328,7 @@ mormoncoffee.com
|
|
67286
67328
|
mornayoovm.space
|
67287
67329
|
mornhfas.org.ua
|
67288
67330
|
morningstarkafe.xyz
|
67331
|
+
morningstiffnesspodcast.org
|
67289
67332
|
morningtw.com
|
67290
67333
|
mornsoft.com
|
67291
67334
|
morogamers.com
|
@@ -67649,6 +67692,7 @@ mrchinh.com
|
|
67649
67692
|
mrclipper.com
|
67650
67693
|
mrcraftyconsultant.com
|
67651
67694
|
mrctacoma.com
|
67695
|
+
mrdeeps.ml
|
67652
67696
|
mrdevilstore.com
|
67653
67697
|
mrdjg.live
|
67654
67698
|
mrdomino99.org
|
@@ -69336,7 +69380,6 @@ namste99.com
|
|
69336
69380
|
namtinh.top
|
69337
69381
|
namtovarovedam.ru
|
69338
69382
|
namtruong318.com
|
69339
|
-
namunathapa.com.np
|
69340
69383
|
namuoutlets.site
|
69341
69384
|
namushops.site
|
69342
69385
|
namuwikiusercontent.com
|
@@ -70073,6 +70116,7 @@ net-piyango.biz
|
|
70073
70116
|
net-privichkam.ru
|
70074
70117
|
net-solution.info
|
70075
70118
|
net.com
|
70119
|
+
net.ru
|
70076
70120
|
net191.com
|
70077
70121
|
net1mail.com
|
70078
70122
|
net2222.com
|
@@ -74654,6 +74698,7 @@ osfujhtwrblkigbsqeo.ml
|
|
74654
74698
|
osfujhtwrblkigbsqeo.tk
|
74655
74699
|
osg168live.asia
|
74656
74700
|
osg168live.us
|
74701
|
+
osg777.link
|
74657
74702
|
osgame.live
|
74658
74703
|
osgame.online
|
74659
74704
|
osgpoker.us
|
@@ -75340,6 +75385,7 @@ p6udt9.us
|
|
75340
75385
|
p71ce1m.com
|
75341
75386
|
p7665.com
|
75342
75387
|
p7998.com
|
75388
|
+
p7n39rellip7.best
|
75343
75389
|
p8oan2gwrpbpvbh.cf
|
75344
75390
|
p8oan2gwrpbpvbh.ga
|
75345
75391
|
p8oan2gwrpbpvbh.gq
|
@@ -77412,6 +77458,7 @@ pidcockmarketing.com
|
|
77412
77458
|
pidemudanza.com
|
77413
77459
|
pidmail.com
|
77414
77460
|
pidoseme.online
|
77461
|
+
pidouno.com
|
77415
77462
|
pidox.org
|
77416
77463
|
piebombing.com
|
77417
77464
|
piececoun.icu
|
@@ -77591,6 +77638,7 @@ pinsonian.org
|
|
77591
77638
|
pinsup.ru
|
77592
77639
|
pintaresfacilconsapolin.com
|
77593
77640
|
pintasticapp.com
|
77641
|
+
pintech.ru
|
77594
77642
|
pintechpinball.com
|
77595
77643
|
pinterest-seo.online
|
77596
77644
|
pinterests.pro
|
@@ -79059,7 +79107,6 @@ powerhousedyno.com
|
|
79059
79107
|
powerin.site
|
79060
79108
|
powerlea.xyz
|
79061
79109
|
powerlear.xyz
|
79062
|
-
powerlink.com.np
|
79063
79110
|
powermass.site
|
79064
79111
|
powerml.racing
|
79065
79112
|
powerpages.website
|
@@ -79587,6 +79634,7 @@ prilution.info
|
|
79587
79634
|
prim1v.us
|
79588
79635
|
primabananen.net
|
79589
79636
|
primalburnkenburge.com
|
79637
|
+
primaryale.com
|
79590
79638
|
primaryvideos.com
|
79591
79639
|
primasecure.cd
|
79592
79640
|
primate.de
|
@@ -81617,6 +81665,7 @@ quanaril.cf
|
|
81617
81665
|
quanaril.com
|
81618
81666
|
quanaril.ga
|
81619
81667
|
quanaril.ml
|
81668
|
+
quandahui.com
|
81620
81669
|
quangcaoso1.net
|
81621
81670
|
quant-heyr.pro
|
81622
81671
|
quant-rr.pro
|
@@ -82307,6 +82356,7 @@ ragzwtna4ozrbf.tk
|
|
82307
82356
|
rahabionic.com
|
82308
82357
|
rahavpn.men
|
82309
82358
|
rahimis.com
|
82359
|
+
rahul.cyou
|
82310
82360
|
raiasu.cf
|
82311
82361
|
raiasu.ga
|
82312
82362
|
raiasu.gq
|
@@ -86175,6 +86225,7 @@ rvb.ro
|
|
86175
86225
|
rvbspending.com
|
86176
86226
|
rvctf.com
|
86177
86227
|
rvdogs.com
|
86228
|
+
rvemold.com
|
86178
86229
|
rviixj.us
|
86179
86230
|
rvjtudarhs.cf
|
86180
86231
|
rvjtudarhs.ga
|
@@ -87544,6 +87595,7 @@ savethechildrenactionnetwork.com
|
|
87544
87595
|
savetimeerr.fun
|
87545
87596
|
saveuhealth.com
|
87546
87597
|
savevid.ga
|
87598
|
+
saveyourgadget.com
|
87547
87599
|
savingallhomes.com
|
87548
87600
|
savingnyhomes.com
|
87549
87601
|
savingsearcher.com
|
@@ -87591,6 +87643,7 @@ saymeow.de
|
|
87591
87643
|
saymuscge.cf
|
87592
87644
|
saymuscge.ga
|
87593
87645
|
saymuscge.ml
|
87646
|
+
saynigger.com
|
87594
87647
|
saynotospams.com
|
87595
87648
|
sayonara.gq
|
87596
87649
|
sayonara.ml
|
@@ -87910,6 +87963,7 @@ screenvel.com
|
|
87910
87963
|
screwdon.recipes
|
87911
87964
|
screwdriveraction.com
|
87912
87965
|
screwthe.xyz
|
87966
|
+
scribb.eu
|
87913
87967
|
scribble.uno
|
87914
87968
|
scribeorigins.org
|
87915
87969
|
script.click
|
@@ -90102,6 +90156,7 @@ simplesport.ru
|
|
90102
90156
|
simpletextmarketing.com
|
90103
90157
|
simpleverification.com
|
90104
90158
|
simpleverni.icu
|
90159
|
+
simplexion.pm
|
90105
90160
|
simplictylegal.com
|
90106
90161
|
simplus.com.br
|
90107
90162
|
simply-email.bid
|
@@ -95359,6 +95414,7 @@ tamtam-topnews.site
|
|
95359
95414
|
tamu99.info
|
95360
95415
|
tamu99.net
|
95361
95416
|
tamuhost.me
|
95417
|
+
tan9595.com
|
95362
95418
|
tanahsubur.net
|
95363
95419
|
tandberggroup.com
|
95364
95420
|
tandbergonline.com
|
@@ -96518,6 +96574,7 @@ test130.com
|
|
96518
96574
|
test324t6234w5y.ru
|
96519
96575
|
testa-lot.net
|
96520
96576
|
testadobe.ru
|
96577
|
+
testbnk.com
|
96521
96578
|
testclean.org
|
96522
96579
|
testclubs.com
|
96523
96580
|
testdom34533663.host
|
@@ -98167,6 +98224,7 @@ tintuceva.org
|
|
98167
98224
|
tintucphunu.org
|
98168
98225
|
tinviahe.top
|
98169
98226
|
tinybt.com
|
98227
|
+
tinyheight.com
|
98170
98228
|
tinymill.org
|
98171
98229
|
tinypc.reviews
|
98172
98230
|
tinypc.tech
|
@@ -98412,6 +98470,7 @@ tjuew56d0xqmt.ga
|
|
98412
98470
|
tjuew56d0xqmt.gq
|
98413
98471
|
tjuew56d0xqmt.ml
|
98414
98472
|
tjuew56d0xqmt.tk
|
98473
|
+
tjuln.com
|
98415
98474
|
tjyqw.info
|
98416
98475
|
tjzbd.com
|
98417
98476
|
tk-intercom.ru
|
@@ -101662,6 +101721,7 @@ ucq9vbhc9mhvp3bmge6.gq
|
|
101662
101721
|
ucq9vbhc9mhvp3bmge6.ml
|
101663
101722
|
ucr6pb.site
|
101664
101723
|
ucroyal09.com
|
101724
|
+
ucsoft.biz
|
101665
101725
|
uctqoj.us
|
101666
101726
|
uctwh.us
|
101667
101727
|
ucupdong.ml
|
@@ -104224,6 +104284,7 @@ vestgreensig.cf
|
|
104224
104284
|
vestgreensig.ga
|
104225
104285
|
vestgreensig.gq
|
104226
104286
|
vestgreensig.tk
|
104287
|
+
vestigeschool.com
|
104227
104288
|
vestimed.ru
|
104228
104289
|
vestnikao.ru
|
104229
104290
|
vestniktm.ru
|
@@ -104356,6 +104417,7 @@ vhntp15yadrtz0.gq
|
|
104356
104417
|
vhntp15yadrtz0.ml
|
104357
104418
|
vhntp15yadrtz0.tk
|
104358
104419
|
vhobbi.ru
|
104420
|
+
vhoff.com
|
104359
104421
|
vhpsc.us
|
104360
104422
|
vhw5ie.us
|
104361
104423
|
vhwiz8.us
|
@@ -105450,6 +105512,7 @@ volumetudo.website
|
|
105450
105512
|
volumkas.cf
|
105451
105513
|
volunteergarden.org
|
105452
105514
|
voluptuary.site
|
105515
|
+
volvefloor.com
|
105453
105516
|
volvo-ab.cf
|
105454
105517
|
volvo-ab.ga
|
105455
105518
|
volvo-ab.gq
|
@@ -111150,6 +111213,7 @@ xtremeventure.com
|
|
111150
111213
|
xtremewebtraffic.net
|
111151
111214
|
xtrstories.com
|
111152
111215
|
xtrstudios.com
|
111216
|
+
xtrtarget.com
|
111153
111217
|
xtrzeer.fun
|
111154
111218
|
xtubemate.site
|
111155
111219
|
xtuc.com
|
@@ -111702,7 +111766,6 @@ yachassa09.com
|
|
111702
111766
|
yachassa16.com
|
111703
111767
|
yackir.store
|
111704
111768
|
yacxrz.pl
|
111705
|
-
yadavnaresh.com.np
|
111706
111769
|
yadegarigift.icu
|
111707
111770
|
yadkincounty.org
|
111708
111771
|
yadong4.com
|
data/data/free_email_domains.txt
CHANGED
data/email_data.gemspec
CHANGED
@@ -1,23 +1,29 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative "lib/email_data/version"
|
3
|
+
require_relative "./lib/email_data/version"
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name
|
7
|
-
spec.version
|
8
|
-
spec.authors
|
9
|
-
spec.email
|
10
|
-
|
11
|
-
spec.summary = "This project is a compilation of datasets related to " \
|
12
|
-
"emails. Includes disposable emails, disposable " \
|
13
|
-
"domains, and free email services."
|
14
|
-
spec.description = spec.summary
|
15
|
-
spec.homepage = "https://github.com/fnando/email_data"
|
16
|
-
spec.license = "MIT"
|
17
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
6
|
+
spec.name = "email_data"
|
7
|
+
spec.version = EmailData::VERSION
|
8
|
+
spec.authors = ["Nando Vieira"]
|
9
|
+
spec.email = ["me@fnando.com"]
|
18
10
|
|
11
|
+
spec.summary = "This project is a compilation of datasets related to " \
|
12
|
+
"emails. Includes disposable emails, disposable " \
|
13
|
+
"domains, and free email services."
|
14
|
+
spec.description = spec.summary
|
15
|
+
spec.license = "MIT"
|
16
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
|
17
|
+
|
18
|
+
github_url = "https://github.com/fnando/email_data"
|
19
|
+
github_tree_url = "#{github_url}/tree/v#{spec.version}"
|
20
|
+
|
21
|
+
spec.homepage = github_url
|
19
22
|
spec.metadata["homepage_uri"] = spec.homepage
|
20
|
-
spec.metadata["
|
23
|
+
spec.metadata["bug_tracker_uri"] = "#{github_url}/issues"
|
24
|
+
spec.metadata["source_code_uri"] = github_tree_url
|
25
|
+
spec.metadata["documentation_uri"] = "#{github_tree_url}/README.md"
|
26
|
+
spec.metadata["license_uri"] = "#{github_tree_url}/LICENSE.md"
|
21
27
|
|
22
28
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
23
29
|
`git ls-files -z`
|
data/lib/email_data.rb
CHANGED
@@ -43,6 +43,10 @@ module EmailData
|
|
43
43
|
self.table_name = "roles"
|
44
44
|
end
|
45
45
|
|
46
|
+
class PrivateRelay < ApplicationRecord
|
47
|
+
self.table_name = "private_relays"
|
48
|
+
end
|
49
|
+
|
46
50
|
class Collection
|
47
51
|
def initialize(model)
|
48
52
|
@model = model
|
@@ -84,6 +88,10 @@ module EmailData
|
|
84
88
|
def self.roles
|
85
89
|
@roles ||= Collection.new(Role)
|
86
90
|
end
|
91
|
+
|
92
|
+
def self.private_relays
|
93
|
+
@private_relays ||= Collection.new(PrivateRelay)
|
94
|
+
end
|
87
95
|
end
|
88
96
|
end
|
89
97
|
end
|
data/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fnando/email_data",
|
3
3
|
"description": "This project is a compilation of datasets related to emails. Includes disposable emails, disposable domains, and free email services.",
|
4
|
-
"version": "
|
4
|
+
"version": "1605814579.0.0",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: email_data
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '
|
4
|
+
version: '1605814579'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nando Vieira
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -172,14 +172,21 @@ executables: []
|
|
172
172
|
extensions: []
|
173
173
|
extra_rdoc_files: []
|
174
174
|
files:
|
175
|
+
- ".github/CODEOWNERS"
|
175
176
|
- ".github/FUNDING.yml"
|
176
|
-
- ".github/
|
177
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
178
|
+
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
179
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
180
|
+
- ".github/dependabot.yml"
|
181
|
+
- ".github/workflows/ruby-tests.yml"
|
177
182
|
- ".gitignore"
|
178
183
|
- ".rubocop.yml"
|
179
184
|
- ".tool-versions"
|
180
185
|
- CODE_OF_CONDUCT.md
|
186
|
+
- CONTRIBUTING.md
|
181
187
|
- Gemfile
|
182
188
|
- Gemfile.lock
|
189
|
+
- LICENSE.md
|
183
190
|
- LICENSE.txt
|
184
191
|
- README.md
|
185
192
|
- Rakefile
|
@@ -218,7 +225,10 @@ licenses:
|
|
218
225
|
- MIT
|
219
226
|
metadata:
|
220
227
|
homepage_uri: https://github.com/fnando/email_data
|
221
|
-
|
228
|
+
bug_tracker_uri: https://github.com/fnando/email_data/issues
|
229
|
+
source_code_uri: https://github.com/fnando/email_data/tree/v1605814579
|
230
|
+
documentation_uri: https://github.com/fnando/email_data/tree/v1605814579/README.md
|
231
|
+
license_uri: https://github.com/fnando/email_data/tree/v1605814579/LICENSE.md
|
222
232
|
post_install_message:
|
223
233
|
rdoc_options: []
|
224
234
|
require_paths:
|
@@ -227,7 +237,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
227
237
|
requirements:
|
228
238
|
- - ">="
|
229
239
|
- !ruby/object:Gem::Version
|
230
|
-
version: 2.
|
240
|
+
version: 2.6.0
|
231
241
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
232
242
|
requirements:
|
233
243
|
- - ">="
|