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
Updated by Marcos M about 1 month ago
- Status changed from New to Resolved
- Assignee set to Steve Wheeler
- Target version set to 2.9.0
- % Done changed from 0 to 100
- Plus Target Version set to 25.11
- Affected Version set to 2.8.x
Already fixed with c43d479574f820dada0ff8b2f788fca587b85d61.
Actions