Added MUCH better composing
[squirrelmail.git] / config / config.php
index 99b1fa8cb02590d9328d957fd8a390bd01aa530c..a4a5cde4511576ad5d01b0fcb6074aecd34eeee8 100644 (file)
@@ -7,10 +7,22 @@ $org_name = "Operation Mobilization";
 
 /* The server that your imap server is on */
 $imapServerAddress = "adam.usa.om.org";
+$imapPort = 143;
+
+$smtpServerAddress = "adam.usa.om.org";
+$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>.";
 
+/* Customizable colors */
+$color_lgray     = "DCDCDC";
+$color_red       = "800000";
+$color_light_red = "FF0000";
+$color_left_bg   = "A0B8C8";
+$color_bground   = "FFFFFF";
+$color_light_yel = "FFFFCC";
+
 /* SquirrelMail version number -- DO NOT CHANGE */
 $version = "0.0.1";
 
@@ -33,4 +45,14 @@ $move_to_trash = true;
 $trash_folder = "INBOX.Trash";
 $auto_expunge = true;
 
+/* Special Folders are folders that can't be manipulated like normal user created
+   folders can.  A couple of examples would be "INBOX.Trash", "INBOX.Drafts".  We have
+   them set to Netscape's default mailboxes, but this obviously can be changed.
+   To add one, just add a new number to the array.
+*/
+$special_folders[0] = "INBOX";
+$special_folders[1] = $trash_folder;
+$special_folders[2] = "INBOX.Sent";
+$special_folders[3] = "INBOX.Drafts";
+$special_folders[4] = "INBOX.Templates";
 ?>