X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/0a49a7a4f1090b6f1ce1d0f9d969804c9226b53e..master:/src/src/auths/dovecot.h?ds=sidebyside diff --git a/src/src/auths/dovecot.h b/src/src/auths/dovecot.h index 5c74180fe..a9cc0a2b4 100644 --- a/src/src/auths/dovecot.h +++ b/src/src/auths/dovecot.h @@ -1,16 +1,17 @@ -/* $Cambridge: exim/src/src/auths/dovecot.h,v 1.3 2009/11/16 19:50:38 nm4 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ /* Copyright (c) University of Cambridge 1995 - 2009 */ +/* Copyright (c) The Exim Maintainters 2020 */ /* See the file NOTICE for conditions of use and distribution. */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ /* Private structure for the private options. */ typedef struct { - uschar *server_socket; + uschar * server_socket; + BOOL server_tls; } auth_dovecot_options_block; /* Data for reading the private options. */ @@ -24,7 +25,7 @@ extern auth_dovecot_options_block auth_dovecot_option_defaults; /* The entry points for the mechanism */ -extern void auth_dovecot_init(auth_instance *); +extern void auth_dovecot_init(driver_instance *); extern int auth_dovecot_server(auth_instance *, uschar *); /* End of dovecot.h */