drop SpamAssassin add-on

This package has not been maintained well and is thereof outdated. At
the time of writing, we neither
(a) have a maintainer for this nor
(b) believe it is wise to run a full-featured content scanner on a
    firewall for security purposes. (We can make do with Postfix, as it
    is known for being a very robust MTA and providess less attack
    surface than something actually inspecting transferred messages.)

Thereof, this patch drops the SpamAssassin add-on. In case it is desired
in future versions of IPFire, it can be easily reverted, restoring the
functionality and behaviour before.

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Peter Müller
2020-10-23 21:27:07 +02:00
committed by Michael Tremer
parent 6483ec30b9
commit 3e19f681a1
3 changed files with 0 additions and 361 deletions

View File

@@ -1,45 +0,0 @@
#!/bin/sh
########################################################################
# Begin $rc_base/init.d/spamassassin
#
# Description : Spamassassin Init Script
#
# Authors : Michael Tremer (ms@ipfire.org)
#
# Version : 01.00
#
# Notes :
#
########################################################################
. /etc/sysconfig/rc
. ${rc_functions}
case "${1}" in
start)
boot_mesg "Starting Spamassassin Daemon..."
loadproc -n 10 /usr/bin/spamd -d
;;
stop)
boot_mesg "Stopping Spamassassin Daemon..."
killproc /usr/bin/spamd
;;
restart)
${0} stop
sleep 1
${0} start
;;
status)
statusproc /usr/bin/spamd
;;
*)
echo "Usage: ${0} {start|stop|restart|status}"
exit 1
;;
esac
# End $rc_base/init.d/spamassassin