X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Fauth.c;h=8b328078a86a4f9c8d74ba28f79f59e931a2ab6c;hb=6cc64ac1d90eed0c8280c3f7b4c2ab514d5224d1;hp=8fae85bce6ad84f8366bc06dbabf3e48c8f554ef;hpb=230399f9632c37b66c1c117a17e8327eae6b3235;p=apps%2Fmadmutt.git diff --git a/imap/auth.c b/imap/auth.c index 8fae85b..8b32807 100644 --- a/imap/auth.c +++ b/imap/auth.c @@ -11,10 +11,6 @@ /* IMAP login/authentication code */ -#if HAVE_CONFIG_H -# include "config.h" -#endif - #include #include "mutt.h" @@ -22,20 +18,8 @@ #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} };