Impose the use of SASL2, so that we can drop a lot of useless old dead code.
[apps/madmutt.git] / imap / auth.c
index 143fde0..8ee355b 100644 (file)
 #include "auth.h"
 
 static imap_auth_t imap_authenticators[] = {
-#ifdef USE_SASL
   {imap_auth_sasl, NULL},
-#else
-  {imap_auth_anon, "anonymous"},
-#endif
 #ifdef USE_GSS
   {imap_auth_gss, "gssapi"},
 #endif
   /* SASL includes CRAM-MD5 (and GSSAPI, but that's not enabled by default) */
-#ifndef USE_SASL
-  {imap_auth_cram_md5, "cram-md5"},
-#endif
   {imap_auth_login, "login"},
-
   {NULL, NULL}
 };