{
imap_auth_t* authenticator;
char* methods;
- char* comma;
+ char* comma; /* should be colon ;-) */
char* method;
int r = -1;
while (method)
{
- comma = strchr (method, ',');
+ comma = strchr (method, ':');
if (comma)
*comma++ = '\0';
dprint (2, (debugfile, "imap_authenticate: Trying method %s\n", method));
{ "imap_authenticators", DT_STR, R_NONE, UL &ImapAuthenticators, UL 0 },
/*
** .pp
- ** This is a comma-delimited list of authentication methods mutt may
+ ** This is a colon-delimited list of authentication methods mutt may
** attempt to use to log in to an IMAP server, in the order mutt should
** try them. Authentication methods are either 'login' or the right
** side of an IMAP 'AUTH=xxx' capability string, eg 'digest-md5',
** parameter is unset (the default) mutt will try all available methods,
** in order from most-secure to least-secure.
** .pp
- ** Example: set imap_authenticators="gssapi,cram-md5,login"
+ ** Example: set imap_authenticators="gssapi:cram-md5:login"
** .pp
** \fBNote:\fP Mutt will only fall back to other authentication methods if
** the previous methods are unavailable. If a method is available but