From 88d2b387c70fe43c5bc75aeb7fbd16ab392e20b8 Mon Sep 17 00:00:00 2001 From: Thomas Preisner Date: Sat, 28 Dec 2024 22:42:00 +0100 Subject: [PATCH] mailsystem: roundcube: Fix mixup with dovecotpw and passwdfile --- mailsystem/roundcube.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailsystem/roundcube.nix b/mailsystem/roundcube.nix index ba04636..b05fb25 100644 --- a/mailsystem/roundcube.nix +++ b/mailsystem/roundcube.nix @@ -47,8 +47,8 @@ in { // Enables saving the new password even if it machtes the old password. Useful // for upgrading the stored passwords after the encryption scheme has changed. $config['password_force_save'] = true; - $config['password_dovecot_passwdfile_path'] = "${pkgs.dovecot}/bin/doveadm pw"; - $config['password_dovecotpw'] = "${dovecotDynamicPasswdFile}"; + $config['password_dovecot_passwdfile_path'] = "${dovecotDynamicPasswdFile}"; + $config['password_dovecotpw'] = "${pkgs.dovecot}/bin/doveadm pw"; $config['password_dovecotpw_method'] = "${roundcubeCfg.passwordHashingAlgorithm}"; $config['password_dovecotpw_with_method'] = true; '';