Dovecot integration on SME Server. This has been merged in SME Server and is only kept here for history
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
361 B
13 lines
361 B
11 years ago
|
{
|
||
|
|
||
|
# Those limits are now defined on the imap entry
|
||
|
foreach my $prop (qw/ConcurrencyLimit ConcurrencyLimitPerIP ProcessMemoryLimit/){
|
||
|
my $imaps_value = $DB->get_prop_and_delete('imaps', $prop);
|
||
|
next unless ($imaps_value);
|
||
|
my $imap_value = $DB->get_prop('imap', $prop);
|
||
|
next if ($imap_value);
|
||
|
$DB->set_prop('imap', $prop, $imaps_value);
|
||
|
}
|
||
|
|
||
|
}
|