summaryrefslogtreecommitdiff
path: root/mail/isync
AgeCommit message (Collapse)AuthorFilesLines
2021-02-17isync: Update to 1.4.0ryoon6-45/+113
* Import upstream patch to fix runtime errors. Changelog: This is a feature release that comes with significant new functionality: - The IMAP '$Forwarded' / Maildir 'P' (passed) flag is supported now. - Support for configuring a TLS cipher string was added. - IMAP mailbox subscriptions are supported now. - The IMAP user query can be scripted now. - Added built-in support for the macOS Keychain. - Messages excluded by MaxSize will now result in placeholders. Compatibility concerns: - The 'isync' compatibility wrapper was removed. - A C11 compiler is required for building now. - The validity of the config file is checked more stricly now, including: - Appearance of options in unexpected places - The capitalization of INBOX - The new TLSv1.3 flag must be added to SSLVersions if the option is used, unless disabling that version is desired (which is unlikely). - Removed support for the obsolete/insecure SSL v3. - The use of Master/Slave terminology has been deprecated. Bugfixes: - All bugfixes up to 1.3.4 are included. - IMAP protocol errors are handled more robustly now. - Fixed support for SASL's built-in EXTERNAL mechanism. - Improved reliability of synchronization when resuming interrupted runs. - Fixed MaxSize being ignored under certain circumstances when only one of New and ReNew was requested. - Fixed a network inefficiency occurring with server-side mailboxes that receive new messages only via mbsync.
2020-08-31*: bump PKGREVISION for perl-5.32.wiz1-2/+2
2020-06-12isync: Increase PassCmd output buffer size to work with Gmailryoon3-3/+19
2020-03-20*: Convert broken sourceforge HOMEPAGEs back to httpnia1-2/+2
2020-01-18all: migrate several HOMEPAGEs to httpsrillig1-2/+2
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
2020-01-18*: Recursive revision bump for openssl 1.1.1.jperkin1-1/+2
2019-12-29Update to 1.3.1ryoon4-66/+9
* Enable SASL support Changelog: This is a long overdue maintenance release: - SSL now uses SNI, which for example GMail requires - fixed fallbacks for missing UIDPLUS extension (with e.g. DavMail) - fixed UIDVALIDITY recovery with really long Message-id headers - fixed GSSAPI authentication with Kerberos - fixed support for IMAP servers which do not sort search results (e.g., poczta.o2.pl) - fixed CopyArrivalDate on platforms without glibc - fixed useless SASL warnings with certain plugins - the perl 5.14 requirement is now made explicit - improved OpenBSD support - fixed a bunch of compiler warnings
2019-08-11Bump PKGREVISIONs for perl 5.30.0wiz1-2/+2
2019-03-08Fix a typoryoon1-2/+2
2019-03-08Support SNI with upstream patchryoon3-5/+17
* Support SNI. for example Google GMail IMAP4 server * Bump PKGREVISION
2018-09-19Update to 1.3.0. From the changelog:schmonz6-29/+31
- Network timeout handling has been added. - Support for proper Maildir++ and a Maildir sub-folder naming style without extra dots have been added. - Support for TLS client certificates was added. - Support for recovering from baseless UID validity changes was added. - The get-cert script was renamed to mbsync-get-cert.
2016-12-15Update to 1.2.1. From the changelog:schmonz6-44/+32
- The 'isync' compatibility wrapper is now deprecated. - An IMAP Path/NAMESPACE rooted in INBOX won't be handled specially any more. This means that some Patterns may need adjustment. - The default output is a lot less verbose now. The meanings of the -V and -D options changed significantly. - The SSL/TLS configuration has been re-designed. SSL is now explicitly enabled or disabled - "use SSL if available" is gone. Notice: Tunnels are assumed to be secure and thus default to no SSL. - Support for SASL (flexible authentication) has been added. - Support for Windows file systems has been added. - Support for compressed data transfer has been added. - Folder deletions can be propagated now.
2016-12-07c99 fixes SunOSwiedi1-1/+2
2016-03-05Bump PKGREVISION for security/openssl ABI bump.jperkin1-2/+2
2015-11-03Add SHA512 digests for distfiles for mail categoryagc1-1/+2
Problems found locating distfiles: Package mutt: missing distfile patch-1.5.24.rr.compressed.gz Package p5-Email-Valid: missing distfile Email-Valid-1.198.tar.gz Package pine: missing distfile fancy.patch.gz Package postgrey: missing distfile targrey-0.31-postgrey-1.34.patch Package qmail: missing distfile badrcptto.patch Package qmail: missing distfile outgoingip.patch Package qmail: missing distfile qmail-1.03-realrcptto-2006.12.10.patch Package qmail: missing distfile qmail-smtpd-viruscan-1.3.patch Package thunderbird24: missing distfile enigmail-1.7.2.tar.gz Package thunderbird31: missing distfile enigmail-1.7.2.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-07-04Fix crashing bug in mbsync on NetBSD 6. From Enami Tsugutumo inbsiegert3-2/+33
PR pkg/49784.
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2014-06-09Update to 1.1.1. From the changelog:schmonz5-118/+6
* src/mbsync.1: * don't lie about the default of User * fix typos * src/drv_maildir.c: * don't forget to reset message counts when skipping scan * remove apparently pointless resetting of recent message count * src/compat/convert.c: * error-check renaming of uid mapping database * error-check reading of old uidvalidity and maxuid files * src/sync.c: * error-check committing of sync state * better error messages for sync state and journal related errors * remove pointless/counterproductive "Disk full?" error message suffixes * don't crash in message expiration debug print * src/compat/config.c: * fix "inverse copy&pasto" in account labeling code * don't needlessly quote strings * write Sync and Expunge to global section if applicable * don't bother checking impossible condition * src/main.c: * fix segfault on passing --{create,expunge}-{master,slave} * don't needlessly spell out INBOX * src/drv_imap.c: * don't crash on malformed response code * don't crash on truncated LIST response * fix crash on store without prior fetch with non-UIDPLUS servers * don't error out if we don't get an X-TUID header * src/compat/main.c: * remove pointless pointer assignment * src/: drv_maildir.c, mdconvert.c: * fix hypothetical buffer overflows * close a bunch of fd leaks in error paths * src/util.c: * actually use prime numbers for all hash bucket sizes * src/config.c: * fix zero MaxSize override in Channels * src/compat/: config.c, isync.h, util.c: * rework maildir store mapping * src/socket.c: * remove pointless use of AI_V4MAPPED flag * configure.ac, src/common.h, src/drv_imap.c, src/util.c: * make date parsing portable, take 2 * src/: drv_maildir.c, sync.c: * fix _POSIX_SYNCHRONIZED_IO usage Many of these changes were in response to findings from a Coverity scan.
2014-05-17Detect absence of AI_V4MAPPED to fix build on NetBSD.schmonz5-2/+117
2014-04-24Update to 1.1.0. From the changelog:schmonz6-35/+60
* Support for hierarchical mailboxes in Patterns. * Full support for IMAP pipelining (streaming, parallelization) added. This is considerably faster especially with high-latency networks. * Faster and hopefully more reliable support for IMAP servers without the UIDPLUS extension (e.g., M$ Exchange). * More automatic handling of SSL certificates. * IPv6 support. * IMAP password query can be scripted. * Message arrival dates can be propagated. * Data safety in case of system crashes was improved. * MaxMessages was made vastly more useful.
2014-02-12Recursive PKGREVISION bump for OpenSSL API version bump.tron1-2/+2
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-2/+1
2012-01-18Revbump after updating db5adam1-3/+2
2010-09-16Revbump after updating databases/db5adam1-2/+2
2010-06-02Fix building with db5; revision bump for db4 updateadam6-74/+9
2010-01-17Recursive PKGREVISION bump for jpeg update to 8.wiz1-1/+2
2009-07-12Update mail/isync to 1.0.4tonio3-10/+39
Changelog contains mostly bugfixes. Add path-af to handle 64bits time_t
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2008-09-06Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlibwiz1-2/+2
name change).
2008-01-18Per the process outlined in revbump(1), perform a recursive revbumptnn1-2/+2
on packages that are affected by the switch from the openssl 0.9.7 branch to the 0.9.8 branch. ok jlam@
2008-01-12db4 update related revision bumpadam1-2/+2
2007-06-08PKGREVISION bump for db4 shlib name change.wiz1-2/+2
2007-01-18Avoid segfault when parsing configuration file under netbsdtonio3-3/+18
2007-01-18Update mail/isync to 1.0.3tonio3-19/+6
2006-11-01 08:19 Oswald Buddenhagen <ossi@users.sf.net> * src/: drv_imap.c, mbsync.1: - un-document "Host imaps:[...]" syntax and introduce new option UseIMAPS instead - apply ted's patch to support UseIMAPS in conjunction with Tunnel - document that SSLv2 is No Good (TM) 2006-11-01 08:14 Oswald Buddenhagen <ossi@users.sf.net> * src/drv_imap.c: - move assigning default port to the place of use
2006-03-07Update mail/isync to 1.0.2tonio3-30/+7
- 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.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-01-25Fix -C for imap mailboxes : do not quote argument of CREATEtonio3-8/+17
(this fix comes from isync cvs) Bump PKGREVISION
2006-01-06DEPENDS and PKGREVISION bumps because db4's library name changed.wiz1-2/+2
2005-12-20explicitly include databases/db4/buildlink3.mk, as isync only accepts db4tonio1-3/+2
2005-10-29This pkg installs some README files etc. Add them to the PLIST.kristerw2-2/+9
Bump PKGREVISION.
2005-04-24- Update isync to 1.0.1 - thanks to Antoine.Reilles@loria.fr for theadrianp9-72/+105
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
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests.agc1-1/+2
2004-12-26Enable pkgviews installation.minskim1-1/+3
2004-12-26This package needs Berkeley DB. Include bdb.buildlink3.mk.minskim1-1/+2
2004-11-27Reset maintainer on his request.wiz1-2/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-04-18Convert to buildlink3.snj1-3/+3
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz1-1/+2
Buildlink files: RECOMMENDED version changed to current version.