initial commit of file from CVS for e-smith-pop3 on Wed 12 Jul 09:03:33 BST 2023
This commit is contained in:
@@ -0,0 +1 @@
|
||||
FQDN={ $SystemName . '.' . $DomainName }
|
@@ -0,0 +1,2 @@
|
||||
PER_IP_INSTANCES={ $pop3s{ConcurrencyLimitPerIP} || '4' }
|
||||
CONCURRENCYREMOTE={ $pop3s{ConcurrencyLimit} || '40' }
|
@@ -0,0 +1,9 @@
|
||||
{
|
||||
# memory limit to catch any memory leak before it kills the system
|
||||
my $MIN_MEMORY_LIMIT = 80000000;
|
||||
|
||||
# The MIN_MEMORY_LIMIT is returned unless the DB variable is defined and greater than MIN_MEMORY_LIMIT
|
||||
my $limit = $pop3s{MemLimit} || $MIN_MEMORY_LIMIT;
|
||||
$limit = $MIN_MEMORY_LIMIT if $limit < $MIN_MEMORY_LIMIT;
|
||||
$OUT = "MEM=$limit";
|
||||
}
|
@@ -0,0 +1,2 @@
|
||||
LISTENIP={ $pop3s{ListenIP} || '0' }
|
||||
PORT={ $pop3s{TCPPort} || '110' }
|
Reference in New Issue
Block a user