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