isync

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

commit 4c2fb74207f127a203e0025c6ab5fab725c95d80
parent ee9fd2f5c7ad4db9906b006a18d5dc2fc08a6982
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Fri, 24 Dec 2021 02:20:38 +0100

fix storing messages on non-UIDPLUS servers

the fetch mode needs to be set for messages.

amends 42f165ec.

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

diff --git a/src/drv_imap.c b/src/drv_imap.c @@ -3333,7 +3333,6 @@ imap_find_new_msgs_p3( imap_store_t *ctx, imap_cmd_t *gcmd, int response ) imap_cmd_find_new_t *cmdp = (imap_cmd_find_new_t *)gcmd; imap_cmd_find_new_t *cmd; - ctx->fetch_sts = FetchNone; if (response != RESP_OK) { imap_find_new_msgs_p4( ctx, gcmd, response ); return; @@ -3352,6 +3351,7 @@ imap_find_new_msgs_p3( imap_store_t *ctx, imap_cmd_t *gcmd, int response ) } return; } + ctx->fetch_sts = FetchMsgs; INIT_IMAP_CMD(imap_cmd_find_new_t, cmd, cmdp->callback, cmdp->callback_aux) cmd->out_msgs = cmdp->out_msgs; imap_exec( (imap_store_t *)ctx, &cmd->gen, imap_find_new_msgs_p4, @@ -3363,6 +3363,7 @@ imap_find_new_msgs_p4( imap_store_t *ctx ATTR_UNUSED, imap_cmd_t *gcmd, int resp { imap_cmd_find_new_t *cmdp = (imap_cmd_find_new_t *)gcmd; + ctx->fetch_sts = FetchNone; transform_box_response( &response ); cmdp->callback( response, &(*cmdp->out_msgs)->gen, cmdp->callback_aux ); }