22 May
2011
22 May
'11
9 a.m.
On Saturday, May 21, 2011 10:53:55 PM errno wrote:
I've followed the docs here:
http://wiki.dovecot.org/LDA/Sieve/Dovecot
... in particular, the 'Per-user Sieve script location' scenario.
However, I'm unable to get any behavior that indicates that sieve is functioning correctly - well, functioning _at_all_ would be more accurate.
Relevant dovecot.conf:
<snip> > plugin { > sieve = /var/sieve-scripts/%d/%u.sieve > } >
... sheesh, of course the moment I send this it dawns on me what the problem is...
The following fixed the issue:
plugin { sieve = /var/sieve-scripts/%d/%n.sieve }
I was using %u when I should have been using %n.
Sorry for the noise!