mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
dist: Pass {auth_user} to rspamc
Makes integration/rspamd usable for outbound delivery checking.
This commit is contained in:
parent
e27315ac23
commit
67092ce58d
2 changed files with 6 additions and 2 deletions
2
dist/integration/rspamd.conf
vendored
2
dist/integration/rspamd.conf
vendored
|
@ -8,7 +8,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
check {
|
check {
|
||||||
command rspamd-hook {source_ip} {source_host} {sender} {
|
command rspamd-hook {source_ip} {source_host} {sender} {auth_user} {
|
||||||
code 1 reject
|
code 1 reject
|
||||||
code 2 quarantine
|
code 2 quarantine
|
||||||
code 3 reject 450 4.7.0 "Message rejected due to a local policy"
|
code 3 reject 450 4.7.0 "Message rejected due to a local policy"
|
||||||
|
|
6
dist/scripts/rspamd-hook
vendored
6
dist/scripts/rspamd-hook
vendored
|
@ -1,6 +1,10 @@
|
||||||
#!/bin/sh
|
#!/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-)
|
action=$(echo "$out" | grep '^Action:' | cut -d " " -f 2-)
|
||||||
score=$(echo "$out" | grep '^Score:' | cut -d " " -f 2)
|
score=$(echo "$out" | grep '^Score:' | cut -d " " -f 2)
|
||||||
spam=$(echo "$out" | grep '^Spam:' | cut -d " " -f 2)
|
spam=$(echo "$out" | grep '^Spam:' | cut -d " " -f 2)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue