[EMAIL PROTECTED] <> wrote on Tuesday, November 01, 2005 9:54 PM:

> Is there a way to configure XMail to reject the incoming mail if the
> smtp filter fails to execute for whatever reason and thus failing to
> return exit code 3? 

No XMail-native chance. Maybe a simple shell script as wrapper could do the
job.

Something like that (non tested and syntax checked):

 #!/bin/sh
 exec my_filter
 CODE=$?
 if [$CODE gt 0]
        exit 3;
 fi




-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

Reply via email to