Skip to content

Commit 4008ccf

Browse files
authored
Merge pull request ddclient#565 from TinfoilSubmarine/feature/mail-from
add mail-from option
2 parents 59f6c29 + cf4bad1 commit 4008ccf

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

ChangeLog.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ repository history](https://github.com/ddclient/ddclient/commits/main).
55

66
## v4.0.0-rc.2 (unreleased work-in-progress)
77

8+
### New features
9+
10+
* New `--mail-from` option to control the "From:" header of email messages.
11+
[#565](https://github.com/ddclient/ddclient/pull/565)
12+
813
## 2024-12-25 v4.0.0-rc.1
914

1015
### Breaking changes

ddclient.conf.in

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ daemon=300 # check every 300 seconds
2525
syslog=yes # log update msgs to syslog
2626
mail=root # mail all msgs to root
2727
mail-failure=root # mail failed update msgs to root
28+
# mail-from=root # set the email "From:" header to "root". If
29+
# unset (the default) or empty, the from address
30+
# depends on your system's default behavior.
2831
pid=@runstatedir@/ddclient.pid # record PID in file.
2932
# postscript=script # run script after updating. The new IP is
3033
# added as argument.

ddclient.in

+4
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,7 @@ our %cfgvars = (
704704
'priority' => setv(T_STRING,0, 'notice', undef),
705705
'mail' => setv(T_EMAIL, 0, undef, undef),
706706
'mail-failure' => setv(T_EMAIL, 0, undef, undef),
707+
'mail-from' => setv(T_EMAIL, 0, undef, undef),
707708
'max-warn' => setv(T_NUMBER,0, 1, undef),
708709

709710
'exec' => setv(T_BOOL, 0, 1, undef),
@@ -1427,6 +1428,7 @@ my @opt = (
14271428
["max-warn", "=i", "--max-warn=<max> : log at most <max> warning messages for undefined IP address"],
14281429
["mail", "=s", "--mail=<address> : e-mail messages to <address>"],
14291430
["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'],
14301432
["exec", "!", "--{no}exec : do {not} execute; just show what would be done"],
14311433
["debug", "!", "--{no}debug : print {no} debugging information"],
14321434
["verbose", "!", "--{no}verbose : print {no} verbose information"],
@@ -2404,8 +2406,10 @@ sub sendmail {
24042406
$recipients = opt('mail-failure');
24052407
}
24062408
if ($emailbody && $recipients && $emailbody ne $last_emailbody) {
2409+
my $sender = opt('mail-from') // '';
24072410
pipecmd("sendmail -oi $recipients",
24082411
"To: $recipients",
2412+
$sender ne '' ? ("From: $sender") : (),
24092413
"Subject: status report from $program\@$hostname",
24102414
"\r\n",
24112415
$emailbody,

0 commit comments

Comments
 (0)