Displaying 4 results from an estimated 4 matches for "dict_uri".
Did you mean:
dest_uri
2016 Oct 17
1
Dict proxy client returning empty string instead of multiline string
While trying to isolate properly and reproduce, I was able to trigger
the same bug with the following code:
struct dict *dict;
char* dict_uri = "proxy::sieve";
char* key = "priv/key";
char* username = "admin at domain.tld";
char* value, error;
dict_drivers_register_builtin();
dict_init(dict_uri, DICT_DATA_TYPE_STRING, username,
doveadm_settings->base_dir, &dict, &error);
dict_look...
2016 Oct 17
2
Dict proxy client returning empty string instead of multiline string
...What do you think?
>
> Regards,
> kaiyou
>
>
> On 10/17/2016 09:52 AM, Pierre Jaury wrote:
> > While trying to isolate properly and reproduce, I was able to trigger
> > the same bug with the following code:
> >
> > struct dict *dict;
> > char* dict_uri = "proxy::sieve";
> > char* key = "priv/key";
> > char* username = "admin at domain.tld";
> > char* value, error;
> >
> > dict_drivers_register_builtin();
> > dict_init(dict_uri, DICT_DATA_TYPE_STRING, username,
> >...
2016 Oct 17
2
Dict proxy client returning empty string instead of multiline string
...formed against version 2.2.25.
>>
>> $ dovecot --version
>> 2.2.25 (7be1766)
>>
>> My configuration looks like:
>>
>> dict {
>> sieve = sqlite:/etc/dovecot/pigeonhole-sieve.dict
>> }
>>
>> [...]
>> sieve_extdata_dict_uri = proxy::sieve
>>
>> I am able to read pretty much any attribute without any issue, except
>> when the value contains a special character like "\r" or "\n". By using
>> the doveadm dict client, I narrowed it down to the dictionary management
>> part...
2016 Oct 17
2
Dict proxy client returning empty string instead of multiline string
...> >>
> >> On 10/17/2016 09:52 AM, Pierre Jaury wrote:
> >>> While trying to isolate properly and reproduce, I was able to trigger
> >>> the same bug with the following code:
> >>>
> >>> struct dict *dict;
> >>> char* dict_uri = "proxy::sieve";
> >>> char* key = "priv/key";
> >>> char* username = "admin at domain.tld";
> >>> char* value, error;
> >>>
> >>> dict_drivers_register_builtin();
> >>> dict_init(dict_u...