Displaying 2 results from an estimated 2 matches for "imap_fetch_handlers_regist".
Did you mean:
imap_fetch_handlers_register
2009 May 21
2
IMAP Get Savedate plugin
Hi,
I want to add a feature to the fetch command in IMAP, by enabling it to return the save
date, when I request the SAVEDATE parameter.
I want to use this for my webmail application, so I can show the users the deleted date
when they are viewing the Trash folder.
I was able to put it directly into the code (patch attached), but I was wondering if
there is a way to put it as a plugin instead.
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...ot-1.2.11+lemonade/src/imap/imap-fetch.h 2010-04-08 09:59:12.000000000 -0500
@@ -73,6 +73,8 @@
unsigned int partial_fetch:1;
unsigned int send_vanished:1;
unsigned int failed:1;
+ unsigned int urlfetch:1; /* APPLE - urlauth */
+ unsigned int urlfetched:1; /* APPLE - urlauth */
};
void imap_fetch_handlers_register(const struct imap_fetch_handler *handlers,
diff -Nur dovecot-1.2.11/src/imap/imap-search-args.c dovecot-1.2.11+lemonade/src/imap/imap-search-args.c
--- dovecot-1.2.11/src/imap/imap-search-args.c 2010-01-24 17:14:17.000000000 -0600
+++ dovecot-1.2.11+lemonade/src/imap/imap-search-args.c 2010-04-08...