isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 0a5a84793283bae245d64fbf634f651b433afe0d
parent af1acdac9748910f6db8c8a3853ff72aeb948107
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sat, 18 Nov 2017 09:57:05 +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.

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

diff --git 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