From 7c60d18df5a87e9de3ac2baa058308587deee242 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Wed, 9 May 2018 03:38:07 +0200 Subject: Improve wording. --- Changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Changelog') diff --git a/Changelog b/Changelog index f2fee83..bb355e0 100644 --- a/Changelog +++ b/Changelog @@ -1,7 +1,7 @@ interimap (0.4) UNRELEASED * pullimap: replace non RFC 5321-compliant envelope sender addresses - (received by the IMAP FETCH ENVELOPE command) by the null sender address + (received by the IMAP FETCH ENVELOPE command) with the null address <>. + Library: new API idle_start() and idle_stop(). + Add support for untagged ESEARCH responses from RFC 4731. -- cgit v1.2.3 From 15cd4f6ea5074ffb33de8670bd1877603e504289 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Thu, 10 May 2018 17:56:45 +0200 Subject: pullimap: use extended SEARCH (RFC 4731) when available --- Changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Changelog') diff --git a/Changelog b/Changelog index bb355e0..7939fa2 100644 --- a/Changelog +++ b/Changelog @@ -5,6 +5,8 @@ interimap (0.4) UNRELEASED <>. + Library: new API idle_start() and idle_stop(). + Add support for untagged ESEARCH responses from RFC 4731. + + pullimap: Use extended SEARCH commands (RFC 4731) if supported by + the server to search old mail and EXPUNGE them. - Ensure the lower bound of UID ranges is at least 1. - Fix manpage generation with pandoc >=2.1. -- cgit v1.2.3 From dd7edb8eac0c11fb8168f5028c8b6d8706cc8fdb Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sun, 20 Jan 2019 19:55:33 +0100 Subject: pullimap, interimap: Use $XDG_CONFIG_HOME/$NAME/config as config file. --- Changelog | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Changelog') diff --git a/Changelog b/Changelog index 7939fa2..7f033c8 100644 --- a/Changelog +++ b/Changelog @@ -3,6 +3,10 @@ interimap (0.4) UNRELEASED * pullimap: replace non RFC 5321-compliant envelope sender addresses (received by the IMAP FETCH ENVELOPE command) with the null address <>. + * pullimap, interimap: take configuration filename (default: "config") + relative to $XDG_CONFIG_HOME/$NAME (or ~/.config/$NAME), to comply + with the XDG specification. Thus the previous default config file + $XDG_CONFIG_HOME/$NAME should become $XDG_CONFIG_HOME/$NAME/config. + Library: new API idle_start() and idle_stop(). + Add support for untagged ESEARCH responses from RFC 4731. + pullimap: Use extended SEARCH commands (RFC 4731) if supported by -- cgit v1.2.3 From 452ae91f06bec4c21e7ba7b7bc4309b089f7afe3 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sun, 20 Jan 2019 19:55:58 +0100 Subject: Specify minimum Perl and Net::SSLeay versions. --- Changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'Changelog') diff --git a/Changelog b/Changelog index 7f033c8..c8a0d51 100644 --- a/Changelog +++ b/Changelog @@ -13,6 +13,7 @@ interimap (0.4) UNRELEASED the server to search old mail and EXPUNGE them. - Ensure the lower bound of UID ranges is at least 1. - Fix manpage generation with pandoc >=2.1. + - Specify minimum Perl and Net::SSLeay versions. -- Guilhem Moulin Tue, 06 Dec 2016 17:37:01 +0100 -- cgit v1.2.3 From d19ba0a20d0d7a7ec288c93df329210b31bf3c51 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sun, 20 Jan 2019 20:23:20 +0100 Subject: interimap.service: use --watch=60 rather than --notify. --- Changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Changelog') diff --git a/Changelog b/Changelog index c8a0d51..eb187b6 100644 --- a/Changelog +++ b/Changelog @@ -14,6 +14,8 @@ interimap (0.4) UNRELEASED - Ensure the lower bound of UID ranges is at least 1. - Fix manpage generation with pandoc >=2.1. - Specify minimum Perl and Net::SSLeay versions. + - interimap.service: use --watch=60 rather than --notify, because + dovecot's NOTIFY extension doesn't seem to work so well as of 2.2.27. -- Guilhem Moulin Tue, 06 Dec 2016 17:37:01 +0100 -- cgit v1.2.3 From 1492f504316eb506e72f7a84ecd23207bb07e226 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 21 Jan 2019 17:54:53 +0100 Subject: pullimap, interimap: don't autocreate statefile or database in long-lived mode. --- Changelog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Changelog') diff --git a/Changelog b/Changelog index eb187b6..b4fb931 100644 --- a/Changelog +++ b/Changelog @@ -11,6 +11,9 @@ interimap (0.4) UNRELEASED + Add support for untagged ESEARCH responses from RFC 4731. + pullimap: Use extended SEARCH commands (RFC 4731) if supported by the server to search old mail and EXPUNGE them. + + pullimap, interimap: don't autocreate statefile or database in + long-lived mode (when --watch or --idle is set). Instead, an error + is raised if the statefile or database doesn't exist. - Ensure the lower bound of UID ranges is at least 1. - Fix manpage generation with pandoc >=2.1. - Specify minimum Perl and Net::SSLeay versions. -- cgit v1.2.3 From 522666e8e2556d89c25013ce17d6db49e75443ef Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 21 Jan 2019 23:59:55 +0100 Subject: Net::IMAP::InterIMAP: add support for TLSv1.3 (on recent enough Net::SSLeay). Also, change "SSL_protocols" default value from "!SSLv2 !SSLv3" to "!SSLv2 !SSLv3 !TLSv1 !TLSv1.1". I.e., only enable TLSv1.2 and later, which is the default in Debian's OpenSSL as of 1.1.1-2, cf. https://tracker.debian.org/news/998835/accepted-openssl-111-2-source-into-unstable/ . --- Changelog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Changelog') diff --git a/Changelog b/Changelog index b4fb931..9fa46dd 100644 --- a/Changelog +++ b/Changelog @@ -7,6 +7,9 @@ interimap (0.4) UNRELEASED relative to $XDG_CONFIG_HOME/$NAME (or ~/.config/$NAME), to comply with the XDG specification. Thus the previous default config file $XDG_CONFIG_HOME/$NAME should become $XDG_CONFIG_HOME/$NAME/config. + * Library: add support for TLSv1.3 (on recent enough Net::SSLeay), and + change "SSL_protocols" default value from "!SSLv2 !SSLv3" to "!SSLv2 + !SSLv3 !TLSv1 !TLSv1.1". + Library: new API idle_start() and idle_stop(). + Add support for untagged ESEARCH responses from RFC 4731. + pullimap: Use extended SEARCH commands (RFC 4731) if supported by -- cgit v1.2.3 From 24362150d8ff8245885f47b8cd8362c2d2e39b46 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sun, 20 Jan 2019 20:26:01 +0100 Subject: Change e-mail address. --- Changelog | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Changelog') diff --git a/Changelog b/Changelog index 9fa46dd..c3aa444 100644 --- a/Changelog +++ b/Changelog @@ -23,7 +23,7 @@ interimap (0.4) UNRELEASED - interimap.service: use --watch=60 rather than --notify, because dovecot's NOTIFY extension doesn't seem to work so well as of 2.2.27. - -- Guilhem Moulin Tue, 06 Dec 2016 17:37:01 +0100 + -- Guilhem Moulin Tue, 06 Dec 2016 17:37:01 +0100 interimap (0.3) upstream; @@ -46,7 +46,7 @@ interimap (0.3) upstream; - interimap: when resuming a sync, only consider UIDs greater than a known UIDNEXT. - -- Guilhem Moulin Thu, 01 Dec 2016 14:37:50 +0100 + -- Guilhem Moulin Thu, 01 Dec 2016 14:37:50 +0100 interimap (0.2) upstream; @@ -80,10 +80,10 @@ interimap (0.2) upstream; * Display source UIDs upon APPEND. Previously only target UIDs where displayed in non-debug mode. - -- Guilhem Moulin Wed, 09 Sep 2015 00:44:35 +0200 + -- Guilhem Moulin Wed, 09 Sep 2015 00:44:35 +0200 interimap (0.1) upstream; * Initial public release. Development was started in July 2015. - -- Guilhem Moulin Mon, 07 Sep 2015 17:14:42 +0200 + -- Guilhem Moulin Mon, 07 Sep 2015 17:14:42 +0200 -- cgit v1.2.3 From 41a6694c6d0582c7fffd682926e964ff3fa39b7b Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sun, 20 Jan 2019 20:31:14 +0100 Subject: Prepare new release. --- Changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Changelog') diff --git a/Changelog b/Changelog index c3aa444..5a9074a 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,4 @@ -interimap (0.4) UNRELEASED +interimap (0.4) upstream; * pullimap: replace non RFC 5321-compliant envelope sender addresses (received by the IMAP FETCH ENVELOPE command) with the null address @@ -23,7 +23,7 @@ interimap (0.4) UNRELEASED - interimap.service: use --watch=60 rather than --notify, because dovecot's NOTIFY extension doesn't seem to work so well as of 2.2.27. - -- Guilhem Moulin Tue, 06 Dec 2016 17:37:01 +0100 + -- Guilhem Moulin Sun, 20 Jan 2019 20:30:08 +0100 interimap (0.3) upstream; -- cgit v1.2.3