Oops, sorry.
Mail's title was wrong.
It should be "Rename IMAP folder failed on imap.gmx.com".
And I use libtinymail-0.0.9
Kwan hong Lee 쓴 글:
Hi,
I'm implementing mailer with libtinymail(It's very awesome!).
And I think I found a kind of bug. It happened when I try to rename
subfolder's subfolders(not Top level's) on IMAP that does not support
NAMESPACE(e.g. imap.gmx.com).
For example, 'RENAME INBOX/aaa INBOX'
will be
sent as a IMAP command if I try to rename INBOX/aaa to INBOX/bbb.
If server does not support NAMESPACE, CamelImapStoreNamespace's member
'sep' always set NULL in function imap_connect_online() on file
libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-store.c.
So, function camel_imap_store_summary_full_from_path() on file
libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-store-summary.c
always call function camel_imap_store_summary_path_to_full() with
invalid dir separator(NULL).
As a result, INBOX/bbb's '/' is
replaced with CamelImapStoreNamespace's dir
separator. So invalid IMAP command sent.
In function imap_connect_online(),
if CamelImapStore's member 'dir_sep' is NULL, it set to '/'
now(commented in 'Guess').
So, I think that if CamelImapStoreNamespace's member 'sep' is NULL, it
should be set to '/', too.
It works properly after patch(and I also tested it with other server
support NAMESPACE and dir separator is '.'. It works properly, too).
Because I'm not sure what author's idea, please confirm this and if I'm
right, please let me know.
Thanks.
_______________________________________________
tinymail-devel-list mailing list
tinymail-devel-list gnome org
http://mail.gnome.org/mailman/listinfo/tinymail-devel-list
|