aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-02-14 21:30:42 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-02-14 21:30:42 +0000
commit965b57fcd9e65fcdca1abda219b9d706dad229d1 (patch)
tree55783680aae6bf9f937b2bc8d35ee389c06dcf67 /imap.c
parentacd98e75d3e5ab82f6e014bb52cb2509f7dfb933 (diff)
downloadfetchmail-965b57fcd9e65fcdca1abda219b9d706dad229d1.tar.gz
fetchmail-965b57fcd9e65fcdca1abda219b9d706dad229d1.tar.bz2
fetchmail-965b57fcd9e65fcdca1abda219b9d706dad229d1.zip
Handle IMAP folder names with embedded spaces.
svn path=/trunk/; revision=2746
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/imap.c b/imap.c
index 34c4bf96..9aee018d 100644
--- a/imap.c
+++ b/imap.c
@@ -1065,10 +1065,9 @@ static int imap_getrange(int sock,
}
else
{
- if (!check_only)
- ok = gen_transact(sock, "SELECT %s", folder ? folder : "INBOX");
- else
- ok = gen_transact(sock, "EXAMINE %s", folder ? folder : "INBOX");
+ ok = gen_transact(sock,
+ check_only ? "EXAMINE \"%s\"" : "SELECT \"%s\"",
+ folder ? folder : "INBOX");
if (ok != 0)
{
report(stderr, _("mailbox selection failed\n"));