Skip to content

Commit 773bd55

Browse files
committed
tests: adjust dovecot 2.4 detection for F43
Fedora 43 has different config structure - a single dovecot.conf, instead of split into conf.d like it's in Debian QubesOS/qubes-issues#10102
1 parent 0ee504b commit 773bd55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/splitgpg/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def setUp(self):
448448

449449
# IMAP configuration
450450
self.imap_pw = "pass"
451-
if self.frontend.run("grep -q mail_driver /etc/dovecot/conf.d/10-mail.conf", wait=True) == 0:
451+
if self.frontend.run("grep -rq mail_driver /etc/dovecot/", wait=True) == 0:
452452
self.frontend.run(
453453
'echo "mail_driver = maildir\nmail_path = ~/Mail\nmail_inbox_path = ~/Mail\nuserdb static {\n driver = passwd\n}\npassdb static {\n driver = static\n password=pass\n}" |\
454454
tee /etc/dovecot/conf.d/100-mail.conf', wait=True, user="root")

0 commit comments

Comments
 (0)