search for: auth_defer_msg

Displaying 1 result from an estimated 1 matches for "auth_defer_msg".

2004 Dec 09
1
Exim4 authentication patch
...(n < nptrs) + *ptrs = tmp; + + return n; +} + +#define CHECK_COMMAND(str, arg_min, arg_max) do { \ + if (strcasecmp((str), args[0]) != 0) \ + goto out; \ + if (nargs - 1 < (arg_min)) \ + goto out; \ + if (nargs - 1 > (arg_max)) \ + goto out; \ +} while (0) + +#define OUT(msg) do { \ + auth_defer_msg = (msg); \ + goto out; \ +} while(0) + +/************************************************* + * Server entry point * + *************************************************/ + +int auth_dovecot_server(auth_instance *ablock, uschar *data) +{ + auth_dovecot_options_block *ob = +...