* Word Wrapping works good
[squirrelmail.git] / config / config.php
CommitLineData
bb839564 1<?
2/* Organization's logo picture (blank if none) */
3$org_logo = "../images/om_webmail.gif";
4
5/* Organization's name */
6$org_name = "Operation Mobilization";
7
8/* The server that your imap server is on */
9$imapServerAddress = "adam.usa.om.org";
10
11/* This is displayed right after they log in */
12$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>.";
13
faf8f4a2 14/* Customizable colors */
15$color_lgray = "DCDCDC";
16$color_red = "800000";
17$color_light_red = "FF0000";
18$color_left_bg = "A0B8C8";
19$color_bground = "FFFFFF";
20$color_light_yel = "FFFFCC";
21
aa4c3749 22/* SquirrelMail version number -- DO NOT CHANGE */
bb839564 23$version = "0.0.1";
aa4c3749 24
25/* The following are related to deleting messages.
26 * $move_to_trash
27 * - if this is set to "true", when "delete" is pressed, it will attempt
28 * to move the selected messages to the folder named $trash_folder. If
29 * it's set to "false", we won't even attempt to move the messages, just
30 * delete them.
31 * $trash_folder
32 * - This is the path to the default trash folder. For Cyrus IMAP, it
33 * would be "INBOX.Trash", but for UW it would be "Trash". We need the
34 * full path name here.
61a4ac35 35 * $auto_expunge
36 * - If this is true, when a message is moved or copied, the source mailbox
37 * will get expunged, removing all messages marked "Deleted".
aa4c3749 38 */
39
7c1b84d9 40$move_to_trash = true;
aa4c3749 41$trash_folder = "INBOX.Trash";
61a4ac35 42$auto_expunge = true;
aa4c3749 43
60573cd9 44/* Special Folders are folders that can't be manipulated like normal user created
e457e585 45 folders can. A couple of examples would be "INBOX.Trash", "INBOX.Drafts". We have
60573cd9 46 them set to Netscape's default mailboxes, but this obviously can be changed.
47 To add one, just add a new number to the array.
e457e585 48*/
ad6787f0 49$special_folders[0] = "INBOX";
50$special_folders[1] = $trash_folder;
51$special_folders[2] = "INBOX.Sent";
52$special_folders[3] = "INBOX.Drafts";
53$special_folders[4] = "INBOX.Templates";
bb839564 54?>