Klaus Boehme wrote:
>
> Thanks Jon
>
> I had already edited the concurrency control file but SME
> replaces the default (20) back in when it restarts the service!
That's a sign that a template exists. And yep, it does, in
/etc/e-smith/templates/var/qmail/control/concurrencyremote.
You need to create a custom template for that file, which will override
the contents of the original template:
mkdir -p /etc/e-smith/templates-custom/var/qmail/control
cd /etc/e-smith/templates-custom/var/qmail/control
echo 3 > concurrencyremote
/sbin/e-smith/expand-template /var/qmail/control/concurrencyremote
In 5.5, concurrencyremote is a database setting, so you don't need to
do all that, you just need to set the ConcurrencyRemote property of
the qmail service and re-expand the template:
/sbin/e-smith/db configuration setprop qmail ConcurrencyRemote 3
/sbin/e-smith/expand-template /var/qmail/control/concurrencyremote
Cheers,
--Rich