X-Git-Url: http://git.madism.org/?a=blobdiff_plain;ds=sidebyside;f=imap%2Fauth.c;h=8ee355b7cbf24bdec736e36fdc5adc2b943d83ea;hb=85fd0dfe747c58f2da62074ddd90a598397a4848;hp=d4b4efd5f9d7d4f62942bfe1376fb98a7293619d;hpb=23e6291cb5d5b4cd2008403d8b628007fd75ff23;p=apps%2Fmadmutt.git diff --git a/imap/auth.c b/imap/auth.c index d4b4efd..8ee355b 100644 --- a/imap/auth.c +++ b/imap/auth.c @@ -11,34 +11,19 @@ /* IMAP login/authentication code */ -#if HAVE_CONFIG_H -# include "config.h" -#endif - -#include - -#include -#include +#include #include "mutt.h" #include "imap_private.h" #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} };