email_data 1697329714.0.0 → 1697647319.0.0

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: d03bac5b6a07c1bc3d2352c0be46704127a9c24b7621871bbc1e39d02c35503a
4
- data.tar.gz: a2347d3d5c7f315c764f7ab7ac29b20916188d093ee26f026b835e87bf042022
3
+ metadata.gz: 438c36335216a4788b018eea41d8585d23376d39b1b44317a476b99311aa79f4
4
+ data.tar.gz: 1014c7c3733bf00bfc86db6cb5d394932310e4755ca287e40f2f5840ee3a6d41
5
5
  SHA512:
6
- metadata.gz: a55690aa473d7864cffc55b219353dc5a0d3fd228e769a32bb20b220fcbaa1f893c9fc82c2b458c69caf1b03ca3db87e6eaf70027e4e67bdf6604e0a66d67fa7
7
- data.tar.gz: 9230ae469bdc195bad83d88b9efa78bd7adf372ab67a61552a332a1efffe6cf886e0b3905f564d996aaf6a2f9ff110840ef1d354e60bfceb3487da015eb19986
6
+ metadata.gz: c0e9aeee4657ff79f497c41b82b8f62c3bbb68537298bfd9dea5f5f9f2632d9895128d669a3daf3315901c32b03c1f0fb4fed6034730a148c44f184f2d01cae9
7
+ data.tar.gz: f41f719ea48f113bc5c78885af88bd8f086b85f26696033f18256f2a4a3357f84ed6fe2ffd90b6df661af476abcd5c1009dad6c0b43d8b2f96238ea55cf10a13
data/.tool-versions CHANGED
@@ -1,2 +1,2 @@
1
- ruby 3.1.0
2
- nodejs 16.13.1
1
+ ruby 3.2.2
2
+ nodejs 18.18.0
data/README.md CHANGED
@@ -65,6 +65,9 @@ EmailData.tlds
65
65
 
66
66
  # List of second-level domains.
67
67
  EmailData.slds
68
+
69
+ # A list of DNSBL providers.
70
+ EmailData.dnsbls
68
71
  ```
69
72
 
70
73
  #### Data sources
@@ -158,6 +161,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
158
161
  end
159
162
 
160
163
  add_index :private_relays, :name, unique: true
164
+
165
+ create_table :dnsbls do |t|
166
+ t.citext :name, null: false
167
+ end
168
+
169
+ add_index :dnsbls, :name, unique: true
161
170
  end
162
171
  end
163
172
  ```
@@ -195,11 +204,12 @@ COPY disposable_domains_without_mx (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/g
195
204
  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';
196
205
  COPY roles (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/roles.txt';
197
206
  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';
207
+ COPY dnsbls (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/dnsbls.txt';
198
208
  ```
199
209
 
200
- Alternatively, you could create a migration that executes that same command; given
201
- that you'd be running Ruby code, you can replace the steps to find the gem path
202
- with `EmailData.data_dir`.
210
+ Alternatively, you could create a migration that executes that same command;
211
+ given that you'd be running Ruby code, you can replace the steps to find the gem
212
+ path with `EmailData.data_dir`.
203
213
 
204
214
  ```ruby
205
215
  class LoadEmailData < ActiveRecord::Migration[6.1]
@@ -225,6 +235,7 @@ class LoadEmailData < ActiveRecord::Migration[6.1]
225
235
  copy.call(:free_email_domains)
226
236
  copy.call(:roles)
227
237
  copy.call(:private_relays)
238
+ copy.call(:dnsbls)
228
239
  end
229
240
  end
230
241
  ```
@@ -256,6 +267,7 @@ const privateRelays = require("@fnando/email_data/data/json/private_relays.json"
256
267
  const tlds = require("@fnando/email_data/data/json/tlds.json");
257
268
  const slds = require("@fnando/email_data/data/json/slds.json");
258
269
  const cctlds = require("@fnando/email_data/data/json/country_tlds.json");
270
+ const dnsbls = require("@fnando/email_data/data/json/dnsbls.json");
259
271
  ```
260
272
 
261
273
  ## Dataset
data/bin/sync CHANGED
@@ -4,6 +4,8 @@
4
4
  echo
5
5
  ./bin/sync-roles
6
6
  echo
7
+ ./bin/sync-dnsbls
8
+ echo
7
9
  ./bin/sync-free-emails
8
10
  echo
9
11
  ./bin/sync-disposable-emails
@@ -57231,6 +57231,7 @@ gabooster.com
57231
57231
  gabox.store
57232
57232
  gabriel278.store
57233
57233
  gabrieladiaz.net
57234
+ gabrielagaleas.com
57234
57235
  gabrielamusic.org
57235
57236
  gabrieldunn.buzz
57236
57237
  gabrieljarvis.buzz
@@ -67878,6 +67879,7 @@ hrgmgka.ga
67878
67879
  hrgmgka.gq
67879
67880
  hrgmgka.ml
67880
67881
  hrgy12.com
67882
+ hri16938nezid.com
67881
67883
  hrisheek.com
67882
67884
  hrisland.com
67883
67885
  hrjs.com
@@ -69720,6 +69722,7 @@ ificifin.shop
69720
69722
  ifightexpress.com
69721
69723
  ifile.com
69722
69724
  ifinific.shop
69725
+ ifioridivalentina.com
69723
69726
  ifixticket.com
69724
69727
  ifjl.com
69725
69728
  ifjn.com
@@ -81698,6 +81701,7 @@ leaec.com
81698
81701
  leafiums.cf
81699
81702
  leafmanager.com
81700
81703
  leafofallcolors.com
81704
+ leafrelief.org
81701
81705
  leafzie.com
81702
81706
  league0.com
81703
81707
  leaguecms.com
@@ -85537,6 +85541,7 @@ lthz1v.us
85537
85541
  ltiempo.es
85538
85542
  ltiosmjo.shop
85539
85543
  ltkuib.us
85544
+ ltlseguridad.com
85540
85545
  ltnzempevy.ga
85541
85546
  ltt.us
85542
85547
  ltt0zgz9wtu.cf
@@ -112797,6 +112802,7 @@ pxeneu.xyz
112797
112802
  pxey8q.us
112798
112803
  pxhdtz.icu
112799
112804
  pxixc.live
112805
+ pxj62183zbock.com
112800
112806
  pxjtw.com
112801
112807
  pxkejz.site
112802
112808
  pxlink.xyz
@@ -117272,6 +117278,7 @@ resume.land
117272
117278
  resumeshortly.com
117273
117279
  resumeworks4u.com
117274
117280
  resumewrite.ru
117281
+ resunleasing.com
117275
117282
  resurgeons.com
117276
117283
  resurs-nn.com
117277
117284
  resusskills.com
@@ -119281,6 +119288,7 @@ rq1h27n291puvzd.ml
119281
119288
  rq1h27n291puvzd.tk
119282
119289
  rq4oid.us
119283
119290
  rq6668f.com
119291
+ rqa19414zslsz.com
119284
119292
  rqaxih.com
119285
119293
  rqhpce.us
119286
119294
  rqjjf.live
@@ -128336,6 +128344,7 @@ sparkgnome.com
128336
128344
  sparkgrowthteam.com
128337
128345
  sparklepuzzles.app
128338
128346
  sparkles.rocks
128347
+ sparklingnewsbeat.com
128339
128348
  sparklingnewsflow.com
128340
128349
  sparklogics.com
128341
128350
  sparkmail.top
@@ -129956,6 +129965,7 @@ stevenklein.com
129956
129965
  stevenledford.com
129957
129966
  stevenolls.info
129958
129967
  stevenorbye.com
129968
+ stevensbeautyspa.com
129959
129969
  stevenspointapartments.com
129960
129970
  stevepavilanis.com
129961
129971
  stevepurdie.com
@@ -139879,6 +139889,7 @@ truwera.com
139879
139889
  truxamail.com
139880
139890
  truxbox.ru
139881
139891
  truyenbb.com
139892
+ trv57621omeie.com
139882
139893
  trwfey.us
139883
139894
  trwh.co.za
139884
139895
  trxsuspension.us
@@ -152659,6 +152670,7 @@ xjav77.com
152659
152670
  xjaymn.com
152660
152671
  xjbpav.com
152661
152672
  xjedu1.site
152673
+ xjf07286zslsz.com
152662
152674
  xjgbw.com
152663
152675
  xjghm.com
152664
152676
  xjgyud.us