This is an automated email from the git hooks/post-receive script.

andreas pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e13f7d48e5 gnu: opensmtpd: Correct hard coded path.
e13f7d48e5 is described below

commit e13f7d48e5b989f5dbd27c19ac81989ec6b3ec6e
Author: Felix Lechner <[email protected]>
AuthorDate: Mon Jun 17 09:15:48 2024 -0700

    gnu: opensmtpd: Correct hard coded path.
    
    * gnu/packages/mail.scm (opensmtpd)[arguments]: Substitute non existent
    path.
    
    Change-Id: I6da8c3650be66f7e2297ea6174a66b7f0b1bc0c0
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/mail.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 1bf4debe68..b7b06c1d99 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -3316,6 +3316,10 @@ from the Cyrus IMAP project.")
          ;; Fix some incorrectly hard-coded external tool file names.
          (add-after 'unpack 'patch-FHS-file-names
            (lambda _
+             ;; avoids warning smtpd: couldn't enqueue offline message
+             ;; smtpctl exited abnormally
+             (substitute* "usr.sbin/smtpd/smtpd.h"
+               (("/usr/bin/smtpctl") "/run/setuid-programs/smtpctl"))
              (substitute* "usr.sbin/smtpd/smtpctl.c"
                ;; ‘gzcat’ is auto-detected at compile time, but ‘cat’ isn't.
                (("/bin/cat") (which "cat")))

Reply via email to