mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
14 lines
424 B
Bash
Executable File
14 lines
424 B
Bash
Executable File
#!/bin/bash
|
|
RSPAMD_HOST="$(getent hosts {{ ANTISPAM_ADDRESS }}|cut -d\ -f1):11334"
|
|
if [[ $? -ne 0 ]]
|
|
then
|
|
echo "Failed to lookup {{ ANTISPAM_ADDRESS }}" >&2
|
|
exit 1
|
|
fi
|
|
|
|
tee >(rspamc -t 3 -h $RSPAMD_HOST -P mailu learn_ham /dev/stdin||true) \
|
|
>(rspamc -t 3 -h $RSPAMD_HOST -P mailu -f 11 fuzzy_del /dev/stdin||true) \
|
|
>(rspamc -t 3 -h $RSPAMD_HOST -P mailu -f 13 fuzzy_add /dev/stdin||true) > /dev/null
|
|
|
|
wait
|