diff options
author | abs <abs@pkgsrc.org> | 2013-08-26 09:58:08 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2013-08-26 09:58:08 +0000 |
commit | c1de93910d3050a28f8751fc86b4e8367b5f0b10 (patch) | |
tree | 3a3c8ae4021c4ce46ecd267d198a10aedbeb2b37 /mail | |
parent | 41312ed8c3e4e8f1568eb0b66d1b7d444b9a8dda (diff) | |
download | pkgsrc-c1de93910d3050a28f8751fc86b4e8367b5f0b10.tar.gz |
Updated mail/p5-Mail-IMAPClient to 3.33
version 3.33: Tue, May 14, 2013 10:12:43 AM
- more cleanup on use of $@ and $!
- cleanup get_bodystructure / get_envelope
- allow Ssl arg as an arrayref to pass args to IO::Socket::SSL
[Ramana V Mokkapati]
- no need to Massage() the folder name in uidnext()
- rt.cpan.org#84028: get_envelope() fails when subject ends w/backslash
[Andy Lyttle]
- rt.cpan.org#79476: move()/copy() with sequence causes numeric warning
[Oleg G]
- *move()/copy() no longer sort message(s) provided by caller
pkgsrc-changes:
Set MultiHomed => 1 in call to IO::Socket::INET to allow fallback to IPv4
when server has both IPv4 and IPv6 addresses and no reliable IPv6 route
Diffstat (limited to 'mail')
-rw-r--r-- | mail/p5-Mail-IMAPClient/Makefile | 6 | ||||
-rw-r--r-- | mail/p5-Mail-IMAPClient/distinfo | 9 | ||||
-rw-r--r-- | mail/p5-Mail-IMAPClient/patches/patch-lib_Mail_IMAPClient.pm | 15 |
3 files changed, 22 insertions, 8 deletions
diff --git a/mail/p5-Mail-IMAPClient/Makefile b/mail/p5-Mail-IMAPClient/Makefile index 7a8c10bc161..16d8200aecd 100644 --- a/mail/p5-Mail-IMAPClient/Makefile +++ b/mail/p5-Mail-IMAPClient/Makefile @@ -1,9 +1,7 @@ -# $NetBSD: Makefile,v 1.35 2013/05/31 12:41:18 wiz Exp $ -# +# $NetBSD: Makefile,v 1.36 2013/08/26 09:58:08 abs Exp $ -DISTNAME= Mail-IMAPClient-3.32 +DISTNAME= Mail-IMAPClient-3.33 PKGNAME= p5-${DISTNAME} -PKGREVISION= 2 SVR4_PKGNAME= p5mic CATEGORIES= mail perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Mail/} diff --git a/mail/p5-Mail-IMAPClient/distinfo b/mail/p5-Mail-IMAPClient/distinfo index 09a7bd80b7d..7bcef6d6ef8 100644 --- a/mail/p5-Mail-IMAPClient/distinfo +++ b/mail/p5-Mail-IMAPClient/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.15 2012/08/17 15:26:01 wen Exp $ +$NetBSD: distinfo,v 1.16 2013/08/26 09:58:08 abs Exp $ -SHA1 (Mail-IMAPClient-3.32.tar.gz) = 88ade20546b4754e075aba0d268043e6c51d113f -RMD160 (Mail-IMAPClient-3.32.tar.gz) = d1df02d9c46a08ab2b051c7fff68e1a7f5f0d944 -Size (Mail-IMAPClient-3.32.tar.gz) = 184463 bytes +SHA1 (Mail-IMAPClient-3.33.tar.gz) = 0c522d4c9f990357e5ad786d450d9a3430999da5 +RMD160 (Mail-IMAPClient-3.33.tar.gz) = d279e57160d44099d7873c070cb03b025a8760e7 +Size (Mail-IMAPClient-3.33.tar.gz) = 185422 bytes +SHA1 (patch-lib_Mail_IMAPClient.pm) = 23b59bf1924248b040b9f20576c20aa26b5101eb diff --git a/mail/p5-Mail-IMAPClient/patches/patch-lib_Mail_IMAPClient.pm b/mail/p5-Mail-IMAPClient/patches/patch-lib_Mail_IMAPClient.pm new file mode 100644 index 00000000000..30ef61338ac --- /dev/null +++ b/mail/p5-Mail-IMAPClient/patches/patch-lib_Mail_IMAPClient.pm @@ -0,0 +1,15 @@ +$NetBSD: patch-lib_Mail_IMAPClient.pm,v 1.1 2013/08/26 09:58:08 abs Exp $ + +Set MultiHomed => 1 in call to IO::Socket::INET to allow fallback to IPv4 +when server has both IPv4 and IPv6 addresses and no reliable IPv6 route + +--- lib/Mail/IMAPClient.pm.orig 2013-05-14 14:27:09.000000000 +0000 ++++ lib/Mail/IMAPClient.pm +@@ -356,6 +356,7 @@ sub connect(@) { + PeerPort => $port, + Proto => 'tcp', + Debug => $self->Debug, ++ MultiHomed => 1, + @timeout, + @args + ); |