From e3459bff0039fbaaaf521fb8c8d406dc29986a8e Mon Sep 17 00:00:00 2001 From: Tomas Volf <~@wolfsden.cz> Date: Sat, 25 Jan 2025 00:46:36 +0100 Subject: [PATCH] gnu: mcron: Use correct sendmail. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When the crons are running, /run/privileged/bin is not in the $PATH, hence the default of "sendmail -t" does not work. * gnu/packages/guile-xyz.scm (mcron)[arguments]<#:configure-flags>: Set sendmail path. Change-Id: I86ffa5ddf26209acd8f706394ac13e63dcf4e0ec Signed-off-by: Ludovic Courtès --- gnu/packages/guile-xyz.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 6d12ab9688e420fd7919e46f453c72805580870d..28474753b915fc398d7b6864cf0ab33d22a0f777 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3291,6 +3291,9 @@ is no support for parsing block and inline level HTML.") (build-system gnu-build-system) (arguments (list + #:configure-flags + #~(list + "--with-sendmail=/run/privileged/bin/sendmail -t") #:phases #~(modify-phases %standard-phases (add-before 'check 'adjust-tests (lambda _