Displaying 3 results from an estimated 3 matches for "user_sieve_script".
Did you mean:
user_sieve_scripts
2017 Apr 28
4
Sieve dict and bindir question
...oxy::sieve;name=activesql;bindir=~/.sieve-bin
dict {
sieve = mysql:/etc/dovecot/dovecot-dict-sieve-sql.conf.ext
}
# cat /etc/dovecot/dovecot-dict-sieve-sql.conf.ext
connect = host=10.1.1.1 dbname=dovecot user=dovecot password=Ciao
map {
pattern = priv/sieve/name/$script_name
table = user_sieve_scripts
username_field = username
value_field = id
fields {
script_name = $script_name
}
}
map {
pattern = priv/sieve/data/$id
table = user_sieve_scripts
username_field = username
value_field = script_data
fields {
id = $id
}
}
But when...
2014 Oct 03
1
Problem with dovecot-managesieved and sieve scripts in mysql
...ify acl quota imap_quota acl imap_acl"
}
protocol pop3 {
mail_plugins = " mail_log notify acl quota"
}
dict-sieve-sql.conf.ext:
connect = host=xxxxxxxxxxxxx dbname=xxxxxxxx user=xxxxxxxx password=xxxxxxxxxxxxxx
map {
pattern = priv/sieve/name/$script_name
table = user_sieve_scripts
username_field = username
value_field = id
fields {
script_name = $script_name
}
}
map {
pattern = priv/sieve/data/$id
table = user_sieve_scripts
username_field = username
value_field = script_data
fields {
id = $id
}
}
CREATE TABLE IF NOT EXISTS `use...
2017 Apr 30
0
Sieve dict and bindir question
...;
> dict {
> sieve = mysql:/etc/dovecot/dovecot-dict-sieve-sql.conf.ext
> }
>
> # cat /etc/dovecot/dovecot-dict-sieve-sql.conf.ext
>
> connect = host=10.1.1.1 dbname=dovecot user=dovecot password=Ciao
> map {
> pattern = priv/sieve/name/$script_name
> table = user_sieve_scripts
> username_field = username
> value_field = id
> fields {
> script_name = $script_name
> }
> }
> map {
> pattern = priv/sieve/data/$id
> table = user_sieve_scripts
> username_field = username
> value_field = script_data
>...