⚠️ Remove word list check

This commit is contained in:
devStorm 2021-05-13 16:55:46 -07:00
parent 178ce34399
commit 5c74ad2dc0
No known key found for this signature in database
GPG Key ID: D52E1B66F336AC57
1 changed files with 0 additions and 8 deletions

View File

@ -295,14 +295,6 @@ def verify_prefix_suffix(user: User, alias_prefix, alias_suffix) -> bool:
LOG.exception("User %s submits a wrong alias suffix %s", user, alias_suffix)
return False
random_word_part = alias_domain_prefix[1:]
if not word_exist(random_word_part):
LOG.exception(
"alias suffix %s needs to start with a random word, user %s",
alias_suffix,
user,
)
return False
else:
if alias_domain not in user_custom_domains:
if not DISABLE_ALIAS_SUFFIX: