X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FMailer.pm;h=52691e277f75f208c1d51ce68e087759194694f9;hb=1eaf497886107c359dbc2a185f4bede9b7e7f6ea;hp=37d98b7a7d00bf12d705eab256f8c144bcec5082;hpb=3d7797630e04ddb308b11a58cd9732d502029125;p=kivitendo-erp.git diff --git a/SL/Mailer.pm b/SL/Mailer.pm index 37d98b7a7..52691e277 100644 --- a/SL/Mailer.pm +++ b/SL/Mailer.pm @@ -30,6 +30,13 @@ package Mailer; +use Email::Address; + +use SL::Common; +use SL::Template; + +my $num_sent = 0; + sub new { $main::lxdebug->enter_sub(); @@ -87,47 +94,60 @@ sub mime_quote_text { sub send { $main::lxdebug->enter_sub(); - my ($self, $out) = @_; + my ($self) = @_; - my $boundary = time; - $boundary = "LxOffice-$self->{version}-$boundary"; - my $domain = $self->{from}; - $domain =~ s/(.*?\@|>)//g; - my $msgid = "$boundary\@$domain"; + local (*IN, *OUT); - $self->{charset} = "ISO-8859-15" unless $self->{charset}; + $num_sent++; + my $boundary = time() . "-$$-${num_sent}"; + $boundary = "LxOffice-$self->{version}-$boundary"; + my $domain = $self->{from}; + $domain =~ s/(.*?\@|>)//g; + my $msgid = "$boundary\@$domain"; - if ($out) { - if (!open(OUT, $out)) { - $main::lxdebug->leave_sub(); - return "$out : $!"; - } - } else { - if (!open(OUT, ">-")) { - $main::lxdebug->leave_sub(); - return "STDOUT : $!"; - } - } + my $form = $main::form; + my $myconfig = \%main::myconfig; - $self->{contenttype} = "text/plain" unless $self->{contenttype}; + my $email = $myconfig->{email}; + $email =~ s/[^\w\.\-\+=@]//ig; - my ($cc, $bcc); - $cc = "Cc: $self->{cc}\n" if $self->{cc}; - $bcc = "Bcc: $self->{bcc}\n" if $self->{bcc}; + my %temp_form = ( %{ $form }, 'myconfig_email' => $email ); + my $template = PlainTextTemplate->new(undef, \%temp_form, $myconfig); + my $sendmail = $template->parse_block($main::sendmail); + + if (!open(OUT, $sendmail)) { + $main::lxdebug->leave_sub(); + return "$sendmail : $!"; + } + + $self->{charset} ||= Common::DEFAULT_CHARSET; + $self->{contenttype} ||= "text/plain"; foreach my $item (qw(to cc bcc)) { + next unless ($self->{$item}); $self->{$item} =~ s/\</{$item} =~ s/\$<\$/{$item} =~ s/\>/>/g; $self->{$item} =~ s/\$>\$/>/g; } - my $subject = $self->mime_quote_text($self->{subject}, 60); + my $headers = ''; + foreach my $item (qw(from to cc)) { + next unless ($self->{$item}); + my (@addr_objects) = Email::Address->parse($self->{$item}); + next unless (scalar @addr_objects); + + foreach my $addr_obj (@addr_objects) { + $addr_obj->phrase($self->mime_quote_text($addr_obj->phrase(), 60)) if ($addr_obj->phrase()); + $addr_obj->comment($self->mime_quote_text($addr_obj->comment(), 60)) if ($addr_obj->comment()); + + $headers .= sprintf("%s: %s\n", ucfirst($item), $addr_obj->format()); + } + } + + $headers .= sprintf("Subject: %s\n", $self->mime_quote_text($self->{subject}, 60)); - print OUT qq|From: $self->{from} -To: $self->{to} -${cc}${bcc}Subject: $subject -Message-ID: <$msgid> + print OUT qq|${headers}Message-ID: <$msgid> X-Mailer: Lx-Office $self->{version} MIME-Version: 1.0 |; @@ -155,7 +175,7 @@ $self->{message} } else { $filename = $attachment; # strip path - $filename =~ s/(.*\/|$self->{fileid})//g; + $filename =~ s/(.*\/|\Q$self->{fileid}\E)//g; } my $application =