Folder list not skipping INBOX for Courier; case seems to matter
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 22 Sep 2004 21:12:20 +0000 (21:12 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 22 Sep 2004 21:12:20 +0000 (21:12 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8077 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
src/folders.php

index ac5e96552aa6088288e602b0f7364074a977eb60..150385873dc025ab741738acb065496eec0ac5f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -106,6 +106,7 @@ Version 1.5.1 -- CVS
     change_password plugin
   - Make SMTP Authentication detection in conf.pl more RFC-compliant.
   - Fixed IMAP errors when using mail_fetch plugin to auto-fetch on login.
+  - Fixed folder list in Create Folders list for Courier (properly skip INBOX)
 
 Version 1.5.0
 --------------------
index cc1fc279b90176b81929929231230dcff095284c..962d698199f43435576ce35db1695d84a2fee3d5 100644 (file)
@@ -110,7 +110,7 @@ $server_type = strtolower($imap_server_type);
 if ( $server_type == 'courier' ) {
   array_push($skip_folders, 'inbox.trash');
   if ( $default_folder_prefix == 'INBOX.' ) {
-    array_push($skip_folders, 'inbox');
+    array_push($skip_folders, 'INBOX');
   }
 }