chatmail.ini: switch username length defaults back to 9

This commit is contained in:
missytake
2023-12-12 17:48:37 +01:00
parent f2d32324e3
commit 4551f36b85
3 changed files with 14 additions and 18 deletions

View File

@@ -25,8 +25,8 @@ def test_read_config_testrun(make_config):
assert config.max_user_send_per_minute == 60
assert config.max_mailbox_size == "100M"
assert config.delete_mails_after == "40d"
assert config.username_min_length == 6
assert config.username_max_length == 20
assert config.username_min_length == 9
assert config.username_max_length == 9
assert config.password_min_length == 9
assert config.passthrough_recipients == ["privacy@testrun.org"]
assert config.passthrough_senders == []