search for: defaultfold

Displaying 3 results from an estimated 3 matches for "defaultfold".

Did you mean: defaultfont
2015 Aug 10
2
pigeonhole/lda accessing -m folder
...ext-environment-common.c +++ b/src/lib-sieve/plugins/environment/ext-environment-common.c @@ -24,7 +24,8 @@ static const struct sieve_environment_item *core_env_items[] = { &location_env_item, &phase_env_item, &name_env_item, - &version_env_item + &version_env_item, + &defaultfolder_env_item }; static unsigned int core_env_items_count = N_ELEMENTS(core_env_items); @@ -233,7 +234,19 @@ const struct sieve_environment_item version_env_item = { .value = PIGEONHOLE_VERSION, }; +/* "defaultfolder": + * the default folder where mail is stored when no rule matches +...
2015 Aug 10
0
PATCH for Stephan: Re: pigeonhole/lda accessing -m folder
...re not necessarily the same. Maybe, there is a namespace to expose this information easily? For the archive: + This works for both LDA and LMTP. + The Dovecot LDA requires option -m . + LMTP requires an active recipient_delimiter option. + If there is no -m option or no +detail, INBOX is the defaultfolder. > complete patch. some parts were missing before > > > diff --git a/src/lib-sieve/plugins/environment/ext-environment-common.c > b/src/lib-sieve/plugins/environment/ext-environment-common.c > --- a/src/lib-sieve/plugins/environment/ext-environment-common.c > +++ b/src/lib-s...
2015 Aug 07
2
pigeonhole/lda accessing -m folder
hi jost thx for the reply, by access I mean to read the variable require ["fileinto", "variables", "?destfolder?" ]; if anyof ( destfolder :matches "*") { fileinto "${1}/subfolder"; }else{ fileinto "INBOX/subfolder"; } On 08/07/2015 12:26 PM, Jost Krieger wrote: > On Fri Aug 7 12:19:22 2015, matthias lay wrote: