added the BUG file, updated config script
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 15 Apr 2000 15:34:37 +0000 (15:34 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 15 Apr 2000 15:34:37 +0000 (15:34 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@430 7612ce4b-ef26-0410-bec9-ea0150e637f0

BUG
config/conf.pl

diff --git a/BUG b/BUG
index 04a03266948303da7cad9b09707dbb49a6899092..e9f28a09ef4757612f974fa75934055fdbd85cc8 100644 (file)
--- a/BUG
+++ b/BUG
@@ -1,2 +1,7 @@
-BUGS:
+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.  
+  -    Special folders don't get listed at the top of folder list
+  -    In UW, removing folders with a / at the end is broke
index 0b2a2613f608572f49a5402b6e1ddc9aea6f1c43..daf7b3d5612813eef08ced5288f49f62d24c87e0 100755 (executable)
@@ -119,6 +119,9 @@ while (($command ne "q") && ($command ne "Q")) {
                print "R   Return to Main Menu\n";
        } elsif ($menu == 7) {
                print $WHT."Message of the Day (MOTD)\n".$NRM;
+               print "\n$motd\n";
+               print "\n";
+               print "1   Edit the MOTD\n";
                print "\n";
                print "R   Return to Main Menu\n";
        }
@@ -136,7 +139,7 @@ while (($command ne "q") && ($command ne "Q")) {
                $menu = 0;
        } else {
                if ($menu == 0) {
-                       if (($command > 0) && ($command < 7)) {
+                       if (($command > 0) && ($command < 8)) {
                                $menu = $command;
                        }
                } elsif ($menu == 1) {
@@ -156,6 +159,7 @@ while (($command ne "q") && ($command ne "Q")) {
                } elsif ($menu == 5) {
                } elsif ($menu == 6) {
                } elsif ($menu == 7) {
+                       if    ($command == 1) { $motd   = command71 (); }
                }
        }       
 }
@@ -318,3 +322,20 @@ sub command17 {
    }
        return $new_smtpPort;
 }
+
+# MOTD
+sub command71 {
+       print "\nYou can now create the welcome message that is displayed\n";
+       print "every time a user logs on.  You can use HTML or just plain\n";
+       print "text.\n\n(Type @ on a blank line to exit)\n";
+       do {
+          print "] ";
+          $line = <STDIN>;
+          $line =~ s/[\r|\n]//g;
+          $line =~ s/  /\&nbsp;\&nbsp;/g;
+          if ($line ne "@") {
+             $new_motd = $new_motd . $line;
+          }
+       } while ($line ne "@");
+       return $new_motd;
+}