1 fixes a problem where the imap->login has the precedence so the user
2 is asked with wrong informaton, see upstream #3240
9 snprintf (prompt, sizeof (prompt), _("Password for %s@%s: "),
10 - account->flags & M_ACCT_LOGIN ? account->login : account->user,
11 + ((account->flags & M_ACCT_LOGIN) && !(account->user)) ? account->login : account->user,
13 account->pass[0] = '\0';
14 if (mutt_get_password (prompt, account->pass, sizeof (account->pass)))