[prev in list] [next in list] [prev in thread] [next in thread] 

List:       squirrelmail-cvs
Subject:    [SM-CVS] SF.net SVN: squirrelmail: [12949]
From:       pdontthink () users ! sourceforge ! net
Date:       2008-02-20 19:11:41
Message-ID: E1JRuM1-0001Os-Ff () sc8-pr-svn2 ! sourceforge ! net
[Download RAW message or body]

Revision: 12949
          http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=12949&view=rev
Author:   pdontthink
Date:     2008-02-20 11:11:41 -0800 (Wed, 20 Feb 2008)

Log Message:
-----------
Fix broken default value for 'save as draft' and fix explanation of 'move to sent' \
functionality

Modified Paths:
--------------
    branches/SM-1_4-STABLE/squirrelmail/config/conf.pl

Modified: branches/SM-1_4-STABLE/squirrelmail/config/conf.pl
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/config/conf.pl	2008-02-16 12:08:28 UTC (rev \
                12948)
+++ branches/SM-1_4-STABLE/squirrelmail/config/conf.pl	2008-02-20 19:11:41 UTC (rev \
12949) @@ -505,24 +505,24 @@
         print "R   Return to Main Menu\n";
     } elsif ( $menu == 3 ) {
         print $WHT. "Folder Defaults\n" . $NRM;
-        print "1.  Default Folder Prefix         : \
                $WHT$default_folder_prefix$NRM\n";
-        print "2.  Show Folder Prefix Option     : $WHT$show_prefix_option$NRM\n";
-        print "3.  Trash Folder                  : $WHT$trash_folder$NRM\n";
-        print "4.  Sent Folder                   : $WHT$sent_folder$NRM\n";
-        print "5.  Drafts Folder                 : $WHT$draft_folder$NRM\n";
-        print "6.  By default, move to trash     : \
                $WHT$default_move_to_trash$NRM\n";
-        print "7.  By default, move to sent      : $WHT$default_move_to_sent$NRM\n";
-        print "8.  By default, save as draft     : \
                $WHT$default_save_as_draft$NRM\n";
-        print "9.  List Special Folders First    : \
                $WHT$list_special_folders_first$NRM\n";
-        print "10. Show Special Folders Color    : \
                $WHT$use_special_folder_color$NRM\n";
-        print "11. Auto Expunge                  : $WHT$auto_expunge$NRM\n";
-        print "12. Default Sub. of INBOX         : $WHT$default_sub_of_inbox$NRM\n";
-        print "13. Show 'Contain Sub.' Option    : \
                $WHT$show_contain_subfolders_option$NRM\n";
-        print "14. Default Unseen Notify         : \
                $WHT$default_unseen_notify$NRM\n";
-        print "15. Default Unseen Type           : $WHT$default_unseen_type$NRM\n";
-        print "16. Auto Create Special Folders   : $WHT$auto_create_special$NRM\n";
-        print "17. Folder Delete Bypasses Trash  : $WHT$delete_folder$NRM\n";
-        print "18. Enable /NoSelect folder fix   : $WHT$noselect_fix_enable$NRM\n";
+        print "1.  Default Folder Prefix          : \
$WHT$default_folder_prefix$NRM\n"; +        print "2.  Show Folder Prefix Option      \
: $WHT$show_prefix_option$NRM\n"; +        print "3.  Trash Folder                   \
: $WHT$trash_folder$NRM\n"; +        print "4.  Sent Folder                    : \
$WHT$sent_folder$NRM\n"; +        print "5.  Drafts Folder                  : \
$WHT$draft_folder$NRM\n"; +        print "6.  By default, move to trash      : \
$WHT$default_move_to_trash$NRM\n"; +        print "7.  By default, save sent messages \
: $WHT$default_move_to_sent$NRM\n"; +        print "8.  By default, save as draft     \
: $WHT$default_save_as_draft$NRM\n"; +        print "9.  List Special Folders First   \
: $WHT$list_special_folders_first$NRM\n"; +        print "10. Show Special Folders \
Color     : $WHT$use_special_folder_color$NRM\n"; +        print "11. Auto Expunge    \
: $WHT$auto_expunge$NRM\n"; +        print "12. Default Sub. of INBOX          : \
$WHT$default_sub_of_inbox$NRM\n"; +        print "13. Show 'Contain Sub.' Option     \
: $WHT$show_contain_subfolders_option$NRM\n"; +        print "14. Default Unseen \
Notify          : $WHT$default_unseen_notify$NRM\n"; +        print "15. Default \
Unseen Type            : $WHT$default_unseen_type$NRM\n"; +        print "16. Auto \
Create Special Folders    : $WHT$auto_create_special$NRM\n"; +        print "17. \
Folder Delete Bypasses Trash   : $WHT$delete_folder$NRM\n"; +        print "18. \
Enable /NoSelect folder fix    : $WHT$noselect_fix_enable$NRM\n";  print "\n";
         print "R   Return to Main Menu\n";
     } elsif ( $menu == 4 ) {
@@ -1715,11 +1715,12 @@
     return $default_move_to_trash;
 }
 
-# default move to sent 
+# default move to sent (save sent messages)
 sub command24b {
-    print "By default, should messages get moved to the sent folder?  You\n";
-    print "can specify the default sent folder in option 4.  If this is set\n";
-    print "to false, messages will get sent and no copy will be made.\n";
+    print "By default, should copies of outgoing messages get saved in the\n";
+    print "sent folder?  You can specify the default sent folder in option 4.\n";
+    print "If this is set to false, messages will get sent and no copy will\n";
+    print "be made.\n";
     print "\n";
     print "Sent folder is currently: $sent_folder\n";
     print "\n";
@@ -1729,7 +1730,7 @@
     } else {
         $default_value = "n";
     }
-    print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT";
+    print "By default, save sent messages (y/n) [$WHT$default_value$NRM]: $WHT";
     $new_show = <STDIN>;
     if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq \
"y" ) ) ) {  $default_move_to_sent = "true";
@@ -1748,7 +1749,7 @@
     print "Drafts folder is currently: $draft_folder\n";
     print "\n";
 
-    if ( lc($default_move_to_draft) eq "true" ) {
+    if ( lc($default_save_as_draft) eq "true" ) {
         $default_value = "y";
     } else {
         $default_value = "n";


This was sent by the SourceForge.net collaborative development platform, the world's \
largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
-----
squirrelmail-cvs mailing list
List address: squirrelmail-cvs@lists.sourceforge.net
List info (subscribe/unsubscribe/change options): \
                https://lists.sourceforge.net/lists/listinfo/squirrelmail-cvs
Repository: http://squirrelmail.org/svn


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic