Impose the use of SASL2, so that we can drop a lot of useless old dead code.
[apps/madmutt.git] / imap / auth.h
index df1fb75..8deda56 100644 (file)
@@ -29,17 +29,11 @@ typedef struct {
 } imap_auth_t;
 
 /* external authenticator prototypes */
-#ifndef USE_SASL
-imap_auth_res_t imap_auth_anon (IMAP_DATA * idata, const char *method);
-imap_auth_res_t imap_auth_cram_md5 (IMAP_DATA * idata, const char *method);
-#endif
 imap_auth_res_t imap_auth_login (IMAP_DATA * idata, const char *method);
 
 #ifdef USE_GSS
 imap_auth_res_t imap_auth_gss (IMAP_DATA * idata, const char *method);
 #endif
-#ifdef USE_SASL
 imap_auth_res_t imap_auth_sasl (IMAP_DATA * idata, const char *method);
-#endif
 
 #endif /* _IMAP_AUTH_H */