email_data 1604444717 → 1604907377

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: c30f18f4105fa9f6c1503c73e18435c44514d0cc7d3d9af9eb05a5ed7a314ebd
4
- data.tar.gz: e2d2143c9c2bcca90209c7f2a88cf94b9136c8e569985afa212862d574d395d2
3
+ metadata.gz: 63429f97483aed55d56a256b2132a18ce6d352be1e3bc57bcf41c975b7f74020
4
+ data.tar.gz: 65f4750c6ff5766bbe66efc11339c44f6837561d0864202a6e54970bdd9c9e22
5
5
  SHA512:
6
- metadata.gz: 0a62ef94635df6bd95089e9de15027d6d383ec4ab4843d6e9574cc04f83b335e38771e4a9876b998b0007bf6613dec180c81fecdc4a91f80934c150cb8918c20
7
- data.tar.gz: 3fca2824f9dd013ae8ca97ead924a5709db677f19b42328b307cb594bc9783305a377147a40e8e7f0e7f9cf8cb89f88034480a1be9e3ac994dfbe186ea81d030
6
+ metadata.gz: 45d0b566a2f9a1b843828fe1a2139f72f0f56b770357121f8041588b61ffcb7f1b45c073bdb565dbc60c01939ee5032db54675d2d77c4bea99f1380047c1e080
7
+ data.tar.gz: cc8efb3365fd0b0851e941d1da92b3f3ab013b8f5e98a43eaf6aaf0957fa7a340a5df203427baf6926b60ea9cd310e3defa82e10b0cdf8811279951baa55ee90
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- email_data (1604444717)
4
+ email_data (1604907377)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -30,7 +30,7 @@ GEM
30
30
  minitest
31
31
  nokogiri (1.10.10)
32
32
  mini_portile2 (~> 2.4.0)
33
- parallel (1.19.2)
33
+ parallel (1.20.0)
34
34
  parser (2.7.2.0)
35
35
  ast (~> 2.4.1)
36
36
  pg (1.2.3)
@@ -40,7 +40,7 @@ GEM
40
40
  rexml (3.2.4)
41
41
  root_domain (0.1.0)
42
42
  simpleidn
43
- rubocop (1.1.0)
43
+ rubocop (1.2.0)
44
44
  parallel (~> 1.10)
45
45
  parser (>= 2.7.1.5)
46
46
  rainbow (>= 2.2.2, < 4.0)
@@ -49,7 +49,7 @@ GEM
49
49
  rubocop-ast (>= 1.0.1)
50
50
  ruby-progressbar (~> 1.7)
51
51
  unicode-display_width (>= 1.4.0, < 2.0)
52
- rubocop-ast (1.1.0)
52
+ rubocop-ast (1.1.1)
53
53
  parser (>= 2.7.1.5)
54
54
  rubocop-fnando (0.0.13)
55
55
  ruby-progressbar (1.10.1)
@@ -60,7 +60,7 @@ GEM
60
60
  simpleidn (0.1.1)
61
61
  unf (~> 0.1.4)
62
62
  thread_safe (0.3.6)
63
- tzinfo (1.2.7)
63
+ tzinfo (1.2.8)
64
64
  thread_safe (~> 0.1)
65
65
  unf (0.1.4)
66
66
  unf_ext
data/README.md CHANGED
@@ -15,6 +15,7 @@ This project is a compilation of datasets related to emails.
15
15
  - Disposable emails
16
16
  - Disposable domains
17
17
  - Free email services
18
+ - Roles (e.g. info, spam, etc)
18
19
 
19
20
  The data is compiled from several different sources, so thank you all for making
20
21
  this data available.
@@ -54,6 +55,9 @@ EmailData.disposable_emails
54
55
 
55
56
  # List of free email services.
56
57
  EmailData.free_email_domains
58
+
59
+ # List of roles. Can be used to filter out emails like info@ or all@.
60
+ EmailData.roles
57
61
  ```
58
62
 
59
63
  #### Data sources
@@ -117,6 +121,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
117
121
  end
118
122
 
119
123
  add_index :free_email_domains, :name, unique: true
124
+
125
+ create_table :roles do |t|
126
+ t.citext :name, null: false
127
+ end
128
+
129
+ add_index :roles, :name, unique: true
120
130
  end
121
131
  end
122
132
  ```
@@ -149,6 +159,7 @@ COPY country_tlds (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/em
149
159
  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';
150
160
  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';
151
161
  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
+ COPY roles (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/roles.txt';
152
163
  ```
153
164
 
154
165
  Alternatively, you could create a migrate that executes that same command; given
@@ -174,6 +185,7 @@ class LoadEmailData < ActiveRecord::Migration[6.1]
174
185
  copy.call(:disposable_emails)
175
186
  copy.call(:disposable_domains)
176
187
  copy.call(:free_email_domains)
188
+ copy.call(:roles)
177
189
  end
178
190
  end
179
191
  ```
@@ -196,6 +208,7 @@ $ npm install @fnando/email_data
196
208
  const disposableEmails = require("@fnando/email_data/data/json/disposable_emails.json");
197
209
  const disposableDomains = require("@fnando/email_data/data/json/disposable_domains.json");
198
210
  const freeEmailDomains = require("@fnando/email_data/data/json/free_email_domains.json");
211
+ const roles = require("@fnando/email_data/data/json/roles.json");
199
212
  ```
200
213
 
201
214
  ## Dataset
@@ -209,8 +222,8 @@ like to add, please make a pull request against the files `data/manual/*.txt`.
209
222
  free email services must go here. E.g. `d.i.s.p.o.s.a.b.l.e+1234@gmail.com`
210
223
  must be added as `disposable@gmail.com`.
211
224
  - `data/manual/free_email_domains.txt`: only free email services must go here.
212
- These are services that allow anyone to create an email account, even if it's
213
- just a trial without credit cards.
225
+ - `data/manual/roles.txt`: list of role-based user names like `info` or
226
+ `no-reply`.
214
227
 
215
228
  ## Development
216
229
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1604444717
1
+ 1604907377
@@ -8761,6 +8761,7 @@ adjustmyfontsize.com
8761
8761
  adjwsaws.icu
8762
8762
  adk66.ru
8763
8763
  adkchecking.com
8764
+ adkcontracting.com
8764
8765
  adkecochecking.com
8765
8766
  adleep.org
8766
8767
  adlinking2.com
@@ -9756,6 +9757,7 @@ airportparkingcincinnati.net
9756
9757
  airporttaxisinloughborough.org
9757
9758
  airporttaxisinquorn.org
9758
9759
  airporttransfershuttles.com
9760
+ airporttransfersistanbul.net
9759
9761
  airpriority.com
9760
9762
  airpurifiermax.us
9761
9763
  airriveroutlet.us
@@ -9774,6 +9776,7 @@ airxr.ru
9774
9776
  airyofe.space
9775
9777
  aisaelectronics.com
9776
9778
  aiseattle.xyz
9779
+ aiseeker.com
9777
9780
  aishenma.xyz
9778
9781
  aisingapore.xyz
9779
9782
  aisiys.com
@@ -28195,6 +28198,7 @@ dap38.space
28195
28198
  daphnee1818.site
28196
28199
  dapk.site
28197
28200
  dapopo.xyz
28201
+ dapperraptor.com
28198
28202
  dapplica.com
28199
28203
  daqbank.net
28200
28204
  daqbank.org
@@ -41806,6 +41810,7 @@ getinstafollowers.website
41806
41810
  getinsuranceforyou.com
41807
41811
  getintopci.com
41808
41812
  getisrael.com
41813
+ getit-beauty.com
41809
41814
  getitfast.com
41810
41815
  getjar.pl
41811
41816
  getjulia.com
@@ -42757,6 +42762,7 @@ gmaills.eu
42757
42762
  gmailmail.ga
42758
42763
  gmailmarina.com
42759
42764
  gmailmirror.com
42765
+ gmailnator.com
42760
42766
  gmailner.com
42761
42767
  gmailnew.com
42762
42768
  gmailom.co
@@ -49216,6 +49222,7 @@ ict0crp6ocptyrplcr.ml
49216
49222
  ict0crp6ocptyrplcr.tk
49217
49223
  ictaintict.date
49218
49224
  ictenlider.org
49225
+ ictnew2024.com
49219
49226
  ictnew2027.com
49220
49227
  ictuber.info
49221
49228
  icunet.icu
@@ -58049,6 +58056,7 @@ ldovehxbuehf.ml
58049
58056
  ldovehxbuehf.tk
58050
58057
  ldssharingtable.com
58051
58058
  ldtp.com
58059
+ ldwdkj.com
58052
58060
  ldzg.email
58053
58061
  le-asi-yyyo-ooiue.com
58054
58062
  le-book.info
@@ -59832,6 +59840,7 @@ lnongqmafdr7vbrhk.ga
59832
59840
  lnongqmafdr7vbrhk.gq
59833
59841
  lnongqmafdr7vbrhk.ml
59834
59842
  lnongqmafdr7vbrhk.tk
59843
+ lnqnmx.com
59835
59844
  lnr9ry.us
59836
59845
  lns-411.net
59837
59846
  lnsilver.com
@@ -62006,6 +62015,8 @@ mailboxvip.com
62006
62015
  mailboxxx.net
62007
62016
  mailboxy.fun
62008
62017
  mailbrazilnet.space
62018
+ mailbrev.com
62019
+ mailbrev.se
62009
62020
  mailbros1.info
62010
62021
  mailbros2.info
62011
62022
  mailbros3.info
@@ -94818,6 +94829,7 @@ taworle.ml
94818
94829
  taworle.tk
94819
94830
  tawowk.com
94820
94831
  tawserdog.com
94832
+ tawtar.com
94821
94833
  tax315.xyz
94822
94834
  taxfilingsite.com
94823
94835
  taxfreeemail.com
@@ -108453,6 +108465,7 @@ x1cult.ru
108453
108465
  x1econ.ru
108454
108466
  x1lion.ru
108455
108467
  x1news.ru
108468
+ x1post.com
108456
108469
  x1sci.ru
108457
108470
  x1x22716.com
108458
108471
  x1xthj.us
@@ -109716,6 +109729,7 @@ xn--fiq06l2rdsvs.site
109716
109729
  xn--fiq06l2rdsvs.tech
109717
109730
  xn--fiq64f9jv65a.com
109718
109731
  xn--fiqz9sm5fhob0y1f.xn--czru2d
109732
+ xn--fjq089buwib4gq1mz8ye5o8kc.xn--j6w193g
109719
109733
  xn--fnva655m.xn--6qq986b3xl
109720
109734
  xn--fnvur060a.xn--6qq986b3xl
109721
109735
  xn--fnvv98hjkf.xn--6qq986b3xl
@@ -0,0 +1,413 @@
1
+ abuse
2
+ academicadministrator
3
+ accessibility
4
+ account
5
+ accounting
6
+ accounts
7
+ admin
8
+ administration
9
+ administrator
10
+ administrators
11
+ adminoffice
12
+ admins
13
+ admissions
14
+ adops
15
+ ads
16
+ advertise
17
+ advertisingsales
18
+ advice
19
+ advisor
20
+ advisors
21
+ adwords
22
+ affiliate
23
+ affiliates
24
+ agents
25
+ alarm
26
+ alarms
27
+ alert
28
+ alerts
29
+ all
30
+ allemployees
31
+ allhands
32
+ allpms
33
+ allsales
34
+ allstaff
35
+ allstudents
36
+ allteachers
37
+ allteam
38
+ allusers
39
+ alumni
40
+ analysts
41
+ analytics
42
+ announce
43
+ announcements
44
+ api
45
+ app
46
+ application
47
+ applications
48
+ appointments
49
+ apps
50
+ archives
51
+ ask
52
+ associates
53
+ associatesall
54
+ auctions
55
+ available
56
+ backenddev
57
+ billing
58
+ biz
59
+ bizdev
60
+ blog
61
+ board
62
+ booking
63
+ bookings
64
+ books
65
+ brand
66
+ branding
67
+ brandsolutions
68
+ bugs
69
+ bursar
70
+ busdev
71
+ business
72
+ businessdevelopment
73
+ campaign
74
+ campaigns
75
+ career
76
+ careers
77
+ ceo
78
+ channelsales
79
+ chat
80
+ citymanagers
81
+ client
82
+ clients
83
+ clientservices
84
+ comercial
85
+ comment
86
+ comments
87
+ commercial
88
+ commissions
89
+ committee
90
+ communication
91
+ communications
92
+ community
93
+ compete
94
+ compliance
95
+ connect
96
+ consultant
97
+ contact
98
+ contactus
99
+ contractor
100
+ contractors
101
+ contracts
102
+ coop
103
+ copyright
104
+ core
105
+ corp
106
+ corporate
107
+ crew
108
+ cs
109
+ customercare
110
+ customerfeedback
111
+ customerservice
112
+ customerservices
113
+ customersuccess
114
+ customersupport
115
+ custserv
116
+ data
117
+ database
118
+ deals
119
+ dean
120
+ delivery
121
+ design
122
+ designer
123
+ designers
124
+ details
125
+ dev
126
+ developer
127
+ developers
128
+ development
129
+ devnull
130
+ devops
131
+ devs
132
+ devteam
133
+ digital
134
+ digsitesvalue
135
+ director
136
+ directors
137
+ directory
138
+ distribution
139
+ dns
140
+ domainmanagement
141
+ domains
142
+ donations
143
+ download
144
+ ecommerce
145
+ editor
146
+ editorial
147
+ editors
148
+ education
149
+ email
150
+ emergency
151
+ employee
152
+ employees
153
+ employment
154
+ eng
155
+ engall
156
+ engineering
157
+ engineers
158
+ enq
159
+ enqs
160
+ enquire
161
+ enquires
162
+ enquiries
163
+ enquiry
164
+ enquries
165
+ enterprise
166
+ error
167
+ errors
168
+ event
169
+ events
170
+ everybody
171
+ everyone
172
+ exec
173
+ execs
174
+ executive
175
+ executives
176
+ exim
177
+ expenses
178
+ expert
179
+ experts
180
+ export
181
+ fbl
182
+ feedback
183
+ finance
184
+ financial
185
+ frontdesk
186
+ frontend
187
+ ftp
188
+ fundraising
189
+ gdpr
190
+ genenquiries
191
+ general
192
+ generalenquiries
193
+ genoffice
194
+ global
195
+ group
196
+ head
197
+ head.office
198
+ headmaster
199
+ headoffice
200
+ headteacher
201
+ hello
202
+ help
203
+ helpdesk
204
+ helpline
205
+ hi
206
+ hosting
207
+ hostmaster
208
+ hq
209
+ hr
210
+ humanresource
211
+ inbound
212
+ inbox
213
+ info
214
+ infodesk
215
+ information
216
+ infos
217
+ infouk
218
+ innovation
219
+ inoc
220
+ inquires
221
+ inquiries
222
+ institute
223
+ insurance
224
+ integration
225
+ integrations
226
+ internal
227
+ interns
228
+ internship
229
+ inventory
230
+ investorrelations
231
+ investors
232
+ invoice
233
+ invoices
234
+ invoicing
235
+ ispfeedback
236
+ ispsupport
237
+ it
238
+ ithelp
239
+ jira
240
+ jobs
241
+ kontakt
242
+ law
243
+ lawyers
244
+ leadership
245
+ leadershipteam
246
+ leads
247
+ leasing
248
+ legal
249
+ list
250
+ listrequest
251
+ listadmin
252
+ mail
253
+ mailbox
254
+ maildaemon
255
+ mailerdaemon
256
+ mailing
257
+ mainoffice
258
+ maintenance
259
+ management
260
+ management_team
261
+ managementgroup
262
+ managementteam
263
+ manager
264
+ managers
265
+ marketing
266
+ marketingops
267
+ marketingteam
268
+ master
269
+ me
270
+ media
271
+ meetup
272
+ member
273
+ members
274
+ membership
275
+ mentors
276
+ mgmt
277
+ misc
278
+ newbusiness
279
+ news
280
+ newsletter
281
+ noreply
282
+ nobody
283
+ noc
284
+ noemail
285
+ noemailadress
286
+ none
287
+ noresponse
288
+ null
289
+ office
290
+ officeadmin
291
+ officestaff
292
+ onboarding
293
+ online
294
+ operations
295
+ ops
296
+ order
297
+ orders
298
+ owner
299
+ owners
300
+ packaging
301
+ partner
302
+ partners
303
+ partnerships
304
+ payment
305
+ payments
306
+ paypal
307
+ payroll
308
+ people
309
+ phish
310
+ phishing
311
+ planning
312
+ post
313
+ postbox
314
+ postfix
315
+ postmaster
316
+ pr
317
+ press
318
+ prime
319
+ principal
320
+ print
321
+ privacy
322
+ productgrowth
323
+ productmanagement
324
+ productmanagers
325
+ productteam
326
+ projectmanagers
327
+ projects
328
+ publicrelations
329
+ purchasing
330
+ qa
331
+ quality
332
+ rd
333
+ reception
334
+ recruit
335
+ recruiting
336
+ recruitment
337
+ referral
338
+ referrals
339
+ registrar
340
+ remove
341
+ request
342
+ reservation
343
+ reservations
344
+ root
345
+ sale
346
+ sales
347
+ salesengineers
348
+ salesforce
349
+ salesinfo
350
+ salesteam
351
+ salesuk
352
+ school
353
+ schooladmin
354
+ schoolinfo
355
+ schoolmail
356
+ schooloffice
357
+ secretary
358
+ security
359
+ server
360
+ service
361
+ serviceadmin
362
+ servicedesk
363
+ services
364
+ shipping
365
+ shop
366
+ smtp
367
+ solicitors
368
+ solutions
369
+ spam
370
+ spamtrap
371
+ staff
372
+ studio
373
+ subscribe
374
+ suggestions
375
+ support
376
+ sysadmin
377
+ system
378
+ systems
379
+ team
380
+ teamleads
381
+ tech
382
+ technical
383
+ techops
384
+ techsupport
385
+ testing
386
+ theoffice
387
+ theteam
388
+ trade
389
+ trading
390
+ trouble
391
+ ukinfo
392
+ uksales
393
+ undisclosedrecipients
394
+ unsubscribe
395
+ update
396
+ updates
397
+ usenet
398
+ users
399
+ uucp
400
+ ux
401
+ vendor
402
+ vendors
403
+ warranty
404
+ watercooler
405
+ web
406
+ webadmin
407
+ webmaster
408
+ webteam
409
+ welcome
410
+ whois
411
+ wholesale
412
+ work
413
+ www
@@ -0,0 +1,412 @@
1
+ abuse
2
+ academicadministrator
3
+ accessibility
4
+ account
5
+ accounting
6
+ accounts
7
+ admin
8
+ administration
9
+ administrator
10
+ administrators
11
+ adminoffice
12
+ admins
13
+ admissions
14
+ adops
15
+ ads
16
+ advertise
17
+ advertisingsales
18
+ advice
19
+ advisor
20
+ advisors
21
+ adwords
22
+ affiliate
23
+ affiliates
24
+ agents
25
+ alarm
26
+ alarms
27
+ alert
28
+ alerts
29
+ all
30
+ allemployees
31
+ allhands
32
+ allpms
33
+ allsales
34
+ allstaff
35
+ allstudents
36
+ allteachers
37
+ allteam
38
+ allusers
39
+ alumni
40
+ analysts
41
+ analytics
42
+ announce
43
+ announcements
44
+ api
45
+ app
46
+ application
47
+ applications
48
+ appointments
49
+ apps
50
+ archives
51
+ ask
52
+ associates
53
+ associatesall
54
+ auctions
55
+ available
56
+ backenddev
57
+ billing
58
+ biz
59
+ bizdev
60
+ blog
61
+ board
62
+ booking
63
+ bookings
64
+ books
65
+ brand
66
+ branding
67
+ brandsolutions
68
+ bugs
69
+ bursar
70
+ busdev
71
+ business
72
+ businessdevelopment
73
+ campaign
74
+ campaigns
75
+ career
76
+ careers
77
+ ceo
78
+ channelsales
79
+ chat
80
+ citymanagers
81
+ client
82
+ clients
83
+ clientservices
84
+ comercial
85
+ comment
86
+ comments
87
+ commercial
88
+ commissions
89
+ committee
90
+ communication
91
+ communications
92
+ community
93
+ compete
94
+ compliance
95
+ connect
96
+ consultant
97
+ contact
98
+ contactus
99
+ contractor
100
+ contractors
101
+ contracts
102
+ coop
103
+ copyright
104
+ core
105
+ corp
106
+ corporate
107
+ crew
108
+ cs
109
+ customercare
110
+ customerfeedback
111
+ customerservice
112
+ customerservices
113
+ customersuccess
114
+ customersupport
115
+ custserv
116
+ data
117
+ database
118
+ deals
119
+ dean
120
+ delivery
121
+ design
122
+ designer
123
+ designers
124
+ details
125
+ dev
126
+ developer
127
+ developers
128
+ development
129
+ devnull
130
+ devops
131
+ devs
132
+ devteam
133
+ digital
134
+ digsitesvalue
135
+ director
136
+ directors
137
+ directory
138
+ distribution
139
+ dns
140
+ domainmanagement
141
+ domains
142
+ donations
143
+ download
144
+ ecommerce
145
+ editor
146
+ editorial
147
+ editors
148
+ education
149
+ email
150
+ emergency
151
+ employee
152
+ employees
153
+ employment
154
+ eng
155
+ engall
156
+ engineering
157
+ engineers
158
+ enq
159
+ enqs
160
+ enquire
161
+ enquires
162
+ enquiries
163
+ enquiry
164
+ enquries
165
+ enterprise
166
+ error
167
+ errors
168
+ event
169
+ events
170
+ everybody
171
+ everyone
172
+ exec
173
+ execs
174
+ executive
175
+ executives
176
+ exim
177
+ expenses
178
+ expert
179
+ experts
180
+ export
181
+ fbl
182
+ feedback
183
+ finance
184
+ financial
185
+ frontdesk
186
+ frontend
187
+ ftp
188
+ fundraising
189
+ gdpr
190
+ genenquiries
191
+ general
192
+ generalenquiries
193
+ genoffice
194
+ global
195
+ group
196
+ head
197
+ headmaster
198
+ headoffice
199
+ headteacher
200
+ hello
201
+ help
202
+ helpdesk
203
+ helpline
204
+ hi
205
+ hosting
206
+ hostmaster
207
+ hq
208
+ hr
209
+ humanresource
210
+ inbound
211
+ inbox
212
+ info
213
+ infodesk
214
+ information
215
+ infos
216
+ infouk
217
+ innovation
218
+ inoc
219
+ inquires
220
+ inquiries
221
+ institute
222
+ insurance
223
+ integration
224
+ integrations
225
+ internal
226
+ interns
227
+ internship
228
+ inventory
229
+ investorrelations
230
+ investors
231
+ invoice
232
+ invoices
233
+ invoicing
234
+ ispfeedback
235
+ ispsupport
236
+ it
237
+ ithelp
238
+ jira
239
+ jobs
240
+ kontakt
241
+ law
242
+ lawyers
243
+ leadership
244
+ leadershipteam
245
+ leads
246
+ leasing
247
+ legal
248
+ list
249
+ listadmin
250
+ listrequest
251
+ mail
252
+ mailbox
253
+ maildaemon
254
+ mailerdaemon
255
+ mailing
256
+ mainoffice
257
+ maintenance
258
+ management
259
+ management_team
260
+ managementgroup
261
+ managementteam
262
+ manager
263
+ managers
264
+ marketing
265
+ marketingops
266
+ marketingteam
267
+ master
268
+ me
269
+ media
270
+ meetup
271
+ member
272
+ members
273
+ membership
274
+ mentors
275
+ mgmt
276
+ misc
277
+ newbusiness
278
+ news
279
+ newsletter
280
+ nobody
281
+ noc
282
+ noemail
283
+ noemailadress
284
+ none
285
+ noreply
286
+ noresponse
287
+ null
288
+ office
289
+ officeadmin
290
+ officestaff
291
+ onboarding
292
+ online
293
+ operations
294
+ ops
295
+ order
296
+ orders
297
+ owner
298
+ owners
299
+ packaging
300
+ partner
301
+ partners
302
+ partnerships
303
+ payment
304
+ payments
305
+ paypal
306
+ payroll
307
+ people
308
+ phish
309
+ phishing
310
+ planning
311
+ post
312
+ postbox
313
+ postfix
314
+ postmaster
315
+ pr
316
+ press
317
+ prime
318
+ principal
319
+ print
320
+ privacy
321
+ productgrowth
322
+ productmanagement
323
+ productmanagers
324
+ productteam
325
+ projectmanagers
326
+ projects
327
+ publicrelations
328
+ purchasing
329
+ qa
330
+ quality
331
+ rd
332
+ reception
333
+ recruit
334
+ recruiting
335
+ recruitment
336
+ referral
337
+ referrals
338
+ registrar
339
+ remove
340
+ request
341
+ reservation
342
+ reservations
343
+ root
344
+ sale
345
+ sales
346
+ salesengineers
347
+ salesforce
348
+ salesinfo
349
+ salesteam
350
+ salesuk
351
+ school
352
+ schooladmin
353
+ schoolinfo
354
+ schoolmail
355
+ schooloffice
356
+ secretary
357
+ security
358
+ server
359
+ service
360
+ serviceadmin
361
+ servicedesk
362
+ services
363
+ shipping
364
+ shop
365
+ smtp
366
+ solicitors
367
+ solutions
368
+ spam
369
+ spamtrap
370
+ staff
371
+ studio
372
+ subscribe
373
+ suggestions
374
+ support
375
+ sysadmin
376
+ system
377
+ systems
378
+ team
379
+ teamleads
380
+ tech
381
+ technical
382
+ techops
383
+ techsupport
384
+ testing
385
+ theoffice
386
+ theteam
387
+ trade
388
+ trading
389
+ trouble
390
+ ukinfo
391
+ uksales
392
+ undisclosedrecipients
393
+ unsubscribe
394
+ update
395
+ updates
396
+ usenet
397
+ users
398
+ uucp
399
+ ux
400
+ vendor
401
+ vendors
402
+ warranty
403
+ watercooler
404
+ web
405
+ webadmin
406
+ webmaster
407
+ webteam
408
+ welcome
409
+ whois
410
+ wholesale
411
+ work
412
+ www
@@ -15,7 +15,8 @@ module EmailData
15
15
  :disposable_emails,
16
16
  :country_tlds,
17
17
  :free_email_domains,
18
- :tlds
18
+ :tlds,
19
+ :roles
19
20
  end
20
21
 
21
22
  def self.source=(source)
@@ -35,6 +35,10 @@ module EmailData
35
35
  self.table_name = "free_email_domains"
36
36
  end
37
37
 
38
+ class Role < ApplicationRecord
39
+ self.table_name = "roles"
40
+ end
41
+
38
42
  class Collection
39
43
  def initialize(model)
40
44
  @model = model
@@ -68,6 +72,10 @@ module EmailData
68
72
  def self.free_email_domains
69
73
  @free_email_domains ||= Collection.new(FreeEmailDomain)
70
74
  end
75
+
76
+ def self.roles
77
+ @roles ||= Collection.new(Role)
78
+ end
71
79
  end
72
80
  end
73
81
  end
@@ -23,6 +23,10 @@ module EmailData
23
23
  @free_email_domains ||= load_file("free_email_domains.txt")
24
24
  end
25
25
 
26
+ def self.roles
27
+ @roles ||= load_file("roles.txt")
28
+ end
29
+
26
30
  def self.load_file(filename)
27
31
  EmailData
28
32
  .data_dir
@@ -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": "1604444717.0.0",
4
+ "version": "1604907377.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: '1604444717'
4
+ version: '1604907377'
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-03 00:00:00.000000000 Z
11
+ date: 2020-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -201,6 +201,8 @@ files:
201
201
  - data/manual/disposable_domains.txt
202
202
  - data/manual/disposable_emails.txt
203
203
  - data/manual/free_email_domains.txt
204
+ - data/manual/roles.txt
205
+ - data/roles.txt
204
206
  - data/tlds.txt
205
207
  - email_data.gemspec
206
208
  - lib/email_data.rb