]> code.delx.au - offlineimap/blobdiff - offlineimap/imaplib.py
Workaround for bug in Exchange
[offlineimap] / offlineimap / imaplib.py
index f344ab2f314193dc75c8b0400a2125a03ae52f87..4d442474b30e674b01681bb9926aa0a83393da63 100644 (file)
@@ -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