diff options
author | root <root@borneuni.dk> | 2008-09-08 18:51:12 +0000 |
---|---|---|
committer | root <root@borneuni.dk> | 2008-09-08 18:51:12 +0000 |
commit | 8be3926a5af3282b4787b5ecdbccb8914097e36d (patch) | |
tree | 9202d7da747179bc996cba060a415af643143b67 /postfix | |
parent | bb5d674c5ac29e8a6e24419bfa5c939c538c809d (diff) |
Simplify DKIMproxy check (failed with newer versions targeted for Lenny).
Diffstat (limited to 'postfix')
-rwxr-xr-x | postfix/postfix.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postfix/postfix.sh b/postfix/postfix.sh index e02b89e..4cd9fe7 100755 --- a/postfix/postfix.sh +++ b/postfix/postfix.sh @@ -66,10 +66,10 @@ else fi dkimproxy= -if [ "1" = "$amavis" ] && [ -x /usr/bin/dkimsign ] && grep -q :10024 /etc/init.d/dkimproxy; then +if [ "1" = "$amavis" ] && [ -x /usr/bin/dkimsign ]; then dkimproxy=1 else - echo >&2 "WARNING: Avoiding/disabling DKIMproxy setup: not installed or fully configured." + echo >&2 "WARNING: Avoiding/disabling DKIMproxy setup: not installed." fi catfilefromownrealm() { |