Rocco Rutte:
[apps/madmutt.git] / imap / auth_anon.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1999-2000 Brendan Cully <brendan@kublai.com>
4  *
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.
8  */
9
10 /* IMAP login/authentication code */
11
12 #if HAVE_CONFIG_H
13 # include "config.h"
14 #endif
15
16 #include "mutt.h"
17 #include "imap_private.h"
18 #include "auth.h"
19
20 /* this is basically a stripped-down version of the cram-md5 method. */
21 imap_auth_res_t imap_auth_anon (IMAP_DATA * idata, const char *method)
22 {
23   int rc;
24
25   if (!mutt_bit_isset (idata->capabilities, AUTH_ANON))
26     return IMAP_AUTH_UNAVAIL;
27
28   if (mutt_account_getuser (&idata->conn->account))
29     return IMAP_AUTH_FAILURE;
30
31   if (idata->conn->account.user[0] != '\0')
32     return IMAP_AUTH_UNAVAIL;
33
34   mutt_message _("Authenticating (anonymous)...");
35
36   imap_cmd_start (idata, "AUTHENTICATE ANONYMOUS");
37
38   do
39     rc = imap_cmd_step (idata);
40   while (rc == IMAP_CMD_CONTINUE);
41
42   if (rc != IMAP_CMD_RESPOND) {
43     dprint (1, (debugfile, "Invalid response from server.\n"));
44     goto bail;
45   }
46
47   mutt_socket_write (idata->conn, "ZHVtbXkK\r\n");      /* base64 ("dummy") */
48
49   do
50     rc = imap_cmd_step (idata);
51   while (rc == IMAP_CMD_CONTINUE);
52
53   if (rc != IMAP_CMD_OK) {
54     dprint (1, (debugfile, "Error receiving server response.\n"));
55     goto bail;
56   }
57
58   if (imap_code (idata->cmd.buf))
59     return IMAP_AUTH_SUCCESS;
60
61 bail:
62   mutt_error _("Anonymous authentication failed.");
63   mutt_sleep (2);
64   return IMAP_AUTH_FAILURE;
65 }