Fix email notification from a previous refactoring

master
Daniel Berteaud 5 years ago
parent 3ff093aa26
commit 59a6ad13b6
  1. 4
      zmldapsync/zmldapsync.pl

@ -716,11 +716,11 @@ sub handle_error {
my $mail = Email::MIME->create( my $mail = Email::MIME->create(
header_str => [ header_str => [
From => $conf->{general}->{notify}->{from}, From => $conf->{general}->{notify}->{from},
To => $addr, To => $conf->{general}->{notify}->{to},
Subject => "Zimbra LDAP synchronisation error for domain $domain" Subject => "Zimbra LDAP synchronisation error for domain $domain"
], ],
attributes => { attributes => {
charset => 'utf-8', charset => 'utf-8',
encoding => 'base64' encoding => 'base64'
}, },
body_str => "LDAP synchronisation for domain $domain failed at step '$step'. The error was\n$err\n", body_str => "LDAP synchronisation for domain $domain failed at step '$step'. The error was\n$err\n",

Loading…
Cancel
Save