mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
management: fix crash when entering catch-all alias with no forward-to
This commit is contained in:
parent
7cf55db865
commit
b810417676
@ -93,7 +93,11 @@ def validate_email(email, mode=None):
|
|||||||
# Check the syntax of the address.
|
# Check the syntax of the address.
|
||||||
try:
|
try:
|
||||||
# allow .local domains to pass when they refer to the local machine
|
# allow .local domains to pass when they refer to the local machine
|
||||||
email_domain = get_domain(email)
|
try:
|
||||||
|
email_domain = get_domain(email)
|
||||||
|
except IndexError:
|
||||||
|
raise EmailNotValidError(email)
|
||||||
|
|
||||||
test_env = (
|
test_env = (
|
||||||
email_domain.endswith(".local") and
|
email_domain.endswith(".local") and
|
||||||
email_domain == socket.getfqdn()
|
email_domain == socket.getfqdn()
|
||||||
|
Loading…
Reference in New Issue
Block a user