Problems with Sieve vacation

Need help? Ask here.

Moderator: Moderators

Post Reply
mikrub
Posts: 9
Joined: Fri Sep 08, 2006 1:52 am

Problems with Sieve vacation

Post by mikrub »

Dear staff,
I don't seem to be getting a vacation message to be sent by Sieve.
I tried the following:

Code: Select all

require "vacation";
#answers with a nice message...
vacation "bla bla some nice message
bla bla thank you ";
#...and drops the message
discard;
I don't see anything in the logs instead of a normal message arrival.
So i read a bit around the specs and I tried adding explicitly the mailbox name as the "intended address" (should be guessed automatically by Sieve if I got it right)

Code: Select all

require "vacation";
#answers with a nice message...
vacation :addresses ["mailbox@domain.com"] "bla bla some nice message
bla bla thank you ";
#...and drops the message
discard;
Still nothing is sent out.
Any idea?
thanks, ciao!

Michele
RollerNetSupport
Site Admin
Posts: 598
Joined: Wed Nov 17, 2004 10:05 pm
Location: Nevada
Contact:

Post by RollerNetSupport »

There's an error where Sieve can't create the duplicates file for some reason (it drops part of the file path) which is possibly causing "vacation" not to work. We noticed this error while looking at another issue, so we'll run some tests with "vacation".
Technical Support support@rollernet.us
Roller Network LLC
RollerNetSupport
Site Admin
Posts: 598
Joined: Wed Nov 17, 2004 10:05 pm
Location: Nevada
Contact:

Post by RollerNetSupport »

It doesn't appear that the "vacation" module is triggering at all, even in our test environment. We'll have to look in to this a bit more.
Technical Support support@rollernet.us
Roller Network LLC
RollerNetSupport
Site Admin
Posts: 598
Joined: Wed Nov 17, 2004 10:05 pm
Location: Nevada
Contact:

Post by RollerNetSupport »

Whoops, our mistake; we didn't have a matching "to" header in our test case. It should be fixed now.
Technical Support support@rollernet.us
Roller Network LLC
mikrub
Posts: 9
Joined: Fri Sep 08, 2006 1:52 am

Post by mikrub »

Yes, seems to be working now, thanks!
Post Reply