Skip Menu |

This queue is for tickets about the Net-IMAP-Simple CPAN distribution.

Report information
The Basics
Id: 60227
Status: resolved
Priority: 0/
Queue: Net-IMAP-Simple

People
Owner: jettero [...] cpan.org
Requestors: patrickdk [...] patrickdk.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.2012
Fixed in: (no value)



Subject: ipv6 support
the ipv6 support using use_v6 is ok, but the one line completely breaks it: my ( $srv, $prt ) = split( /:/, $server, 2 ); I worked around the issue on my system for now by using: $self->{server} = ($self->{use_v6} ? $server : $srv); $self->{port} = ($self->{use_v6} ? $opts{port} : $prt);
On Tue Aug 10 20:46:38 2010, https://launchpad.net/~patrickdk wrote: Show quoted text
> my ( $srv, $prt ) = split( /:/, $server, 2 );
Coincidentally, I *just* asked my network guy about that the other day. The pattern: 192.168.1.1:80 works fine for IPv4, but for IPv6 it's never going to work right (e.g. ::1:80). Apparently people have already reasoned this out and IPv6 with a port is written as [::1]:80 -- not what I would have picked, but it works. I was planning to fix this in the next release, so I find your ticket a little comical because of the coincidence. -- If riding in an airplane is flying, then riding in a boat is swimming. 116 jumps, 48.6 minutes of freefall, 92.9 freefall miles.
I think I fixed this. I didn't test it very well though. I don't have any IPv6 set up at home right now. If you could test it and report back, that'd be super. -Paul (see http://jettero.pl/ if 1.2017 isn't on CPAN yet) -- If riding in an airplane is flying, then riding in a boat is swimming. 116 jumps, 48.6 minutes of freefall, 92.9 freefall miles.
Subject: Re: [rt.cpan.org #60227] ipv6 support
Date: Sun, 05 Sep 2010 11:01:01 -0400
To: bug-Net-IMAP-Simple [...] rt.cpan.org
From: Patrick Domack <patrickdk [...] patrickdk.com>
Seems to be working good, using imap, and imaps over ipv6. Quoting Paul Miller via RT <bug-Net-IMAP-Simple@rt.cpan.org>: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=60227 > > > I think I fixed this. I didn't test it very well though. I don't have > any IPv6 set up at home right now. If you could test it and report > back, that'd be super. > > -Paul > > (see http://jettero.pl/ if 1.2017 isn't on CPAN yet) > > -- > If riding in an airplane is flying, then riding in a boat is swimming. > 116 jumps, 48.6 minutes of freefall, 92.9 freefall miles. > >
sweet. -- If riding in an airplane is flying, then riding in a boat is swimming. 116 jumps, 48.6 minutes of freefall, 92.9 freefall miles.