summaryrefslogtreecommitdiff
path: root/mail/isync
diff options
context:
space:
mode:
authortonio <tonio>2006-03-07 20:20:26 +0000
committertonio <tonio>2006-03-07 20:20:26 +0000
commited8bb63464b504d6dd3d1ae4904deea7ac43a05f (patch)
treee5b68d3f25f97728c69a652af2afbfc9d1a8b4a6 /mail/isync
parentc4d5b8b36eded06414549589d615347791098f6d (diff)
downloadpkgsrc-ed8bb63464b504d6dd3d1ae4904deea7ac43a05f.tar.gz
Update mail/isync to 1.0.2
- remove patch-af, as it is already in the release - take maintainership. Changelog: * src/compat/main.c: fix 'isync -w' writing .mbsyncrc to a wrong directory * src/sync.c: less confusing uid ranges in debug * src/sync.c: - sanitize flag handling of expired messages - don't record we synced flags if we didn't - remove now superfluous temporary rflags * src/drv_maildir.c: less confusing error message on invalid mailbox. * src/drv_imap.c: revert 1.8 - what was i smoking?! the CREATE argument is already quoted; we just extracted it from the previous command. ( that was patch-af ) * src/drv_maildir.c: make flag changes unset "new" status - unless a ghost is acting in the background, a flag change indicates that the message was at least noticed.
Diffstat (limited to 'mail/isync')
-rw-r--r--mail/isync/Makefile7
-rw-r--r--mail/isync/distinfo9
-rw-r--r--mail/isync/patches/patch-af21
3 files changed, 7 insertions, 30 deletions
diff --git a/mail/isync/Makefile b/mail/isync/Makefile
index bc7fadf5f57..78646b394c7 100644
--- a/mail/isync/Makefile
+++ b/mail/isync/Makefile
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.17 2006/03/04 21:30:00 jlam Exp $
+# $NetBSD: Makefile,v 1.18 2006/03/07 20:20:26 tonio Exp $
#
-DISTNAME= isync-1.0.1
-PKGREVISION= 3
+DISTNAME= isync-1.0.2
CATEGORIES= mail net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=isync/}
-MAINTAINER= pkgsrc-users@NetBSD.org
+MAINTAINER= tonio@NetBSD.org
HOMEPAGE= http://isync.sourceforge.net/
COMMENT= Synchronize a maildir with an imap server
diff --git a/mail/isync/distinfo b/mail/isync/distinfo
index 038ad31a401..5ef01fe8d6f 100644
--- a/mail/isync/distinfo
+++ b/mail/isync/distinfo
@@ -1,11 +1,10 @@
-$NetBSD: distinfo,v 1.5 2006/01/25 17:35:49 tonio Exp $
+$NetBSD: distinfo,v 1.6 2006/03/07 20:20:26 tonio Exp $
-SHA1 (isync-1.0.1.tar.gz) = 622969588f85cb9fcaf4a61fe42a73e7f600bf87
-RMD160 (isync-1.0.1.tar.gz) = af1e04adc983b23f7c38404b6fcedf9791a546d9
-Size (isync-1.0.1.tar.gz) = 165617 bytes
+SHA1 (isync-1.0.2.tar.gz) = 93dbfb0290c8c73137d2b2e9880de43f9f268e69
+RMD160 (isync-1.0.2.tar.gz) = 66161696761a8ab41431748ec7b442035c1d97c8
+Size (isync-1.0.2.tar.gz) = 166143 bytes
SHA1 (patch-aa) = 5ac207f7d7b634673e60ce34cc9a921846d205da
SHA1 (patch-ab) = bee5b091f89a670b584b73ef58774ae992bb6637
SHA1 (patch-ac) = d06d1444f66eaeab1fdf22e1aa2f1b9184abccfa
SHA1 (patch-ad) = c4a86de19b3004752dc51da9453b702945fe6578
SHA1 (patch-ae) = ad8ced1548ecd3eb224a2a81dffd5e0f1caaac87
-SHA1 (patch-af) = 7cbb9f9cc5e3bc3ecf550e7e69b0561b2cbcac10
diff --git a/mail/isync/patches/patch-af b/mail/isync/patches/patch-af
deleted file mode 100644
index 9281f6da62f..00000000000
--- a/mail/isync/patches/patch-af
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-af,v 1.2 2006/01/25 17:35:49 tonio Exp $
-
---- src/drv_imap.c.orig 2005-03-28 12:41:04.000000000 +0200
-+++ src/drv_imap.c 2006-01-25 18:25:48.000000000 +0100
-@@ -40,6 +40,7 @@
- #include <netinet/tcp.h>
- #include <arpa/inet.h>
- #include <netdb.h>
-+#include <limits.h>
- #if HAVE_LIBSSL
- # include <openssl/ssl.h>
- # include <openssl/err.h>
-@@ -1001,7 +1002,7 @@ get_cmd_result( imap_store_t *ctx, struc
- if (!strcmp( "NO", arg )) {
- if (cmdp->cb.create && cmd && (cmdp->cb.trycreate || !memcmp( cmd, "[TRYCREATE]", 11 ))) { /* SELECT, APPEND or UID COPY */
- p = strchr( cmdp->cmd, '"' );
-- if (!issue_imap_cmd( ctx, 0, "CREATE \"%.*s\"", strchr( p + 1, '"' ) - p + 1, p )) {
-+ if (!issue_imap_cmd( ctx, 0, "CREATE %.*s", strchr( p + 1, '"' ) - p + 1, p )) {
- resp = RESP_BAD;
- goto normal;
- }