a4a5cde4511576ad5d01b0fcb6074aecd34eeee8
[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 $imapPort = 143;
11
12 $smtpServerAddress = "adam.usa.om.org";
13 $smtpPort = 25;
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
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
26 /* SquirrelMail version number -- DO NOT CHANGE */
27 $version = "0.0.1";
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.
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".
42 */
43
44 $move_to_trash = true;
45 $trash_folder = "INBOX.Trash";
46 $auto_expunge = true;
47
48 /* Special Folders are folders that can't be manipulated like normal user created
49 folders can. A couple of examples would be "INBOX.Trash", "INBOX.Drafts". We have
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.
52 */
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";
58 ?>