2 * Copyright notice from original mutt:
3 * Copyright (C) 1999-2001 Brendan Cully <brendan@kublai.com>
5 * This file is part of mutt-ng, see http://www.muttng.org/.
6 * It's licensed under the GNU General Public License,
7 * please see the file GPL in the top level source directory.
10 /* plain LOGIN support */
17 #include "lib/debug.h"
20 #include "imap_private.h"
23 /* imap_auth_login: Plain LOGIN support */
24 imap_auth_res_t imap_auth_login (IMAP_DATA * idata, const char *method)
26 char q_user[SHORT_STRING], q_pass[SHORT_STRING];
30 if (mutt_bit_isset (idata->capabilities, LOGINDISABLED)) {
31 mutt_message _("LOGIN disabled on this server.");
33 return IMAP_AUTH_UNAVAIL;
36 if (mutt_account_getlogin (&idata->conn->account))
37 return IMAP_AUTH_FAILURE;
38 if (mutt_account_getpass (&idata->conn->account))
39 return IMAP_AUTH_FAILURE;
41 mutt_message _("Logging in...");
43 imap_quote_string (q_user, sizeof (q_user), idata->conn->account.user);
44 imap_quote_string (q_pass, sizeof (q_pass), idata->conn->account.pass);
47 /* don't print the password unless we're at the ungodly debugging level
50 if (DebugLevel < IMAP_LOG_PASS)
51 debug_print (2, ("Sending LOGIN command for %s...\n",
52 idata->conn->account.user));
55 snprintf (buf, sizeof (buf), "LOGIN %s %s", q_user, q_pass);
56 rc = imap_exec (idata, buf, IMAP_CMD_FAIL_OK | IMAP_CMD_PASS);
59 return IMAP_AUTH_SUCCESS;
61 mutt_error _("Login failed.");
64 return IMAP_AUTH_FAILURE;