Displaying 2 results from an estimated 2 matches for "imap_arg_str".
2014 Feb 19
1
ID command and dovecot
...essful login
successfully only if the length of the whole command is less than 1024
octets (exactly 861 octets is working fine, over that "Input buffer
full" occurs).
I tried finding the reference in the source code, however I am unable to
find where this limit actually occurs (maybe IMAP_ARG_STRING
imap_arg->type?)
thank you in advance,
regards, Jernej
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...nc);
+ if (keywords_list != NULL &&
+ mailbox_keywords_create(ctx->box, keywords_list,
+ &keywords) < 0) {
+ client_send_storage_error(cmd, ctx->storage);
+ return catenate_cancel(ctx, nonsync);
+ }
+ }
+
+ /* [<internal date>] */
+ if (args->type == IMAP_ARG_STRING) {
+ const char *str = IMAP_ARG_STR(args);
+ ++args;
+
+ if (!imap_parse_datetime(str, &internal_date,
+ &timezone_offset)) {
+ client_send_tagline(cmd, "BAD Invalid internal date.");
+ if (keywords != NULL)
+ mailbox_keywords_free(ctx->box, &keywords);
+...