bugfixes in conf.pl
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 19 Apr 2000 14:48:16 +0000 (14:48 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 19 Apr 2000 14:48:16 +0000 (14:48 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@439 7612ce4b-ef26-0410-bec9-ea0150e637f0

BUG
config/conf.pl

diff --git a/BUG b/BUG
index efb11084747e90b5faa7aa20b54c75840bef02d0..dd53bf0de93b31d66322e5e348f3264827b10926 100644 (file)
--- a/BUG
+++ b/BUG
@@ -1,8 +1,23 @@
 Known BUGS to be fixed before 0.4pre1:
 
 Known BUGS to be fixed before 0.4pre1:
 
-  -    The icon for message sorting doesn't always stay.  It usually reverts back to the date.
-  -    If a new message comes in while still browsing cached message list, the space is allocated, but it is blank.
-(lme)  I'm not convinced that the cache gets deleted all the time.  I'll look into this one.  
+  -    LDAP preferences in conf.pl are not working.
+
+  -    Next/Previous while viewing a message should take into account 
+       the way that the mailbox is sorted.  Right now, it just does it 
+                by the next message id.
+
+  -    The icon for message sorting doesn't always stay.  It usually 
+       reverts back to the date.
+
+  -    If a new message comes in while still browsing cached message 
+       list, the space is allocated, but it is blank.
+
+(lme)  I'm not convinced that the cache gets deleted all the time.  I'll 
+       look into this one.  
+
   -    Special folders don't get listed at the top of folder list
   -    Special folders don't get listed at the top of folder list
+
   -    In UW, removing folders with a / at the end is broke
   -    In UW, removing folders with a / at the end is broke
-  -    There is an infinate loop when moving messages to other folders, thus breaking the move, and delete buttons.
+
+  -    There is an infinate loop when moving messages to other folders, 
+       thus breaking the move, and delete buttons.
index 329a37b51bd1300ba30e174917dd171c6132a00d..7d3e40143cc07486938d83e3d5cb4259083e7545 100755 (executable)
@@ -951,13 +951,13 @@ sub save_data {
 
    print FILE "\n";
 
 
    print FILE "\n";
 
-   print FILE "\t\$domain               = $domain;\n";
-   print FILE "\t\$imapServerAddress    = $imapServerAddress;\n";
-   print FILE "\t\$imapPort             = $imapPort;\n";
-   print FILE "\t\$useSendmail          = $useSendmail;\n";
-   print FILE "\t\$smtpServerAddress    = $smtpServerAddress;\n";
-   print FILE "\t\$smtpPort             = $smtpPort;\n";
-   print FILE "\t\$sendmailPath         = $sendmailPath;\n";
+   print FILE "\t\$domain               = \"$domain\";\n";
+   print FILE "\t\$imapServerAddress    = \"$imapServerAddress\";\n";
+   print FILE "\t\$imapPort             =  $imapPort;\n";
+   print FILE "\t\$useSendmail          =  $useSendmail;\n";
+   print FILE "\t\$smtpServerAddress    = \"$smtpServerAddress\";\n";
+   print FILE "\t\$smtpPort             =  $smtpPort;\n";
+   print FILE "\t\$sendmailPath         = \"$sendmail_path\";\n";
    
    print FILE "\n";
 
    
    print FILE "\n";
 
@@ -970,7 +970,7 @@ sub save_data {
    print FILE "\t\$default_move_to_trash            =  $default_move_to_trash;\n";
    print FILE "\t\$auto_expunge                     =  $auto_expunge;\n";
    print FILE "\t\$default_sub_of_inbox             =  $default_sub_of_inbox;\n";
    print FILE "\t\$default_move_to_trash            =  $default_move_to_trash;\n";
    print FILE "\t\$auto_expunge                     =  $auto_expunge;\n";
    print FILE "\t\$default_sub_of_inbox             =  $default_sub_of_inbox;\n";
-   print FILE "\t\$show_contain_subfolders_option  = $show_contain_subfolders_option;\n";
+   print FILE "\t\$show_contain_subfolders_option   =  $show_contain_subfolders_option;\n";
    for ($count=0; $count <= $#special_folders; $count++) {
       print FILE "\t\$special_folders[$count]               = \"$special_folders[$count]\";\n";
    }
    for ($count=0; $count <= $#special_folders; $count++) {
       print FILE "\t\$special_folders[$count]               = \"$special_folders[$count]\";\n";
    }