summaryrefslogtreecommitdiffstats
path: root/debian/patches/debian/0003-host-name-in-default-mailfrom.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-25 17:51:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-25 17:51:17 +0000
commit9edb339ac57ea676f0c696ddb69c0770e6558a50 (patch)
tree0858a3c446c41ba6a70dc42947979bacc4b54ea8 /debian/patches/debian/0003-host-name-in-default-mailfrom.patch
parentRefreshing mdmonitor-service-simplify.patch. (diff)
downloadmdadm-9edb339ac57ea676f0c696ddb69c0770e6558a50.tar.xz
mdadm-9edb339ac57ea676f0c696ddb69c0770e6558a50.zip
Refreshing host-name-in-default-mailfrom.patch.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/debian/0003-host-name-in-default-mailfrom.patch')
-rw-r--r--debian/patches/debian/0003-host-name-in-default-mailfrom.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/patches/debian/0003-host-name-in-default-mailfrom.patch b/debian/patches/debian/0003-host-name-in-default-mailfrom.patch
new file mode 100644
index 0000000..7594d7a
--- /dev/null
+++ b/debian/patches/debian/0003-host-name-in-default-mailfrom.patch
@@ -0,0 +1,17 @@
+Author: Felix Lechner <felix.lechner@lease-up.com>
+Description: Add host name to default MAILFROM (Closes: #1006464).
+ The host on which the error occurred is mentioned in the subject and also in
+ the message body, but some may find it useful in the From address, as well.
+
+diff -Naurp mdadm.orig/Monitor.c mdadm/Monitor.c
+--- mdadm.orig/Monitor.c
++++ mdadm/Monitor.c
+@@ -447,7 +447,7 @@ static void send_event_email(const char
+ if (info->mailfrom)
+ fprintf(mp, "From: %s\n", info->mailfrom);
+ else
+- fprintf(mp, "From: %s monitoring <root>\n", Name);
++ fprintf(mp, "From: %s monitoring <root@%s>\n", Name, hname);
+ fprintf(mp, "To: %s\n", info->mailaddr);
+ fprintf(mp, "Subject: %s event on %s:%s\n\n", event, dev, hname);
+ fprintf(mp, "This is an automatically generated mail message. \n");