> Recently installed 1.5.1 and I noticed today that the sent subfolders
> plugin seems to have a problem with creating the new '03' sent subfolder
> for March.
>
> I just downloaded and installed the latest release of 1.5.1 when it was
> announced about 2 weeks ago.  No major problems until this morning.  I
> have had to remove the send subfolders plugin (This is now part of the
> standard SM release right?) so that I can at least see my folders in the
> left frame and read emails.
>
> The error message I see in the left frame if I enable sent subfolders is
> as follows:
>
> ERROR: Could not complete request.
> Query: SUBSCRIBE "INBOX.Sent.2006"
> Reason Given: Subscribe: Mailbox does not exist
>
>
> I can see that INBOX.Sent.2006 exists.

Are you sure that it is not

Query: SUBSCRIBE "INBOX.Sent.2006."

> No idea why this has suddenly stopped working but it's a real shame since
> I really love
> this piece of functionality to filter my sent mail by month so as not to
> clog up just 1 sent mail folder.

sent_subfolders plugin was updated in order to make it work in UW IMAP
server. I haven't noticed issue in sqimap_mailbox_create() command.


----
diff -u -r1.270 imap_mailbox.php
--- imap_mailbox.php    10 Feb 2006 22:16:05 -0000      1.270
+++ imap_mailbox.php    1 Mar 2006 21:10:11 -0000
@@ -401,11 +401,13 @@
 function sqimap_mailbox_create ($imap_stream, $mailbox, $type) {
     global $delimiter;
     if (strtolower($type) == 'noselect') {
-        $mailbox .= $delimiter;
+        $create_mailbox = $mailbox . $delimiter;
+    } else {
+        $create_mailbox = $mailbox;
     }

     $read_ary = sqimap_run_command($imap_stream, 'CREATE ' .
-                                   sqimap_encode_mailbox_name($mailbox),
+                                  
sqimap_encode_mailbox_name($create_mailbox),
                                    true, $response, $message);
     sqimap_subscribe ($imap_stream, $mailbox);
 }
-----


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
squirrelmail-users mailing list
Posting Guidelines: 
http://www.squirrelmail.org/wiki/MailingListPostingGuidelines
List Address: [email protected]
List Archives: 
http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to