spamassassin.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from comar.service import *
|
||||
|
||||
serviceType = "server"
|
||||
serviceDesc = _({"en": "Spam detection daemon",
|
||||
"tr": "Spam algılama servisi"})
|
||||
|
||||
serviceDefault="on"
|
||||
|
||||
serviceConf = "spamd"
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
startService(command="/usr/bin/spamd",
|
||||
args="-d -r %s %s %s" % (config.get("PIDFILE", "/run/spamd.pid"), config.get("PARAMS", ""), config.get("EXTRA", "")),
|
||||
nice = int(config.get("NICELEVEL", "-0")),
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(config.get("PIDFILE", "/run/spamd.pid"),
|
||||
donotify=True)
|
||||
|
||||
def status():
|
||||
return isServiceRunning(config.get("PIDFILE", "/run/spamd.pid"))
|
||||
Reference in New Issue
Block a user