Commit 53d4820d authored by Joshua Tauberer's avatar Joshua Tauberer

hard-code pyzor sevice URL because 'pyzor discover' is failing because...

hard-code pyzor sevice URL because 'pyzor discover' is failing because Sourceforge is offline, fixes #496
parent 34b76383
...@@ -22,8 +22,18 @@ apt_install spampd razor pyzor dovecot-antispam ...@@ -22,8 +22,18 @@ apt_install spampd razor pyzor dovecot-antispam
tools/editconf.py /etc/default/spamassassin \ tools/editconf.py /etc/default/spamassassin \
CRON=1 CRON=1
# Configure pyzor. # Configure pyzor, which is a client to a live database of hashes of
hide_output pyzor discover # spam emails. Set the pyzor configuration directory to something sane.
# The default is ~/.pyzor. We used to use that, so we'll kill that old
# directory. Then write the public pyzor server to its servers file.
# That will prevent an automatic download on first use, and also means
# we can skip 'pyzor discover', both of which are currently broken by
# something happening on Sourceforge (#496).
rm -rf ~/.pyzor
tools/editconf.py /etc/spamassassin/local.cf -s \
pyzor_options="--homedir /etc/spamassassin/pyzor"
echo "public.pyzor.org:24441" > /etc/spamassassin/pyzor/servers
# check with: pyzor --homedir /etc/mail/spamassassin/pyzor ping
# Configure spampd: # Configure spampd:
# * Pass messages on to docevot on port 10026. This is actually the default setting but we don't # * Pass messages on to docevot on port 10026. This is actually the default setting but we don't
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment