33 lines
979 B
Plaintext
33 lines
979 B
Plaintext
# /etc/conf.d/rspamd
|
|
|
|
# specified group
|
|
RSPAMD_GROUP=rspamd
|
|
|
|
# specified user
|
|
RSPAMD_USER=rspamd
|
|
|
|
# Configuration file
|
|
RSPAMD_CONFIGFILE="/etc/rspamd/rspamd.conf"
|
|
|
|
# PID file
|
|
# If you should ever change this, remember to update
|
|
# "/etc/logrotate.d/rspamd", too.
|
|
RSPAMD_PIDFILE="/run/rspamd.pid"
|
|
|
|
# You can use this configuration option to pass additional options to the
|
|
# start-stop-daemon, see start-stop-daemon(8) for more details.
|
|
# Per default we wait 1000ms after we have started the service to ensure
|
|
# that the daemon is really up and running.
|
|
RSPAMD_SSDARGS="--wait 1000"
|
|
|
|
# The termination timeout (start-stop-daemon parameter "retry") ensures
|
|
# that the service will be terminated within a given time (60 + 5 seconds
|
|
# per default) when you are stopping the service.
|
|
RSPAMD_TERMTIMEOUT="TERM/60/KILL/5"
|
|
|
|
# Options to rspamd
|
|
# See rspamd(8) for more details
|
|
# Notes:
|
|
# * Do not specify another CONFIGFILE but use the variable above to change the location
|
|
RSPAMD_OPTS=""
|