docs/roundcube: attachment size workaround is now handled by the module

This commit is contained in:
headpats
2026-03-18 05:59:47 +01:00
parent 83a669fb2f
commit 8d5aa0b27a
+1 -3
View File
@@ -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}";