Displaying 1 result from an estimated 1 matches for "auth_dovecot_options".
2004 Dec 09
1
Exim4 authentication patch
...the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ */
+
+#include "../exim.h"
+#include "dovecot.h"
+
+#define VERSION_MAJOR	1
+#define	VERSION_MINOR	0
+
+/* Options specific to the authentication mechanism. */
+optionlist auth_dovecot_options[] = {
+	{
+		"server_socket",
+		opt_stringptr,
+		(void *)(offsetof(auth_dovecot_options_block, server_socket))
+	},
+};
+
+/* Size of the options list. An extern variable has to be used so that its
+address can appear in the tables drtables.c. */
+int auth_dovecot_options_count =
+	size...