From fabbf81c1af159c4abbcb39f57c638460698416e Mon Sep 17 00:00:00 2001 From: John Goerzen Date: Fri, 7 Oct 2005 20:11:20 +0100 Subject: [PATCH] Workaround for bug in Exchange With help from Mark R. Biggers, I discovered that Exchange doesn't like an asterisk in a folder name. Sigh. --- offlineimap/imaplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/imaplib.py b/offlineimap/imaplib.py index f344ab2..4d44247 100644 --- a/offlineimap/imaplib.py +++ b/offlineimap/imaplib.py @@ -136,7 +136,7 @@ class IMAP4: class abort(error): pass # Service errors - close and retry class readonly(abort): pass # Mailbox status changed to READ-ONLY - mustquote = re.compile(r"[^\w!#$%&'*+,.:;<=>?^`|~-]") + mustquote = re.compile(r"[^\w!#$%&'+,.:;<=>?^`|~-]") def __init__(self, host = '', port = IMAP4_PORT): self.debug = Debug -- 2.39.2