From: Marcela Mašláňová Date: Thu, 12 Apr 2012 11:08:39 +0000 (+0200) Subject: The mail header for automatic reply will now contain another field: X-Git-Tag: cronie1.4.9~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d42d62a372125fe9d5c97136dff042d2f2aba79;p=cronie The mail header for automatic reply will now contain another field: "Precedence: bulk", which is not compulsory according to RFC3834. Based on: Harald Reindl request in rhbz#811186 --- diff --git a/src/do_command.c b/src/do_command.c index 86e8a89..de5ab0e 100644 --- a/src/do_command.c +++ b/src/do_command.c @@ -455,6 +455,7 @@ static int child_process(entry * e, user * u, char **jobenv) { * defined (and suggested by) RFC3834. */ fprintf(mail, "Auto-Submitted: auto-generated\n"); + fprintf(mail, "Precedence: bulk\n"); for (env = jobenv; *env; env++) fprintf(mail, "X-Cron-Env: <%s>\n", *env);