From d9918850279cef326c837cc365ddf629a6043909 Mon Sep 17 00:00:00 2001 From: Christopher Head Date: Sat, 30 Dec 2023 12:20:41 -0800 Subject: [PATCH] =?UTF-8?q?Use=20the=20=E2=80=9Cmail=E2=80=9D=20syslog=20f?= =?UTF-8?q?acility=20in=20the=20journal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When running under systemd, what’s done with text the program prints to stdout/stderr depends on the `StandardOutput` and `StandardError` directives in the unit file. Those are unset in this unit file (which is probably appropriate), which means they inherit defaults from a global config file. If unset in that config file, in turn, the default is to write the messages to the system journal. When that is done, the journal entries are automatically given syslog-style metadata, i.e. an identifier, facility code, and priority level. If unspecified, the facility code is set to “daemon”; however, since nullmailer is in the business of handling e-mail, “mail” is a better choice out of the available set. --- scripts/nullmailer.service | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/nullmailer.service b/scripts/nullmailer.service index 1412810..16f74f4 100644 --- a/scripts/nullmailer.service +++ b/scripts/nullmailer.service @@ -12,6 +12,7 @@ ExecStart=/usr/sbin/nullmailer-send User=nullmail Group=nullmail Restart=always +SyslogFacility=mail [Install] WantedBy=multi-user.target