Re: SIEVE vacation not works with "email aliases"

2014-04-04 Thread k...@rice.edu
On Fri, Apr 04, 2014 at 04:26:43PM +0200, Niels Dettenbach wrote:
> Hi all,
> 
> 
> it seems i'm not alone with this "effect" or "bug" in the SIEVE vacation 
> module.
> 
> On a cyrus-imap ("feeded" by EXIM) with virtual domains where usernames are 
> "equal" to email adresses i have the effect, that vacations are not sent out 
> when an incoming email is addressed to an "alias" of the mailbox (means to an 
> email address which is NOT the same as the IMAP user name / mailbox name).
> 
> On another machine where user accounts arr in the format user.domain.tld 
> (instead of u...@domain.tld) under NetBSD it works without any problems. So i 
> assume slightly that it may be related to the aliasing mechanism.
> 
> There is no change if i catch all incoming emails or define each by hand in 
> sieve.
> 
> 
> Is anyone out there faced to the same problem? Is there any solution? 
> 
> 
> many thanks in advance.
> cheerioh,
> 
> Niels.
> -- 

Hi Niels,

You need to include the addresses that the vacation is to reply to. Here is
an example:

require ["vacation","regex"];

vacation :days 7 :addresses ["addre...@example.com", "addre...@example.com"] 
text:
testing vacation
.
;

Regards,
Ken

Cyrus Home Page: http://www.cyrusimap.org/
List Archives/Info: http://lists.andrew.cmu.edu/pipermail/info-cyrus/
To Unsubscribe:
https://lists.andrew.cmu.edu/mailman/listinfo/info-cyrus


Re: SIEVE vacation not works with "email aliases"

2014-04-04 Thread Niels Dettenbach
Am Freitag, 4. April 2014, 09:33:47 schrieben Sie:
> require ["vacation","regex"];
> 
> vacation :days 7 :addresses ["addre...@example.com", "addre...@example.com"]
> text:

ahh! This syntax seem to work so far. Thank you!

I've tried/used things similiar to this (roundcube generated):

## Generated by Roundcube Webmail SieveRules Plugin ##
require ["vacation"];

if anyof (true)
{
vacation
:days 7
:subject "Bin kurz weg"
"..und gleich wieder da";
}


any idea why it is not working?

many thanks again.

cheerioh,


Niels.
-- 
 ---
 Niels Dettenbach
 Syndicat IT & Internet
 http://www.syndicat.com
 PGP: https://syndicat.com/pub_key.asc
 ---
 





signature.asc
Description: This is a digitally signed message part.

Cyrus Home Page: http://www.cyrusimap.org/
List Archives/Info: http://lists.andrew.cmu.edu/pipermail/info-cyrus/
To Unsubscribe:
https://lists.andrew.cmu.edu/mailman/listinfo/info-cyrus