1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   9 # This program is free software; you can redistribute it and/or modify
 
  10 # it under the terms of the GNU General Public License as published by
 
  11 # the Free Software Foundation; either version 2 of the License, or
 
  12 # (at your option) any later version.
 
  14 # This program is distributed in the hope that it will be useful,
 
  15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  17 # GNU General Public License for more details.
 
  18 # You should have received a copy of the GNU General Public License
 
  19 # along with this program; if not, write to the Free Software
 
  20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
  22 #======================================================================
 
  27 use Email::MIME::Creator;
 
  29 use List::UtilsBy qw(bundle_by);
 
  32 use SL::DB::EmailJournal;
 
  33 use SL::DB::EmailJournalAttachment;
 
  42 my %mail_delivery_modules = (
 
  43   sendmail => 'SL::Mailer::Sendmail',
 
  44   smtp     => 'SL::Mailer::SMTP',
 
  48   my ($type, %params) = @_;
 
  49   my $self = { %params };
 
  60     myconfig => \%::myconfig,
 
  63   my $module = $mail_delivery_modules{ $::lx_office_conf{mail_delivery}->{method} };
 
  64   eval "require $module" or return undef;
 
  66   return $module->new(%params);
 
  69 sub _cleanup_addresses {
 
  72   foreach my $item (qw(to cc bcc)) {
 
  73     next unless $self->{$item};
 
  75     $self->{$item} =~ s/\</</g;
 
  76     $self->{$item} =~ s/\$<\$/</g;
 
  77     $self->{$item} =~ s/\>/>/g;
 
  78     $self->{$item} =~ s/\$>\$/>/g;
 
  82 sub _create_message_id {
 
  86   my $domain  =  $self->{from};
 
  90   return  "kivitendo-$self->{version}-" . time() . "-${$}-${num_sent}\@$domain";
 
  93 sub _create_address_headers {
 
  96   # $self->{addresses} collects the recipients for use in e.g. the
 
  97   # SMTP 'RCPT TO:' envelope command. $self->{headers} collects the
 
  98   # headers that make up the actual email. 'BCC' should not be
 
  99   # included there for certain transportation methods (SMTP).
 
 101   $self->{addresses} = {};
 
 103   foreach my $item (qw(from to cc bcc)) {
 
 104     $self->{addresses}->{$item} = [];
 
 105     next if !$self->{$item};
 
 107     my @header_addresses;
 
 109     foreach my $addr_obj (Email::Address->parse($self->{$item})) {
 
 110       push @{ $self->{addresses}->{$item} }, $addr_obj->address;
 
 111       next if $self->{driver}->keep_from_header($item);
 
 113       my $phrase = $addr_obj->phrase();
 
 117         $addr_obj->phrase($phrase);
 
 120       push @header_addresses, $addr_obj->format;
 
 123     push @{ $self->{headers} }, ( ucfirst($item) => join(', ', @header_addresses) ) if @header_addresses;
 
 127 sub _create_attachment_part {
 
 128   my ($self, $attachment) = @_;
 
 131     disposition  => 'attachment',
 
 132     encoding     => 'base64',
 
 135   my $attachment_content;
 
 137   if (ref($attachment) eq "HASH") {
 
 138     $attributes{filename} = $attachment->{name};
 
 139     $attachment_content   = $attachment->{content} // eval { read_file($attachment->{filename}) };
 
 143     $attributes{filename} =  $attachment;
 
 144     $attributes{filename} =~ s:.*\Q$self->{fileid}\E:: if $self->{fileid};
 
 145     $attributes{filename} =~ s:.*/::g;
 
 146     $attachment_content   =  eval { read_file($attachment) };
 
 149   return undef if !defined $attachment_content;
 
 151   my $application             = ($attachment =~ /(^\w+$)|\.(html|text|txt|sql)$/) ? 'text' : 'application';
 
 152   $attributes{content_type}   = SL::MIME->mime_type_from_ext($attributes{filename});
 
 153   $attributes{content_type} ||= "${application}/$self->{format}" if $self->{format};
 
 154   $attributes{content_type} ||= 'application/octet-stream';
 
 155   $attributes{charset}        = $self->{charset} if lc $application eq 'text' && $self->{charset};
 
 157   return Email::MIME->create(
 
 158     attributes => \%attributes,
 
 159     body       => $attachment_content,
 
 163 sub _create_message {
 
 168   if ($self->{message}) {
 
 169     push @parts, Email::MIME->create(
 
 171         content_type => $self->{contenttype},
 
 172         charset      => $self->{charset},
 
 173         encoding     => 'quoted-printable',
 
 175       body_str => $self->{message},
 
 178     push @{ $self->{headers} }, (
 
 179       'Content-Type' => qq|$self->{contenttype}; charset="$self->{charset}"|,
 
 183   push @parts, grep { $_ } map { $self->_create_attachment_part($_) } @{ $self->{attachments} || [] };
 
 185   return Email::MIME->create(
 
 186     header_str => $self->{headers},
 
 194   # Create driver for delivery method (sendmail/SMTP)
 
 195   $self->{driver} = eval { $self->_create_driver };
 
 196   if (!$self->{driver}) {
 
 197     $self->_store_in_journal('failed', 'driver could not be created; check your configuration');
 
 198     return "send email : $@";
 
 201   # Set defaults & headers
 
 202   $self->{charset}       =  'UTF-8';
 
 203   $self->{contenttype} ||=  "text/plain";
 
 205     Subject              => $self->{subject},
 
 206     'Message-ID'         => '<' . $self->_create_message_id . '>',
 
 207     'X-Mailer'           => "kivitendo $self->{version}",
 
 212     # Clean up To/Cc/Bcc address fields
 
 213     $self->_cleanup_addresses;
 
 214     $self->_create_address_headers;
 
 216     my $email = $self->_create_message;
 
 218     # $::lxdebug->message(0, "message: " . $email->as_string);
 
 221     $self->{driver}->start_mail(from => $self->{from}, to => [ $self->_all_recipients ]);
 
 222     $self->{driver}->print($email->as_string);
 
 223     $self->{driver}->send;
 
 230   $self->_store_in_journal;
 
 232   return $ok ? '' : "send email: $error";
 
 235 sub _all_recipients {
 
 238   $self->{addresses} ||= {};
 
 239   return map { @{ $self->{addresses}->{$_} || [] } } qw(to cc bcc);
 
 242 sub _store_in_journal {
 
 243   my ($self, $status, $extended_status) = @_;
 
 245   my $journal_enable = $::instance_conf->get_email_journal;
 
 247   return if $journal_enable == 0;
 
 249   $status          //= $self->{driver}->status if $self->{driver};
 
 250   $status          //= 'failed';
 
 251   $extended_status //= $self->{driver}->extended_status if $self->{driver};
 
 252   $extended_status //= 'unknown error';
 
 256   @attachments = grep { $_ } map {
 
 257     my $part = $self->_create_attachment_part($_);
 
 259       SL::DB::EmailJournalAttachment->new(
 
 260         name      => $part->filename,
 
 261         mime_type => $part->content_type,
 
 262         content   => $part->body,
 
 265   } @{ $self->{attachments} || [] } if $journal_enable > 1;
 
 267   my $headers = join "\r\n", (bundle_by { join(': ', @_) } 2, @{ $self->{headers} || [] });
 
 269   SL::DB::EmailJournal->new(
 
 270     sender          => SL::DB::Manager::Employee->current,
 
 271     from            => $self->{from}    // '',
 
 272     recipients      => join(', ', $self->_all_recipients),
 
 273     subject         => $self->{subject} // '',
 
 275     body            => $self->{message} // '',
 
 276     sent_on         => DateTime->now_local,
 
 277     attachments     => \@attachments,
 
 279     extended_status => $extended_status,