Re: What is IMAP status for now?



On 2002.10.21 06:37 Toralf Lund wrote:
>> On 2002.10.15 07:31 Toralf Lund wrote:
>> [ snip ]
>>> There a problem with the way folders are displayed in the 
>>> current version - see my message of 24 September. Also, I've 
>>> made a few changes that I just can't live without, and 
>>> submitted them as patches on Bugzilla, but it looks like 
>>> nobody wants to apply them ;-/
>>> 
>>> - Toralf
>> 
>> The display problem is the lack of list-* headers in the 
>> initial download, right?
> No. I was talking about the problem with special folders. If an 
> IMAP mailbox is marked as Inbox/Sentbox/Trash/Draftbox, it will 
> be displayed twice in the mailbox list; once in the tree for 
> the server it resides on and once in the top level of the list, 
> "outside" all servers. The toplevel entry gets the special 
> icon. Balsa does not appear to understand that both refer to 
> the same mailbox, so opening using one of the entries, then 
> selecting the other means trouble.

Balsa-2 isn't recognizing special mailboxes on IMAP servers right 
now, because of a change in the URL construction. Patch for the 
BALSA_2 cvs branch attached.

Peter
Index: src/mailbox-node.c
===================================================================
RCS file: /cvs/gnome/balsa/src/mailbox-node.c,v
retrieving revision 1.43.2.18
diff -u -r1.43.2.18 mailbox-node.c
--- src/mailbox-node.c	30 Sep 2002 18:44:26 -0000	1.43.2.18
+++ src/mailbox-node.c	21 Oct 2002 17:20:14 -0000
@@ -964,13 +964,14 @@
 
     g_return_val_if_fail(parent, NULL);
 
-    url = g_strdup_printf("imap%s://%s/%s",
+    url = g_strdup_printf("imap%s://%s@%s/%s",
 #ifdef USE_SSL
 			  BALSA_MAILBOX_NODE(root->data)->server->use_ssl 
                           ? "s" : "",
 #else
 			  "",
 #endif
+			  BALSA_MAILBOX_NODE(root->data)->server->user,
 			  BALSA_MAILBOX_NODE(root->data)->server->host,
 			  fn);
     node = remove_special_mailbox_by_url(url);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]