Compare commits

..
Author SHA1 Message Date
holger krekel 618b7cc1c4 feat: don't advertise special IMAP capabilities 2026-09-17 20:59:24 +02:00
3 changed files with 1 additions and 10 deletions
+1 -1
View File
@@ -354,7 +354,7 @@ class IrohDeployer(Deployer):
class JournaldDeployer(Deployer):
def configure(self):
self.put_file("journald.conf", "/etc/systemd/journald.conf.d/99-volatile-logging.conf")
self.put_file("journald.conf", "/etc/systemd/journald.conf")
def activate(self):
self.ensure_service("systemd-journald.service")
@@ -56,8 +56,6 @@ mail_server_admin = mailto:{{ config.privacy_mail }}
# <https://doc.dovecot.org/2.3/configuration_manual/quota_plugin/>
mail_plugins = zlib quota
imap_capability = +XDELTAPUSH XCHATMAIL
# Authentication for system users.
passdb {
@@ -15,13 +15,6 @@ def test_init(tmp_path, maildomain):
assert config.mail_domain_bare == maildomain
def test_capabilities(imap):
imap.connect()
capas = imap.conn.capabilities
assert "XCHATMAIL" in capas
assert "XDELTAPUSH" in capas
def test_login_basic_functioning(imap_or_smtp, gencreds, lp):
"""Test a) that an initial login creates a user automatically
and b) verify we can also login a second time with the same password