generated from smedev/Template-for-SMEServer-Core-Package
Jean-Philippe Pialasse
0e6e82c9a1
- add mini-qmail as Message delivery agent [SME: 12737] few other fixes; +x on needed executable files migrate old qmail properties used in postfix catch all non existing recipient / check BCC working
15 lines
536 B
Plaintext
15 lines
536 B
Plaintext
{
|
|
# migrate qmail -> postfix MaxMessageSize FilterType ConcurrencyRemote ConcurrencyLocal DoubleBounceTo
|
|
# we keep qmail as MDA so we can leave DeliveryType DeliveryInstruction
|
|
for ( qw( MaxMessageSize FilterType ConcurrencyRemote ConcurrencyLocal DoubleBounceTo) ) {
|
|
my $sa = $DB->get('qmail') or next;
|
|
my $value=$DB->get_prop_and_delete('qmail',$_) or next;
|
|
next if (exists $postfix{$_});
|
|
$DB->set_prop('postfix', $_ , $value);
|
|
}
|
|
|
|
# TODO we migrate smtp-auth-proxy ; SMTPSmartHost Userid Passwd PeerPort
|
|
|
|
|
|
}
|