commit 0a5a84793283bae245d64fbf634f651b433afe0d
Author: Oswald Buddenhagen <o...@users.sf.net>
Date:   Sat Nov 18 09:57:05 2017 +0100

    fix IMAP UID sequence in UIDNEXT determination fallback
    
    use just * instead of the rather nonsensical *:* (which davmail happens
    to actually barf at).
    
    amends 72be55b0.

 src/drv_imap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/drv_imap.c b/src/drv_imap.c
index bc85aeb..05afa09 100644
--- a/src/drv_imap.c
+++ b/src/drv_imap.c
@@ -2388,7 +2388,7 @@ imap_open_box_p2( imap_store_t *ctx, imap_cmd_t *gcmd, 
int response )
        INIT_IMAP_CMD(imap_cmd_open_box_t, cmd, cmdp->callback, 
cmdp->callback_aux)
        cmd->gen.param.lastuid = 1;
        imap_exec( ctx, &cmd->gen, imap_open_box_p3,
-                  "UID FETCH *:* (UID)" );
+                  "UID FETCH * (UID)" );
 }
 
 static void

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
isync-devel mailing list
isync-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/isync-devel

Reply via email to