fix IMAP UID sequence in UIDNEXT determination fallback

use just * instead of the rather nonsensical *:* (which davmail happens
to actually barf at).

amends 72be55b0.
This commit is contained in:
Oswald Buddenhagen 2017-11-18 09:57:05 +01:00
parent af1acdac97
commit 0a5a847932

View File

@ -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) INIT_IMAP_CMD(imap_cmd_open_box_t, cmd, cmdp->callback, cmdp->callback_aux)
cmd->gen.param.lastuid = 1; cmd->gen.param.lastuid = 1;
imap_exec( ctx, &cmd->gen, imap_open_box_p3, imap_exec( ctx, &cmd->gen, imap_open_box_p3,
"UID FETCH *:* (UID)" ); "UID FETCH * (UID)" );
} }
static void static void