head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.8 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.6 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.4 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.2 pkgsrc-2011Q2-base:1.4 pkgsrc-2010Q1:1.3.0.44 pkgsrc-2010Q1-base:1.3 pkgsrc-2009Q4:1.3.0.42 pkgsrc-2009Q4-base:1.3 pkgsrc-2009Q3:1.3.0.40 pkgsrc-2009Q3-base:1.3 pkgsrc-2009Q2:1.3.0.38 pkgsrc-2009Q2-base:1.3 pkgsrc-2009Q1:1.3.0.36 pkgsrc-2009Q1-base:1.3 pkgsrc-2008Q4:1.3.0.34 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.32 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.30 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.28 pkgsrc-2008Q2-base:1.3 cwrapper:1.3.0.26 pkgsrc-2008Q1:1.3.0.24 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.22 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.20 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.18 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.16 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.3.0.14 pkgsrc-2006Q4-base:1.3 pkgsrc-2006Q3:1.3.0.12 pkgsrc-2006Q3-base:1.3 pkgsrc-2006Q2:1.3.0.10 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.3.0.8 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.3.0.6 pkgsrc-2005Q4-base:1.3 pkgsrc-2005Q3:1.3.0.4 pkgsrc-2005Q3-base:1.3 pkgsrc-2005Q2:1.3.0.2 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.2.0.10 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.2.0.8 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.2.0.6 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.4 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.2.0.2 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.1.1.1.0.4 pkgsrc-2003Q4-base:1.1.1.1 netbsd-1-6-1:1.1.1.1.0.2 netbsd-1-6-1-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.4 date 2010.06.02.13.05.01; author adam; state dead; branches; next 1.3; 1.3 date 2005.04.24.09.31.54; author adrianp; state Exp; branches; next 1.2; 1.2 date 2003.12.27.16.54.06; author seb; state Exp; branches; next 1.1; 1.1 date 2002.12.07.15.12.41; author cjep; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2002.12.07.15.12.41; author cjep; state Exp; branches; next ; desc @@ 1.4 log @Fix building with db5; revision bump for db4 update @ text @$NetBSD: patch-ac,v 1.3 2005/04/24 09:31:54 adrianp Exp $ --- src/compat/Makefile.am.orig 2005-03-05 21:50:09.000000000 +0100 +++ src/compat/Makefile.am 2005-03-05 21:50:18.000000000 +0100 @@@@ -1,7 +1,7 @@@@ bin_PROGRAMS = isync isync_SOURCES = main.c config.c convert.c util.c -isync_LDADD = -ldb +isync_LDADD = -ldb4 noinst_HEADERS = isync.h man_MANS = isync.1 @ 1.3 log @- Update isync to 1.0.1 - thanks to Antoine.Reilles@@loria.fr for the first set of patches - Many updates and bugfixes, in summary: - better OpenSSL detection - update c-client support - use legacy flock() only on linux - cope with out-of-disk-space halfways gracefully @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Update to version 0.9.2. Changes in version 0.9 Added Tunnel directive to allow the user to specify a shell command to run to set up an IMAP connection in place of a TCP socket (eg., to run over an SSH session). Added PREAUTH support (useful mostly in conjunction with Tunnel). Messages marked deleted are not uploaded when we are going to expunge. Locally generated messages are not re-fetched after uploading even if the UIDPLUS extension is not supported by the server. Added `OneToOne' configuration option: ignore any Mailbox specifications and instead pick up all mailboxes from the local MailDir and remote Folder and map them 1:1 onto each other according to their names. -C now creates both local and remote boxes; -L and -R create only local/remote. --quiet is now really quiet. @ text @d3 4 a6 3 --- src/sync.c.orig 2003-05-07 00:06:37.000000000 +0000 +++ src/sync.c @@@@ -53,7 +53,7 @@@@ set_uid (DBM * db, const char *f, unsign d8 6 a13 7 key.dptr = (void *) f; s = strchr (f, ':'); - key.dsize = s ? (size_t) (s - key.dptr) : strlen (f); + key.dsize = s ? (size_t) (s - (char *)key.dptr) : strlen (f); val.dptr = (void *) &uid; val.dsize = sizeof (uid); dbm_store (db, key, val, DBM_REPLACE); @ 1.1 log @Initial revision @ text @d3 3 a5 3 --- sync.c.orig Mon Jan 28 19:19:56 2002 +++ sync.c @@@@ -48,7 +48,7 @@@@ set_uid (DBM * db, const char *f, unsign @ 1.1.1.1 log @Initial import of isync 0.8 into the NetBSD packages collection as mail/isync. isync is a command line utility for synchronizing a remote IMAP mailbox with a local maildir-style mailbox. This is useful for working in disconnected mode, such as on a laptop. Modifications made locally and remotely are synchronized so that no message status flags are lost. Supplied by Ceri Storey in PR#19314. Thanks! @ text @@