Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Mar 2019 19:03:03 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r496289 - in head/mail/isync: . files
Message-ID:  <201903191903.x2JJ33QF008078@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Tue Mar 19 19:03:03 2019
New Revision: 496289
URL: https://svnweb.freebsd.org/changeset/ports/496289

Log:
  Provide an upstream patch that fixes an issue with duplication loops when using
  davmail and moving mails around in folders.
  
  PR:		236635
  Submitted by:	sascha@root-login.org

Added:
  head/mail/isync/files/patch-src_drv__imap.c   (contents, props changed)
Modified:
  head/mail/isync/Makefile

Modified: head/mail/isync/Makefile
==============================================================================
--- head/mail/isync/Makefile	Tue Mar 19 18:42:59 2019	(r496288)
+++ head/mail/isync/Makefile	Tue Mar 19 19:03:03 2019	(r496289)
@@ -3,7 +3,7 @@
 
 PORTNAME=	isync
 PORTVERSION=	1.3.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	mail
 MASTER_SITES=	SF
 

Added: head/mail/isync/files/patch-src_drv__imap.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/isync/files/patch-src_drv__imap.c	Tue Mar 19 19:03:03 2019	(r496289)
@@ -0,0 +1,20 @@
+--- src/drv_imap.c.orig	2019-03-19 09:37:32 UTC
++++ src/drv_imap.c
+@@ -2388,7 +2388,7 @@ imap_open_box_p2( imap_store_t *ctx, imap_cmd_t *gcmd,
+ 	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
+@@ -2922,7 +2922,7 @@ imap_find_new_msgs_p2( imap_store_t *ctx, imap_cmd_t *
+ 	cmd->uid = cmdp->uid;
+ 	cmd->gen.param.lastuid = 1;
+ 	imap_exec( ctx, &cmd->gen, imap_find_new_msgs_p3,
+-	           "UID FETCH *:* (UID)" );
++	           "UID FETCH * (UID)" );
+ }
+ 
+ static void



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903191903.x2JJ33QF008078>