The backup from: and to: addresses appear to be hard-coded into /etc/e-smith/events/actions/workstation-backup-dar (from: admin-backup; to: admin).
To send these notifications elsewhere, modify the 'admin' account in server-manager and setup an email forwarding address.
I don't know if the 'forwarding address' field will take multiple email addresses - if it does, add as many as you want. If it doesn't, create a group for admin notifications, add to that group all of the people you want to receive admin notifications, and modify the admin user to forward email to the new group.
If the above options don't meet your needs, I'd recommend:
- copy workstation-backup-dar to workstation-backup-dar.org
- modify /etc/e-smith/events/actions/workstation-backup-dar to use db variables for From & To
- create a 'new feature request' for this in the bug tracker, and upload the results of 'diff -u workstation-backup-dar workstation-backup-dar.org'
[warning: untested guess follows]
The modifications you'd need might look something like this:
Insert between lines 78 & 79:
78 my $mntdir = $backupwk->prop('Mount') || '/mnt/smb';
my $frommail = $backupwk->prop('FromMail') || 'admin-backup';
my $tomail = $backupwk->prop('ToMail') || 'admin';
79 my $tmpdir;
Then modify lines originally numbered 81 & 82 to look like this:
Old 81:
$report .= "From: admin-backup\n";
Change to:
$report .= "From: ".$frommail."\n";
Old 82:
$report .= "To: admin\n";
Change to:
$report .= "To: ".$tomail."\n";
Now set your workstation backup from: and to: addresses as follows:
config setprop backupwk FromMail backup@abccorp.org
config setprop backupwk ToMail support@abcconsulting.com