dfbb4e3d8b49f5124744ef6fe185a241a68326bf
[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 /* The domain where your email address is.
13 * EX: in "luke@usa.om.org", usa.om.org is the domain.
14 * this is for all the messages sent out. Reply address
15 * is generated by $username@$domain
16 */
17 $domain = "usa.om.org";
18
19 /* Your SMTP server and port number (usually the same as the IMAP server) */
20 $smtpServerAddress = "adam.usa.om.org";
21 $smtpPort = 25;
22
23 /* This is displayed right after they log in */
24 $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>.";
25
26 /* Customizable colors */
27 $color_lgray = "DCDCDC";
28 $color_red = "800000";
29 $color_light_red = "FF0000";
30 $color_left_bg = "A0B8C8";
31 $color_bground = "FFFFFF";
32 $color_light_yel = "FFFFCC";
33
34 /* SquirrelMail version number -- DO NOT CHANGE */
35 $version = "0.0.1";
36
37 /* The following are related to deleting messages.
38 * $move_to_trash
39 * - if this is set to "true", when "delete" is pressed, it will attempt
40 * to move the selected messages to the folder named $trash_folder. If
41 * it's set to "false", we won't even attempt to move the messages, just
42 * delete them.
43 * $trash_folder
44 * - This is the path to the default trash folder. For Cyrus IMAP, it
45 * would be "INBOX.Trash", but for UW it would be "Trash". We need the
46 * full path name here.
47 * $auto_expunge
48 * - If this is true, when a message is moved or copied, the source mailbox
49 * will get expunged, removing all messages marked "Deleted".
50 */
51
52 $move_to_trash = true;
53 $trash_folder = "INBOX.Trash";
54 $auto_expunge = true;
55
56 /* Special Folders are folders that can't be manipulated like normal user created
57 folders can. A couple of examples would be "INBOX.Trash", "INBOX.Drafts". We have
58 them set to Netscape's default mailboxes, but this obviously can be changed.
59 To add one, just add a new number to the array.
60 */
61 $special_folders[0] = "INBOX";
62 $special_folders[1] = $trash_folder;
63 $special_folders[2] = "INBOX.Sent";
64 $special_folders[3] = "INBOX.Drafts";
65 $special_folders[4] = "INBOX.Templates";
66 ?>