1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-06-09 19:10:54 +00:00

Moved where you import normalize_ip

This commit is contained in:
Jonathan Chun 2017-01-08 10:27:44 -05:00
parent 719166f7a3
commit a1ddec6007

View File

@ -4,7 +4,6 @@
import os, os.path, re, shutil
from utils import shell, safe_domain_name, sort_domains
from status_checks import normalize_ip
import idna
# SELECTING SSL CERTIFICATES FOR USE IN WEB
@ -214,6 +213,7 @@ 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.