From: Moritz Bunkus Date: Mon, 8 Jul 2013 08:09:53 +0000 (+0200) Subject: SMTP-Mailer: Login-Konfigurationseinstellung heißt "login", nicht "user" X-Git-Tag: release-3.1.0beta1~204 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=5527271d5b92f6472b855b547de7e353b1fc9236;p=kivitendo-erp.git SMTP-Mailer: Login-Konfigurationseinstellung heißt "login", nicht "user" Die kivitendo.conf führt "login" als Namen für die Einstellung auf. Für Rückwärtskompatibilität aber beide Varianten unterstützen. --- diff --git a/SL/Mailer/SMTP.pm b/SL/Mailer/SMTP.pm index 8012a04cd..38ad2b753 100644 --- a/SL/Mailer/SMTP.pm +++ b/SL/Mailer/SMTP.pm @@ -31,9 +31,13 @@ sub init { $self->{smtp}->starttls(SSL_verify_mode => 0) || die if $self->{security} eq 'tls'; - return 1 unless $cfg->{login}; + # Backwards compatibility: older Versions used 'user' instead of the + # intended 'login'. Support both. + my $login = $cfg->{login} || $cfg->{user}; - $self->{smtp}->auth($cfg->{user}, $cfg->{password}) or die; + return 1 unless $login; + + $self->{smtp}->auth($login, $cfg->{password}) or die; } sub start_mail {