Fixed some MAJOR bugs
[squirrelmail.git] / config / config.php
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
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
22 /* SquirrelMail version number -- DO NOT CHANGE */
23 $version = "0.0.1";
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.
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".
38 */
39
40 $move_to_trash = true;
41 $trash_folder = "INBOX.Trash";
42 $auto_expunge = true;
43
44 /* Special Folders are folders that can't be manipulated like normal user created
45 folders can. A couple of examples would be "INBOX.Trash", "INBOX.Drafts". We have
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.
48 */
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";
54
55 /** This is the max chars before a line wrap on plain text messages */
56 $wrap_max = 80;
57 ?>