]> git.g-eek.se Git - interimap.git/commitdiff
libinterimap: bugfix: fix escaped hierarchy delimiters in LIST reponses.
authorGuilhem Moulin <guilhem@fripost.org>
Thu, 9 May 2019 23:03:50 +0000 (01:03 +0200)
committerGuilhem Moulin <guilhem@fripost.org>
Sun, 26 May 2019 22:07:28 +0000 (00:07 +0200)
The were returned as escaped quoted specials, like "\\", not as a single
character (backslash in this case).

Changelog
interimap
lib/Net/IMAP/InterIMAP.pm
pullimap

index 5a9074a9cd525820eceb2735d1cb8cb4b9a31722..17f4661cd7f0aade22d10923533a670593559c53 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,11 @@
+interimap (0.5) upstream;
+
+ - libinterimap: bugfix: hierarchy delimiters in LIST responses were
+   returned as an escaped quoted special, like "\\", not as a single
+   character (backslash in this case).
+
+ -- Guilhem Moulin <guilhem@fripost.org>  Fri, 10 May 2019 00:58:14 +0200
+
 interimap (0.4) upstream;
 
   * pullimap: replace non RFC 5321-compliant envelope sender addresses
index 5b1bc63b225d560ca1dbad04319994c002583c89..bb7013d1461b5a4d7ba0997a828947fcd315c9d0 100755 (executable)
--- a/interimap
+++ b/interimap
@@ -22,7 +22,7 @@ use v5.14.2;
 use strict;
 use warnings;
 
-our $VERSION = '0.4';
+our $VERSION = '0.5';
 my $NAME = 'interimap';
 use Getopt::Long qw/:config posix_default no_ignore_case gnu_compat
                             bundling auto_version/;
@@ -32,7 +32,7 @@ use Fcntl qw/F_GETFD F_SETFD FD_CLOEXEC/;
 use List::Util 'first';
 
 use lib 'lib';
-use Net::IMAP::InterIMAP 0.0.4 qw/xdg_basedir read_config compact_set/;
+use Net::IMAP::InterIMAP 0.0.5 qw/xdg_basedir read_config compact_set/;
 
 # Clean up PATH
 $ENV{PATH} = join ':', qw{/usr/bin /bin};
index a773f081a084c74bf4edd006bfe1f0b8da23ca93..37616f489bdc6139f4b3b0c4069ab3bb72caf641 100644 (file)
@@ -16,7 +16,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #----------------------------------------------------------------------
 
-package Net::IMAP::InterIMAP v0.0.4;
+package Net::IMAP::InterIMAP v0.0.5;
 use warnings;
 use strict;
 
@@ -2368,7 +2368,7 @@ sub _resp($$;&$$) {
             $self->panic($_) unless $_ eq '';
             $mailbox = 'INBOX' if uc $mailbox eq 'INBOX'; # INBOX is case-insensitive
             undef $delim if uc $delim eq 'NIL';
-            $delim =~ s/\A"(.*)"\z/$1/ if defined $delim;
+            $self->panic($_) if defined $delim and $delim !~ s/\A"\\?(.)"\z/$1/;
             $self->_update_cache_for($mailbox, DELIMITER => $delim);
             $self->_update_cache_for($mailbox, LIST_ATTRIBUTES => \@attrs);
             $callback->($mailbox, $delim, @attrs) if defined $callback and $cmd eq 'LIST';
index 495b99e2aa0dcd6e6c7e9fc600cfbca894c88f66..84587febe5ea8f0bed365fac23a0ac005fe5bfd7 100755 (executable)
--- a/pullimap
+++ b/pullimap
@@ -32,7 +32,7 @@ use List::Util 'first';
 use Socket qw/PF_INET PF_INET6 SOCK_STREAM/;
 
 use lib 'lib';
-use Net::IMAP::InterIMAP 0.0.4 qw/xdg_basedir read_config compact_set/;
+use Net::IMAP::InterIMAP 0.0.5 qw/xdg_basedir read_config compact_set/;
 
 # Clean up PATH
 $ENV{PATH} = join ':', qw{/usr/bin /bin};