2 * Copyright (C) 2000-1 Brendan Cully <brendan@kublai.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
19 /* common defs for authenticators. A good place to set up a generic callback
23 #define _IMAP_AUTH_H 1
27 IMAP_AUTH_SUCCESS = 0,
35 /* do authentication, using named method or any available if method is NULL */
36 imap_auth_res_t (*authenticate) (IMAP_DATA* idata, const char* method);
37 /* name of authentication method supported, NULL means variable. If this
38 * is not null, authenticate may ignore the second parameter. */
42 /* external authenticator prototypes */
44 imap_auth_res_t imap_auth_anon (IMAP_DATA* idata, const char* method);
45 imap_auth_res_t imap_auth_cram_md5 (IMAP_DATA* idata, const char* method);
47 imap_auth_res_t imap_auth_login (IMAP_DATA* idata, const char* method);
49 imap_auth_res_t imap_auth_gss (IMAP_DATA* idata, const char* method);
52 imap_auth_res_t imap_auth_sasl (IMAP_DATA* idata, const char* method);
55 #endif /* _IMAP_AUTH_H */