doveauth: ensure username length

This commit is contained in:
missytake
2024-06-27 12:28:27 +02:00
committed by holger krekel
parent 7c98c1f8c9
commit 0b8402c187

View File

@@ -60,6 +60,7 @@ def is_allowed_to_create(config: Config, user, cleartext_password) -> bool:
config.username_min_length,
config.username_max_length,
)
return False
return True