Displaying 4 results from an estimated 4 matches for "mailautoreplymod".
Did you mean:
mailautoreplymode
2020 Sep 23
2
Vacation sieve explained: how does it work?
...> 5 min cron job that detects changes in ldap and then creates the sieve
> rule.
I've tried the cronjob approach before, and people didn?t like the delay.
I have found the extra fields being queried from the userdb,
user_attrs = mailMessageStore=home=%$,=mail_auto_reply_mode=%{ldap:mailAutoReplyMode},=mail_auto_reply_text=%{ldap:mailAutoReplyText}
Is it possible to confirm how the mail_auto_reply_mode variable would be available in sieve? Is it just a case of referring to ${mail_auto_reply_mode} or is there more to it than that?
Regards,
Graham
?
2020 Sep 25
1
[EXT] How do I make "vnd.dovecot.environment" available?
...t.environment:
sieve_global_extensions = +vnd.dovecot.environment
- Then you need to pull the extra fields you want out of the userdb, and those fields must be prefixed with ?sieve_env_?, like this example for LDAP:
user_attrs = mailMessageStore=home=%$,=sieve_env_mail_auto_reply_mode=%{ldap:mailAutoReplyMode},=sieve_env_mail_auto_reply_text=%{ldap:mailAutoReplyText}
- Then you need to add a requirement on ?vnd.dovecot.environment? to the sieve script.
- Then, to access the variables in the sieve script, you need to drop the ?sieve_env_? part, and add the prefix ?env.vnd.dovecot.config.?. There are v...
2020 Sep 23
4
Vacation sieve explained: how does it work?
On 23 Sep 2020, at 14:07, Marc Roos <M.Roos at f1-outsourcing.eu> wrote:
> It is just a sieve rule.
>
> 1.
> On disk default file .dovecot.sieve
>
> 2. I am using roundcube webmail for that.
>
> 3. with if false # true
> # rule:[Out of Office]
> if true
> {
> vacation :days 1 :subject "Test" "test test";
> }
Is there a way
2020 Sep 24
2
How do I make "vnd.dovecot.environment" available?
On 24 Sep 2020, at 20:45, Sami Ketola <sami.ketola at dovecot.fi> wrote:
> can you link your doveconf -n and the sieve script?
The user?s detail are:
[root at gatekeeper ~]# doveadm user minfrin at example.com
field value
uid vmail
gid vmail
home /home/vmail/minfrin at example.com/
mail maildir:~/mail
mail_auto_reply_mode reply
mail_auto_reply_text I am truly away...
The sieve script