Revision 81e922c2
Von Tamino Steinert vor mehr als 1 Jahr hinzugefügt
SL/Mailer.pm | ||
---|---|---|
341 | 341 |
sub _store_in_imap_sent_folder { |
342 | 342 |
my ($self, $email_as_string) = @_; |
343 | 343 |
|
344 |
my $email = $::myconfig{email}; |
|
344 |
my $from_email = $self->{from}; |
|
345 |
my $user_email = $::myconfig{email}; |
|
345 | 346 |
my $config = |
346 |
$::lx_office_conf{"sent_emails_in_imap/email/$email"} |
|
347 |
$::lx_office_conf{"sent_emails_in_imap/email/$from_email"} |
|
348 |
|| $::lx_office_conf{"sent_emails_in_imap/email/$user_email"} |
|
347 | 349 |
|| $::lx_office_conf{sent_emails_in_imap} |
348 | 350 |
|| {}; |
349 | 351 |
return unless ($config->{enabled} && $config->{hostname}); |
Auch abrufbar als: Unified diff
Imap-Sent nutzte zuerst Mailadresse aus der Email selbst.