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
add985ce
Commit
add985ce
authored
Apr 16, 2017
by
Joshua Tauberer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
letencrypt now supports idna, remove the check/block
parent
416dbebf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
CHANGELOG.md
CHANGELOG.md
+2
-1
ssl_certificates.py
management/ssl_certificates.py
+0
-6
No files found.
CHANGELOG.md
View file @
add985ce
...
...
@@ -4,7 +4,8 @@ CHANGELOG
In Development
--------------
ownCloud is replaced with Nextcloud 10.0.4.
*
ownCloud is replaced with Nextcloud 10.0.4.
*
Let's Encrypt now supports internationalized domains so the block on provisioning those domains through Let's Encrypt is now removed.
v0.22 (April 2, 2017)
---------------------
...
...
management/ssl_certificates.py
View file @
add985ce
...
...
@@ -214,12 +214,6 @@ def get_certificates_to_provision(env, show_extended_problems=True, force_domain
# Filter out domains that we can't provision a certificate for.
def
can_provision_for_domain
(
domain
):
from
status_checks
import
normalize_ip
# Let's Encrypt doesn't yet support IDNA domains.
# We store domains in IDNA (ASCII). To see if this domain is IDNA,
# we'll see if its IDNA-decoded form is different.
if
idna
.
decode
(
domain
.
encode
(
"ascii"
))
!=
domain
:
problems
[
domain
]
=
"Let's Encrypt does not yet support provisioning certificates for internationalized domains."
return
False
# Does the domain resolve to this machine in public DNS? If not,
# we can't do domain control validation. For IPv6 is configured,
...
...
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