X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fauth.c;fp=imap%2Fauth.c;h=8ee355b7cbf24bdec736e36fdc5adc2b943d83ea;hp=143fde0ac5d5e320652361d6a2b49091aad6af35;hb=85fd0dfe747c58f2da62074ddd90a598397a4848;hpb=c179b039b512631a8b495ee699e4c930a366e1b5 diff --git a/imap/auth.c b/imap/auth.c index 143fde0..8ee355b 100644 --- a/imap/auth.c +++ b/imap/auth.c @@ -18,20 +18,12 @@ #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} };