@@ -704,6 +704,7 @@ our %cfgvars = (
704
704
' priority' => setv(T_STRING,0, ' notice' , undef ),
705
705
' mail' => setv(T_EMAIL, 0, undef , undef ),
706
706
' mail-failure' => setv(T_EMAIL, 0, undef , undef ),
707
+ ' mail-from' => setv(T_EMAIL, 0, undef , undef ),
707
708
' max-warn' => setv(T_NUMBER,0, 1, undef ),
708
709
709
710
' exec' => setv(T_BOOL, 0, 1, undef ),
@@ -1427,6 +1428,7 @@ my @opt = (
1427
1428
[" max-warn" , " =i" , " --max-warn=<max> : log at most <max> warning messages for undefined IP address" ],
1428
1429
[" mail" , " =s" , " --mail=<address> : e-mail messages to <address>" ],
1429
1430
[" mail-failure" , " =s" , " --mail-failure=<addr> : e-mail messages for failed updates to <addr>" ],
1431
+ [" mail-from" , " =s" , ' --mail-from=<addr> : set the "From:" header in e-mail messages to <addr> if non-empty' ],
1430
1432
[" exec" , " !" , " --{no}exec : do {not} execute; just show what would be done" ],
1431
1433
[" debug" , " !" , " --{no}debug : print {no} debugging information" ],
1432
1434
[" verbose" , " !" , " --{no}verbose : print {no} verbose information" ],
@@ -2404,8 +2406,10 @@ sub sendmail {
2404
2406
$recipients = opt(' mail-failure' );
2405
2407
}
2406
2408
if ($emailbody && $recipients && $emailbody ne $last_emailbody ) {
2409
+ my $sender = opt(' mail-from' ) // ' ' ;
2407
2410
pipecmd(" sendmail -oi $recipients " ,
2408
2411
" To: $recipients " ,
2412
+ $sender ne ' ' ? (" From: $sender " ) : (),
2409
2413
" Subject: status report from $program \@ $hostname " ,
2410
2414
" \r\n " ,
2411
2415
$emailbody ,
0 commit comments