Gary Mills wrote:
> 
> I'm using cyrus-imapd-2.0.7 with sendmail-8.11.1 delivering via LMTP.
> The following sieve script created by Websieve version 0.48 works
> correctly:
> 
> require ["fileinto"];
> 
> if allof (address :matches ["from"] "***") {
>      redirect "[EMAIL PROTECTED]";
> }
> 
> else {
>      keep;
> }
> 
> However, when I use Websieve to create a vacation script, it appears
> to be ignored.  What could be wrong?  Here's the script:
> 
> require ["fileinto","vacation"];
> 
> vacation :days 7 :addresses ["[EMAIL PROTECTED]", "[EMAIL PROTECTED]
> manitoba.ca"] "On vacation for the next week";

Vacation will only send out responses, iff there is an intersection of
the addresses in the To:, Cc: or Bcc: headers with those given in the
:addresses option to vacation.  This is so vacation responses are not
sent out to mailing lists, newsletters, etc.

In your case, it looks like websieve guessed at your address, and got it
wrong.  Simply change the :addresses to "[EMAIL PROTECTED]" (plus
any other aliases that people might use, "mills", "mills@cc", etc) and
you'll be all set.

Ken
-- 
Kenneth Murchison     Oceana Matrix Ltd.
Software Engineer     21 Princeton Place
716-662-8973 x26      Orchard Park, NY 14127
--PGP Public Key--    http://www.oceana.com/~ken/ksm.pgp

Reply via email to