]> git.proxmox.com Git - proxmox.git/commitdiff
fix #4162: sys: added `auto-submitted` header to email body
authorGabriel Goller <g.goller@proxmox.com>
Fri, 8 Sep 2023 13:06:57 +0000 (15:06 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 18 Sep 2023 14:41:06 +0000 (16:41 +0200)
`Auto-Submitted` is defined in the rfc 5436 [1] and describes how
an automatic response (f.e. ooo replies, etc.) should behave on the
emails. When using `Auto-Submitted: auto-generated` (or any value
other than `none`) automatic replies won't be triggered.

[1]: https://www.rfc-editor.org/rfc/rfc3834.html

Signed-off-by: Gabriel Goller <g.goller@proxmox.com>
proxmox-sys/src/email.rs

index da910d4251167e89f30a29ab512489e80d9fcae0..8b3a1b67532fde6142746d135b174c8260030498 100644 (file)
@@ -7,6 +7,8 @@ use anyhow::{bail, Error};
 
 /// Sends multi-part mail with text and/or html to a list of recipients
 ///
+/// Includes the header `Auto-Submitted: auto-generated`, so that auto-replies
+/// (i.e. OOO replies) won't trigger.
 /// ``sendmail`` is used for sending the mail.
 pub fn sendmail(
     mailto: &[&str],
@@ -69,6 +71,7 @@ pub fn sendmail(
         body.push_str("This is a multi-part message in MIME format.\n");
         let _ = write!(body, "\n--{}\n", boundary);
     }
+    body.push_str("Auto-Submitted: auto-generated;\n");
     if let Some(text) = text {
         body.push_str("Content-Type: text/plain;\n");
         body.push_str("\tcharset=\"UTF-8\"\n");