Autor: Mueller Datum: To: exim-users Betreff: [exim] Get the value of an external script in a condition
Dear all,
I try to put an acl in my exim config.
I want to get the registrar of the "$sender_address_domain" of incoming
mails. So i can block known spam-registrars (Panama).
This is my shell script:
#!/bin/bash
out=$(/usr/bin/whois $1|grep "Registrar:"| cut -d ':' -f2| awk '{print $1}')
echo "$out"
I tried it with the $run command, but it uis always set to false!