From 5e58fb0ba5bca5c17e92843e8ba39c85d3cd1c0f Mon Sep 17 00:00:00 2001 From: Gary Guo Date: Fri, 28 Nov 2025 16:21:15 +0000 Subject: [PATCH] nixos/roundcube: fix wrong error log location 'stderr' here means log to a file named 'stderr', and thus /stderr is being created. This probably is intended to be /dev/stderr. --- nixos/modules/services/mail/roundcube.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/mail/roundcube.nix b/nixos/modules/services/mail/roundcube.nix index 2bae14f47813..6e1b83f8d1d3 100644 --- a/nixos/modules/services/mail/roundcube.nix +++ b/nixos/modules/services/mail/roundcube.nix @@ -244,7 +244,7 @@ in services.phpfpm.pools.roundcube = { user = if localDB then user else "nginx"; phpOptions = '' - error_log = 'stderr' + error_log = '/dev/stderr' log_errors = on post_max_size = ${cfg.maxAttachmentSize} upload_max_filesize = ${cfg.maxAttachmentSize}