Re: [Exim] Local_scan_options, any hints ?

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Nico Erfurth
Datum:  
To: Abaddon
CC: exim-users
Betreff: Re: [Exim] Local_scan_options, any hints ?
Abaddon wrote:
> Hello, i have:

....
> optionlist local_scan_options[] = {
>         { "local_scan_cond", opt_int, &xtmail_av_cond },
>         { "local_scan_host", opt_stringptr, &xtmail_av_host },
>         { "local_scan_port", opt_int, &xtmail_av_port },
>         { "local_scan_dir", opt_stringptr, &xtmail_av_dir },
>         { "local_scan_expr", opt_stringptr, &xtmail_av_expr }
> };

....
> Why the hell does exim not found local_scan_dir or local_scan_expr ??


The names of the options must be in alphabetic order, because exim uses
a bnary search to search the list.

Nico