response.c
2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2010, 2011 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library. If not, see
<http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <mailutils/cctype.h>
#include <mailutils/cstr.h>
#include <mailutils/stream.h>
#include <mailutils/errno.h>
#include <mailutils/sys/imap.h>
int
_mu_imap_response (mu_imap_t imap)
{
int status = 0;
if (imap == NULL)
return EINVAL;
if (MU_IMAP_FISSET (imap, MU_IMAP_RESP))
return 0;
_mu_imap_clrerrstr (imap);
status = _mu_imap_untagged_response_clear (imap);
if (status)
return status;
while (1)
{
status = mu_imapio_getline (imap->io);
if (status == 0)
{
char **wv;
size_t wc;
char *p;
mu_imapio_get_words (imap->io, &wc, &wv);
if (strcmp (wv[0], "*") == 0)
{
_mu_imap_untagged_response_add (imap);/* FIXME: error checking */
continue;
}
else if (strlen (wv[0]) == imap->tag_len &&
memcmp (wv[0], imap->tag_str, imap->tag_len) == 0)
{
/* Handle the tagged response */
if (wc < 2)
{
/*imap->state = MU_IMAP_ERROR;*/
status = MU_ERR_BADREPLY;
}
else if (strcmp (wv[1], "OK") == 0)
{
imap->resp_code = MU_IMAP_OK;
if (mu_imapio_reply_string (imap->io, 2, &p) == 0)
{
_mu_imap_seterrstr (imap, p, strlen (p));
free (p);
}
}
else if (strcmp (wv[1], "NO") == 0)
{
imap->resp_code = MU_IMAP_NO;
if (mu_imapio_reply_string (imap->io, 2, &p) == 0)
{
_mu_imap_seterrstr (imap, p, strlen (p));
free (p);
}
}
else if (strcmp (wv[1], "BAD") == 0)
{
imap->resp_code = MU_IMAP_BAD;
if (mu_imapio_reply_string (imap->io, 2, &p) == 0)
{
_mu_imap_seterrstr (imap, p, strlen (p));
free (p);
}
}
else
status = MU_ERR_BADREPLY;
MU_IMAP_FSET (imap, MU_IMAP_RESP);
}
else
{
imap->state = MU_IMAP_ERROR;
status = MU_ERR_BADREPLY;
}
}
else
imap->state = MU_IMAP_ERROR;
break;
}
return status;
}