8ed5a17581
* Changed default config & state locations to follow the XDG basedir spec * Added support for IMAP mailbox names with non-ASCII characters * Added support for Maildir Paths with suffixes (not ending with a slash) * Made the Channel side to expire with MaxMessages configurable * MaxMessages and MaxSize can be used together now * The unfiltered list of mailboxes in each Store can be printed now * A proper summary is now printed prior to exiting. * Added support for mirroring deletions more accurately; option ExpungeSolo * Added new sync operation 'Old' to retry previously skipped messages * Added --ext-exit option to indicate with the exit code whether Stores were modified * Added support for the LITERAL- IMAP extension, which improves upload performance with f.ex. GMail somewhat * Improved error handling when attempting to store too big messages * Malformed messages with incomplete headers will be propagated now * A notice is now emitted if the server does not support race-free Trash * Improved checking for invalid command lines * Options not supported due to the build configuration are still recognized now, to make error messages more helpful * he progress indicator is rate-limited now * Added --dry-run option * Various improvements to the debugging output * Vastly extended the autotest suite * The reference point for relative local paths in the configuration file is now the file's containing directory * Maildir Path cannot be nested into Inbox anymore (this was never documented) * Renamed the ReNew/--renew/-N options to Upgrade/--upgrade/-u and Delete/--delete/-d to Gone/--gone/-g * Superseded SSLVersions option with TLSVersions, and disabled TLS v1.0 OBS-URL: https://build.opensuse.org/package/show/server:mail/isync?expand=0&rev=38
68 lines
2.3 KiB
RPMSpec
68 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package isync
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: isync
|
|
Version: 1.5.0
|
|
Release: 0
|
|
Summary: Utility to synchronize IMAP mailboxes with local maildir folders
|
|
License: GPL-2.0-only
|
|
URL: https://isync.sourceforge.io/
|
|
Source: https://prdownloads.sourceforge.net/isync/%{name}-%{version}.tar.gz
|
|
Source1: https://prdownloads.sourceforge.net/isync/%{name}-%{version}.tar.gz.asc
|
|
Source2: https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x63bfd037cad71e8dff3aea3ac17714f08d1bdbba#/%{name}.keyring
|
|
BuildRequires: db-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(libsasl2)
|
|
BuildRequires: pkgconfig(openssl)
|
|
BuildRequires: pkgconfig(zlib)
|
|
|
|
%description
|
|
isync is a command line application which synchronizes mailboxes; currently
|
|
Maildir and IMAP4 mailboxes are supported. New messages, message deletions
|
|
and flag changes can be propagated both ways. isync is suitable for use in
|
|
IMAP-disconnected mode.
|
|
|
|
Synchronization is based on unique message identifiers (UIDs), so no
|
|
identification conflicts can occur (as opposed to some other mail
|
|
synchronizers). Synchronization state is kept in one local text file per
|
|
mailbox pair; multiple replicas of a mailbox can be maintained.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%configure
|
|
%make_build
|
|
|
|
%install
|
|
%make_install docdir=%{_docdir}/%{name}
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc README AUTHORS ChangeLog NEWS
|
|
%{_bindir}/mbsync-get-cert
|
|
%{_bindir}/mbsync
|
|
%{_bindir}/mdconvert
|
|
%exclude %{_docdir}/%{name}/TODO
|
|
%{_docdir}/%{name}/examples/*
|
|
%dir %{_docdir}/%{name}/examples
|
|
%{_mandir}/man1/mbsync.1%{?ext_man}
|
|
%{_mandir}/man1/mdconvert.1%{?ext_man}
|
|
|
|
%changelog
|