7 lines
144 B
Bash
Executable File
7 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# pass mail through spam filter Bogofilter
|
|
# arguments are passed on to sendmail
|
|
|
|
/usr/bin/bogofilter -p | /usr/sbin/sendmail "$@"
|