Displaying 2 results from an estimated 2 matches for "mailbox_save".
2004 May 21
1
maildirsize virtual quota support
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi.
I'm interested to help you with maildirsize virtual quota support.
Is there any documented dovecot api?
Best regards,
- --
Branko F. Gracnar
Noviforum Ltd. Software & Media
http://www.noviforum.si
http://www.najdi.si
-----BEGIN PGP SIGNATURE-----
iD8DBQFArhbWfiC/E+t8hPcRAtX7AJ9A5ZtSN+6hGQVNLvEjdwV+h2AMBQCfVNem
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
..."can't parse fetch args");
+
+	if (imap_fetch_begin(cfctx.fetch_ctx) != 0)
+		return catenate_fetch_cleanup(&cfctx, FALSE,
+					      "can't begin fetch");
+
+	/* fix the plumbing:  imap_fetch_more() writes to
+	   client->output, so set that to the pipe to mailbox_save()'s
+	   input */
+	cfctx.client_output = ctx->client->output;
+	ctx->client->output = ctx->cat.output;
+
+	fetch_ret = 0;
+	flush_ret = 0;
+	error = NULL;
+	header = TRUE;
+	toobig = FALSE;
+	do {
+		if (fetch_ret == 0)
+			fetch_ret = imap_fetch_more(cfctx.fetch_ctx);
+		else
+...