Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mailinabox
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mailinabox
Commits
7bf377ee
Commit
7bf377ee
authored
Nov 01, 2017
by
Jānis (Yannis)
Committed by
Joshua Tauberer
Oct 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use RSASHA256 for .lv domains DNSSEC (#1277)
parent
cd554cf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
dns_update.py
management/dns_update.py
+2
-1
No files found.
management/dns_update.py
View file @
7bf377ee
...
@@ -528,12 +528,13 @@ zone:
...
@@ -528,12 +528,13 @@ zone:
def
dnssec_choose_algo
(
domain
,
env
):
def
dnssec_choose_algo
(
domain
,
env
):
if
'.'
in
domain
and
domain
.
rsplit
(
'.'
)[
-
1
]
in
\
if
'.'
in
domain
and
domain
.
rsplit
(
'.'
)[
-
1
]
in
\
(
"email"
,
"guide"
,
"fund"
,
"be"
):
(
"email"
,
"guide"
,
"fund"
,
"be"
,
"lv"
):
# At GoDaddy, RSASHA256 is the only algorithm supported
# At GoDaddy, RSASHA256 is the only algorithm supported
# for .email and .guide.
# for .email and .guide.
# A variety of algorithms are supported for .fund. This
# A variety of algorithms are supported for .fund. This
# is preferred.
# is preferred.
# Gandi tells me that .be does not support RSASHA1-NSEC3-SHA1
# Gandi tells me that .be does not support RSASHA1-NSEC3-SHA1
# Nic.lv does not support RSASHA1-NSEC3-SHA1 for .lv tld's
return
"RSASHA256"
return
"RSASHA256"
# For any domain we were able to sign before, don't change the algorithm
# For any domain we were able to sign before, don't change the algorithm
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment