5c0a933e063a1d29e9920179deafbc31e0b47c67
[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 // Webmail Title
9 // This is the title that goes at the top of the browser window
10 $org_title = "OM-USA WebMail";
11
12 // The server that your imap server is on
13 $imapServerAddress = "adam.usa.om.org";
14 $imapPort = 143;
15
16 // The domain where your email address is.
17 // Example: in "luke@usa.om.org", usa.om.org is the domain.
18 // this is for all the messages sent out. Reply address
19 // is generated by $username@$domain
20 $domain = "usa.om.org";
21
22 // Your SMTP server and port number (usually the same as the IMAP server)
23 $smtpServerAddress = "adam.usa.om.org";
24 $smtpPort = 25;
25
26 // This is displayed right after they log in
27 $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>.";
28
29 // Customizable colors
30 /*
31 // Standard Colors
32 $color[0] = "DCDCDC"; // Light Gray
33 $color[1] = "800000"; // Red
34 $color[2] = "CC0000"; // Light Red
35 $color[3] = "A0B8C8"; // Left Background
36 $color[4] = "FFFFFF"; // Background
37 $color[5] = "FFFFCC"; // Light Yellow
38 $color[6] = "000000"; // Left Text
39 $color[7] = "0000CC"; // Link
40 $color[8] = "000000"; // Text
41 $color[9] = "ABABAB"; // Darker light gray
42 $color[10] = "666666"; // Darker light gray
43 $color[11] = "770000"; // Special folder color
44 */
45 // TAN THEME
46 $color[0] = "C7B289"; // Light Gray
47 $color[1] = "800000"; // Red
48 $color[2] = "CC0000"; // Light Red
49 $color[3] = "B79878"; // Left Background
50 $color[4] = "FBE1BC"; // Background
51 $color[5] = "FFFFCC"; // Light Yellow
52 $color[6] = "000000"; // Left Text
53 $color[7] = "AF5523"; // Link
54 $color[8] = "000000"; // Text
55 $color[9] = "ABABAB"; // Darker light gray
56 $color[10] = "666666"; // Darker light gray
57 $color[11] = "770000"; // Special folder color
58
59
60 // Whether or not to use $color[11] for special folders. If not, special
61 // folders will be the same color as the other folders
62 $use_special_folder_color = true;
63
64 /* The following are related to deleting messages.
65 * $move_to_trash
66 * - if this is set to "true", when "delete" is pressed, it will attempt
67 * to move the selected messages to the folder named $trash_folder. If
68 * it's set to "false", we won't even attempt to move the messages, just
69 * delete them.
70 * $trash_folder
71 * - This is the path to the default trash folder. For Cyrus IMAP, it
72 * would be "INBOX.Trash", but for UW it would be "Trash". We need the
73 * full path name here.
74 * $auto_expunge
75 * - If this is true, when a message is moved or copied, the source mailbox
76 * will get expunged, removing all messages marked "Deleted".
77 */
78
79 $move_to_trash = true;
80 $trash_folder = "INBOX.Trash";
81 $auto_expunge = true;
82
83 // Special Folders are folders that can't be manipulated like normal user created
84 // folders can. A couple of examples would be "INBOX.Trash", "INBOX.Drafts". We have
85 // them set to Netscape's default mailboxes, but this obviously can be changed.
86 // To add one, just add a new number to the array.
87
88 $special_folders[0] = "INBOX"; // The first one has to be the inbox (whatever the name is)
89 $special_folders[1] = $trash_folder;
90 $special_folders[2] = "INBOX.Sent";
91 $special_folders[3] = "INBOX.Drafts";
92 $special_folders[4] = "INBOX.Templates";
93
94 // Whether or not to list the special folders first (true/false)
95 $list_special_folders_first = true;
96
97 // Are all your folders subfolders of INBOX (i.e. cyrus IMAP server)
98 // If you are not sure, set it to false.
99 $default_sub_of_inbox = true;
100
101 // Some IMAP daemons (UW) handle folders weird. They only allow a folder to contain
102 // either messages or other folders, not both at the same time. This option controls
103 // whether or not to display an option during folder creation. The option toggles
104 // which type of folder it should be.
105 //
106 // If this option confuses you, make it "true". You can't hurt anything if it's true,
107 // but some servers will respond weird if it's false. (Cyrus works fine whether it's
108 // true OR false).
109 $show_contain_subfolders_option = false;
110
111 // Whether or not to use META tags and automatically forward after an action has
112 // been completed.
113 $auto_forward = true;
114 ?>