Commit 100ab145 100ab145052321cf5807783921cdc603581910fc by Sergey Poznyakoff

(imap4d_append): Bugfix.

1 parent 5937b8d1
......@@ -31,6 +31,8 @@ imap4d_append (struct imap4d_command *command, char *arg)
if (!mboxname)
return util_finish (command, RESP_BAD, "Too few arguments");
util_unquote (&mboxname);
if (*sp == '(' && util_parse_attributes (sp+1, &sp, &flags))
return util_finish (command, RESP_BAD, "Missing closing parenthesis");
......