svn commit: r496289 - in head/mail/isync: . files

Emanuel Haupt ehaupt at FreeBSD.org
Tue Mar 19 19:03:04 UTC 2019


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 at 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


More information about the svn-ports-all mailing list