Actions
Regression #16518
closednet-mgmt/pfSense-pkg-arpwatch: sendmail_proxy.php missing dot between hostname and domain
Start date:
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
25.11
Affected Version:
2.8.x
Affected Plus Version:
25.07.1
Affected Architecture:
Description
99368e3698425 changed the way the send_subject variable in sendmail_proxy.php (really files/usr/local/pkg/arpwatch.inc) is constructed:
net-mgmt/pfSense-pkg-arpwatch: move to config accessors
[...]
- $send_subject = "{$config['system']['hostname']}.{$config['system']['domain']} - Arpwatch Notification : {$subject[1]}";
+ $send_subject = config_get_path('system/hostname') . config_get_path('system/domain') . " - Arpwatch Notification : {$subject[1]}";
[...]
The change leaves out "." between system/hostname and system/domain. Here's a patch to put it back.
Files
Actions