Updated the themes, and general SquirrelMail stuff
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 2 Jan 2000 21:16:38 +0000 (21:16 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 2 Jan 2000 21:16:38 +0000 (21:16 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@97 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
config/config.php
config/tan_theme.php
functions/page_header.php
functions/strings.php
images/logo.jpg [new file with mode: 0644]
images/om_webmail.gif [deleted file]

index 476ff3b32e9d988555fa0ff40319c22859e888f3..a2d46bff374810ac8879b1b4a80a1aac92f30129 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,14 @@
-Version 0.1.2  -- 
-----------------------------------
+Version 0.2 -- January 02, 2000
+-------------------------------
+- Attachment support (better MIME support in general)
+
+
+Version 0.1.2  -- December 20, 1999
+-----------------------------------
 - Date translation to local time
+- Rewrote folder fetching code universally
+- Added attachment detection (no downloads yet)
+- Fixed many minor bugs that were reported
 
 Version 0.1.1  -- December 16, 1999
 -----------------------------------
index 77fa88fe71dce0815d9525254cb2c2373b4c0d00..640e0268ca93b7440333c1cf47d0f07c42744f6d 100644 (file)
@@ -1,13 +1,13 @@
 <?
 //  Organization's logo picture (blank if none)
-    $org_logo = "../images/om_webmail.gif";
+    $org_logo = "../images/logo.jpg";
 
 //  Organization's name
-    $org_name = "Operation Mobilization";
+    $org_name = "SquirrelMail";
 
 //  Webmail Title
 //  This is the title that goes at the top of the browser window
-    $org_title = "OM-USA WebMail";
+    $org_title = "SquirrelMail $version";
 
 //  The server that your imap server is on
     $imapServerAddress = "localhost";
@@ -24,7 +24,9 @@
     $smtpPort = 25;
 
 //  This is displayed right after they log in
-    $motd = "  Welcome to OM's webmail system, SquirrelMail.  We are currently in beta, and have not yet released a full version of SquirrelMail.  Please feel free to look around, and please report any bugs to <A HREF=\"mailto:nathan@usa.om.org\">Nathan</A> or <A HREF=\"mailto:luke@usa.om.org\">Luke</A>.";
+    $motd = "";
+    $motd .= "You are using SquirrelMail's web-based email client.  If you run into any bugs or have ";
+    $motd .= "suggestions, please report them to our <A HREF=\"mailto:squirrelmail-list@sourceforge.net\">mailing list</A>";
 
 //  Customizable colors
 //     You can define your own theme and put it in this directory.  You must
index 27f0bdce2f70a0fdfabb2a64249857ac9bc51ca5..0c8e28c7b6be95fbd83a1a721a10257477d7ef9a 100644 (file)
@@ -4,16 +4,16 @@
 
        These are tan colors
     **/
-   $color[0]   = "9F8666"; // Light Gray
+   $color[0]   = "B3B3B3"; // Light Gray
    $color[1]   = "800000"; // Red
    $color[2]   = "CC0000"; // Light Red
-   $color[3]   = "B79F7D"; // Left Background
-   $color[4]   = "D7BB93"; // Background
+   $color[3]   = "006666"; // Left Background
+   $color[4]   = "FFFFFF"; // Background
    $color[5]   = "FFFFCC"; // Light Yellow
    $color[6]   = "000000"; // Left Text
-   $color[7]   = "774712"; // Link
+   $color[7]   = "0000CC"; // Link
    $color[8]   = "000000"; // Text
-   $color[9]   = "8B6E50"; // Darker light gray
+   $color[9]   = "999999"; // Darker light gray
    $color[10]  = "666666"; // Darker light gray
    $color[11]  = "770000"; // Special folder color
 ?>
index e798fad03cb19602735191113bd4f38686db2814..815855702d2c276939ee63907258e78893d6e335 100644 (file)
@@ -24,8 +24,7 @@
       echo "         <FONT FACE=\"Arial,Helvetica\"><A HREF=\"folders.php\">Folders</A></FONT>&nbsp&nbsp";
       echo "         <FONT FACE=\"Arial,Helvetica\">Options</FONT>&nbsp&nbsp";
       echo "      </TD><TD ALIGN=right WIDTH=30%>";
-      echo "         <FONT FACE=\"Arial,Helvetica\"><A HREF=\"http://adam.usa.om.org/~luke/main.php3\" TARGET=_top>Todos & Bugs</A></FONT>&nbsp&nbsp";
-      echo "         <FONT FACE=\"Arial,Helvetica\">Help!</FONT>";
+      echo "         <FONT FACE=\"Arial,Helvetica\"><A HREF=\"http://squirrelmail.sourceforge.net\" TARGET=_top>SquirrelMail</A></FONT>";
       echo "      </TD>";
       echo "</TABLE>";
   }
index 142d13a5f1f185f39367721979c7930296d5014f..66cd5de8d562f45f1d26d527163af7cb19056b61 100644 (file)
@@ -78,5 +78,5 @@
    }
 
    /* SquirrelMail version number -- DO NOT CHANGE */
-   $version = "0.1.2";
+   $version = "0.2";
 ?>
diff --git a/images/logo.jpg b/images/logo.jpg
new file mode 100644 (file)
index 0000000..5d004c4
Binary files /dev/null and b/images/logo.jpg differ
diff --git a/images/om_webmail.gif b/images/om_webmail.gif
deleted file mode 100644 (file)
index be940c7..0000000
Binary files a/images/om_webmail.gif and /dev/null differ