From 8d5aa0b27a7580cf7f33129bf8857ea6eeabd75c Mon Sep 17 00:00:00 2001 From: headpats Date: Wed, 18 Mar 2026 05:59:47 +0100 Subject: [PATCH] docs/roundcube: attachment size workaround is now handled by the module --- docs/roundcube.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/roundcube.nix b/docs/roundcube.nix index 4666f1f..52cf5b0 100644 --- a/docs/roundcube.nix +++ b/docs/roundcube.nix @@ -23,9 +23,7 @@ # https://search.nixos.org/packages?query=aspellDicts en ]; - # Account for ~30% size increase due to base64 encoding of attachments - # https://github.com/roundcube/roundcubemail/issues/7979 - maxAttachmentSize = config.mailserver.messageSizeLimit / 1024 / 1024 / 1.37; + maxAttachmentSize = config.mailserver.messageSizeLimit / 1024 / 1024; extraConfig = '' $config['imap_host'] = "ssl://${config.mailserver.fqdn}"; $config['smtp_host'] = "ssl://${config.mailserver.fqdn}";