dist: Pass {auth_user} to rspamc

Makes integration/rspamd usable for outbound delivery checking.
This commit is contained in:
fox.cpp 2019-11-29 19:27:55 +03:00
parent e27315ac23
commit 67092ce58d
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
2 changed files with 6 additions and 2 deletions

View file

@ -8,7 +8,7 @@
#
check {
command rspamd-hook {source_ip} {source_host} {sender} {
command rspamd-hook {source_ip} {source_host} {sender} {auth_user} {
code 1 reject
code 2 quarantine
code 3 reject 450 4.7.0 "Message rejected due to a local policy"

View file

@ -1,6 +1,10 @@
#!/bin/sh
out=$(rspamc -i "$1" --helo "$2" -F "$3")
if [ "$4" != "" ]; then
out=$(rspamc -i "$1" --helo "$2" -F "$3" -u "$4")
else
out=$(rspamc -i "$1" --helo "$2" -F "$3")
fi
action=$(echo "$out" | grep '^Action:' | cut -d " " -f 2-)
score=$(echo "$out" | grep '^Score:' | cut -d " " -f 2)
spam=$(echo "$out" | grep '^Spam:' | cut -d " " -f 2)