Archive of RubyForge sup-talk mailing list
 help / color / mirror / Atom feed
* [sup-talk] IMAP folders with spaces
@ 2007-10-08  9:19 Christopher Warrington
  2007-10-08 14:49 ` Magnus Therning
  2007-10-09 14:06 ` William Morgan
  0 siblings, 2 replies; 6+ messages in thread
From: Christopher Warrington @ 2007-10-08  9:19 UTC (permalink / raw)


Sup doesn't seem to like IMAP paths with spaces.

Executing this command:
sup-add -a -u -l label "imaps://imap.host.tld/Mail/Two Words"

results in this error:

/usr/lib/ruby/1.8/uri/common.rb:436:in `split': bad URI(is not URI?): imaps://imap.host.tld/Mail/Two Words (URI::InvalidURIError)

sup-add -a -u -l label "imaps://imap.host.tld/Mail/Two%20Words"

works, but I get this error:

> Sorry, I couldn't communicate with a source: While communicating with 
> IMAP server (type Net::IMAP::NoResponseError): "Mailbox does not 
> exist"

What should I do?

-- 
Christopher Warrington <chrisw at rice.edu>
(Away from his normal computer.)


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [sup-talk] IMAP folders with spaces
  2007-10-08  9:19 [sup-talk] IMAP folders with spaces Christopher Warrington
@ 2007-10-08 14:49 ` Magnus Therning
  2007-10-11  0:07   ` Christopher Warrington
  2007-10-09 14:06 ` William Morgan
  1 sibling, 1 reply; 6+ messages in thread
From: Magnus Therning @ 2007-10-08 14:49 UTC (permalink / raw)


On Mon, Oct 08, 2007 at 04:19:09 -0500, Christopher Warrington wrote:
>Sup doesn't seem to like IMAP paths with spaces.
>
>Executing this command:
>sup-add -a -u -l label "imaps://imap.host.tld/Mail/Two Words"
>
>results in this error:
>
>/usr/lib/ruby/1.8/uri/common.rb:436:in `split': bad URI(is not URI?): imaps://imap.host.tld/Mail/Two Words (URI::InvalidURIError)
>
>sup-add -a -u -l label "imaps://imap.host.tld/Mail/Two%20Words"
>
>works, but I get this error:
>
>> Sorry, I couldn't communicate with a source: While communicating with 
>> IMAP server (type Net::IMAP::NoResponseError): "Mailbox does not 
>> exist"
>
>What should I do?

Submit a patch for maildir.rb?

/M

-- 
Magnus Therning                             (OpenPGP: 0xAB4DFBA4)
magnus?therning?org             Jabber: magnus?therning?gmail?com
http://therning.org/magnus
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://rubyforge.org/pipermail/sup-talk/attachments/20071008/6d8e6777/attachment.bin 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [sup-talk] IMAP folders with spaces
  2007-10-08  9:19 [sup-talk] IMAP folders with spaces Christopher Warrington
  2007-10-08 14:49 ` Magnus Therning
@ 2007-10-09 14:06 ` William Morgan
  2007-10-27  0:26   ` William Morgan
  1 sibling, 1 reply; 6+ messages in thread
From: William Morgan @ 2007-10-09 14:06 UTC (permalink / raw)


Excerpts from Christopher Warrington's message of Mon Oct 08 02:19:09 -0700 2007:
> sup-add -a -u -l label "imaps://imap.host.tld/Mail/Two%20Words"
> 
> works, but I get this error:
> 
> > Sorry, I couldn't communicate with a source: While communicating with 
> > IMAP server (type Net::IMAP::NoResponseError): "Mailbox does not 
> > exist"
> 
> What should I do?

Wait for me to fix this bug. :)

-- 
William <wmorgan-sup at masanjin.net>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [sup-talk] IMAP folders with spaces
  2007-10-08 14:49 ` Magnus Therning
@ 2007-10-11  0:07   ` Christopher Warrington
  0 siblings, 0 replies; 6+ messages in thread
From: Christopher Warrington @ 2007-10-11  0:07 UTC (permalink / raw)



Magnus Therning wrote:
>> What should I do?
> 
> Submit a patch for maildir.rb?

That involves knowing Ruby. :-)

I'm starting small, with the functionality to refine searches.
-- 
Christopher Warrington <chrisw at rice.edu>



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [sup-talk] IMAP folders with spaces
  2007-10-09 14:06 ` William Morgan
@ 2007-10-27  0:26   ` William Morgan
  2007-10-28 18:22     ` Christopher Warrington
  0 siblings, 1 reply; 6+ messages in thread
From: William Morgan @ 2007-10-27  0:26 UTC (permalink / raw)


Excerpts from William Morgan's message of Tue Oct 09 07:06:51 -0700 2007:
> Excerpts from Christopher Warrington's message of Mon Oct 08 02:19:09 -0700 2007:
> > sup-add -a -u -l label "imaps://imap.host.tld/Mail/Two%20Words"
> > 
> > works, but I get this error:
> > 
> > > Sorry, I couldn't communicate with a source: While communicating with 
> > > IMAP server (type Net::IMAP::NoResponseError): "Mailbox does not 
> > > exist"
> > 
> > What should I do?
> 
> Wait for me to fix this bug. :)

Escaped IMAP URIs should now work in SVN.

-- 
William <wmorgan-sup at masanjin.net>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [sup-talk] IMAP folders with spaces
  2007-10-27  0:26   ` William Morgan
@ 2007-10-28 18:22     ` Christopher Warrington
  0 siblings, 0 replies; 6+ messages in thread
From: Christopher Warrington @ 2007-10-28 18:22 UTC (permalink / raw)


Excerpts from William Morgan's message of Fri Oct 26 19:26:05 -0500 2007:
> Escaped IMAP URIs should now work in SVN.

Works great. Thanks!

-- 
Christopher Warrington <chrisw at rice.edu>


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-10-28 18:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-10-08  9:19 [sup-talk] IMAP folders with spaces Christopher Warrington
2007-10-08 14:49 ` Magnus Therning
2007-10-11  0:07   ` Christopher Warrington
2007-10-09 14:06 ` William Morgan
2007-10-27  0:26   ` William Morgan
2007-10-28 18:22     ` Christopher Warrington

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox