buknoy
> ...how can I use the mail services without sacrificing my server's performance?
> I never had this problem since 8 months ago using the 6.0.1-01 version.
If you did a good search you would have found these.
If your issue is mail related then this may help.
These settings are OK for a slow connection (and/or a slow server), you can experiment with them to find what suits your situation the best.
/sbin/e-smith/db configuration setprop qmail ConcurrencyRemote 3
/sbin/e-smith/signal-event email-update
/etc/init.d/qmail restart
You may also need to change:
/sbin/e-smith/db configuration setprop qmail ConcurrencyLocal 5
/sbin/e-smith/signal-event email-update
/etc/init.d/qmail restart
To check the settings do:
/sbin/e-smith/config show qmail
qmail=service
ConcurrencyLocal=5
ConcurrencyRemote=3
status=enabled
This may also help, depending what other services you have running eg clamav and spamassassin.
A search would have found it also.
http://forums.contribs.org/index.php?topic=22535.0Spamassassin clogs minimum configurations
pretty fast once it starts chewing on more than
2 email messages at a time.
You could try changing /etc/sysconfig/spamd
to contain the following (and restart /etc/init.d/spamc):
OPTIONS="-d -m2"
it will prevent the spamd daemon from running
more than 2 processes at a time although
it will also severely limit email
throughput.
Another tip from Charlie Brady, also found by a search.
http://forums.contribs.org/index.php?topic=26253.msg106763#msg106763But it's not the qmail setting you need to tweak (that's for local and remote deliveries *from* qmail, not into qmail) - you need to change the number of concurrent smtpfront-qmail processes. That's not currently controlled by a database setting, but you can tweak it by creating a custom template fragment
/etc/e-smith/template-custom\
/var/service/smtpfront-qmail/runenv/Concurrency
containing:
CONCURRENCYREMOTE=4
then do:
/sbin/e-smith/signal-event email-update
Let us know how these changes help your situation(s). Feedback is always good to see if the tips help out or not.