Displaying 2 results from an estimated 2 matches for "_bin_dir".
Did you mean:
bin_dir
2015 Sep 21
4
sieve_extprograms - run any individual script?
...script.
For security reasons it is needed that script-paths etc. are registered
in dovecot.conf
This is my current dovecot.conf
plugin {
sieve = ~/.dovecot.sieve
sieve_plugins = sieve_extprograms
sieve_extensions = +vnd.dovecot.pipe +vnd.dovecot.filter
+vnd.dovecot.execute
sieve_pipe_bin_dir = /usr/local/bin/
sieve_filter_bin_dir = /usr/local/bin/
}
.dovecot.sieve example:
if address "to" "test at example.com"
{
filter "myfilter";
}
This is all working without problems.
Is there a possibility to allow users the execution of individual
scri...
2015 Sep 21
0
sieve_extprograms - run any individual script?
...eded that script-paths etc. are
> registered in dovecot.conf
> This is my current dovecot.conf
>
> plugin {
> sieve = ~/.dovecot.sieve
> sieve_plugins = sieve_extprograms
> sieve_extensions = +vnd.dovecot.pipe +vnd.dovecot.filter
> +vnd.dovecot.execute
> sieve_pipe_bin_dir = /usr/local/bin/
> sieve_filter_bin_dir = /usr/local/bin/
> }
>
> .dovecot.sieve example:
>
> if address "to" "test at example.com"
> {
> filter "myfilter";
> }
Uhh.. you're pointing extprograms to a directory where many progr...