Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mastofe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Pleroma
mastofe
Commits
4f0322dc
Commit
4f0322dc
authored
6 years ago
by
Franck Zoccolo
Committed by
Eugen Rochko
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add support for IPv6 only MXes in Email validation (#10009)
* Add support for IPv6 only MXes * Fixed email validator tests
parent
241661e0
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!23
bundle-2019-03-07
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/validators/email_mx_validator.rb
+1
-0
1 addition, 0 deletions
app/validators/email_mx_validator.rb
spec/validators/email_mx_validator_spec.rb
+38
-0
38 additions, 0 deletions
spec/validators/email_mx_validator_spec.rb
with
39 additions
and
0 deletions
app/validators/email_mx_validator.rb
+
1
−
0
View file @
4f0322dc
...
...
@@ -24,6 +24,7 @@ class EmailMxValidator < ActiveModel::Validator
([
domain
]
+
hostnames
).
uniq
.
each
do
|
hostname
|
ips
.
concat
(
dns
.
getresources
(
hostname
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
to_a
.
map
{
|
e
|
e
.
address
.
to_s
})
ips
.
concat
(
dns
.
getresources
(
hostname
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
to_a
.
map
{
|
e
|
e
.
address
.
to_s
})
end
end
...
...
This diff is collapsed.
Click to expand it.
spec/validators/email_mx_validator_spec.rb
+
38
−
0
View file @
4f0322dc
...
...
@@ -11,6 +11,7 @@ describe EmailMxValidator do
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
MX
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([])
allow
(
resolver
).
to
receive
(
:timeouts
=
).
and_return
(
nil
)
allow
(
Resolv
::
DNS
).
to
receive
(
:open
).
and_yield
(
resolver
)
...
...
@@ -23,7 +24,9 @@ describe EmailMxValidator do
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
MX
).
and_return
([
double
(
exchange:
'mail.example.com'
)])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'mail.example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'mail.example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([])
allow
(
resolver
).
to
receive
(
:timeouts
=
).
and_return
(
nil
)
allow
(
Resolv
::
DNS
).
to
receive
(
:open
).
and_yield
(
resolver
)
...
...
@@ -37,6 +40,21 @@ describe EmailMxValidator do
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
MX
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([
double
(
address:
'1.2.3.4'
)])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([])
allow
(
resolver
).
to
receive
(
:timeouts
=
).
and_return
(
nil
)
allow
(
Resolv
::
DNS
).
to
receive
(
:open
).
and_yield
(
resolver
)
subject
.
validate
(
user
)
expect
(
user
.
errors
).
to
have_received
(
:add
)
end
it
'adds an error if the AAAA record is blacklisted'
do
EmailDomainBlock
.
create!
(
domain:
'fd00::1'
)
resolver
=
double
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
MX
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([
double
(
address:
'fd00::1'
)])
allow
(
resolver
).
to
receive
(
:timeouts
=
).
and_return
(
nil
)
allow
(
Resolv
::
DNS
).
to
receive
(
:open
).
and_yield
(
resolver
)
...
...
@@ -50,7 +68,25 @@ describe EmailMxValidator do
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
MX
).
and_return
([
double
(
exchange:
'mail.example.com'
)])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'mail.example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([
double
(
address:
'2.3.4.5'
)])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'mail.example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([])
allow
(
resolver
).
to
receive
(
:timeouts
=
).
and_return
(
nil
)
allow
(
Resolv
::
DNS
).
to
receive
(
:open
).
and_yield
(
resolver
)
subject
.
validate
(
user
)
expect
(
user
.
errors
).
to
have_received
(
:add
)
end
it
'adds an error if the MX IPv6 record is blacklisted'
do
EmailDomainBlock
.
create!
(
domain:
'fd00::2'
)
resolver
=
double
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
MX
).
and_return
([
double
(
exchange:
'mail.example.com'
)])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'mail.example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'mail.example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([
double
(
address:
'fd00::2'
)])
allow
(
resolver
).
to
receive
(
:timeouts
=
).
and_return
(
nil
)
allow
(
Resolv
::
DNS
).
to
receive
(
:open
).
and_yield
(
resolver
)
...
...
@@ -64,7 +100,9 @@ describe EmailMxValidator do
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
MX
).
and_return
([
double
(
exchange:
'mail.example.com'
)])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'mail.example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
A
).
and_return
([
double
(
address:
'2.3.4.5'
)])
allow
(
resolver
).
to
receive
(
:getresources
).
with
(
'mail.example.com'
,
Resolv
::
DNS
::
Resource
::
IN
::
AAAA
).
and_return
([
double
(
address:
'fd00::2'
)])
allow
(
resolver
).
to
receive
(
:timeouts
=
).
and_return
(
nil
)
allow
(
Resolv
::
DNS
).
to
receive
(
:open
).
and_yield
(
resolver
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment