updated SquirrelMail logo
[squirrelmail.git] / config / config.php
... / ...
CommitLineData
1<?
2// Organization's logo picture (blank if none)
3 $org_logo = "../images/logo.gif";
4
5// Organization's name
6 $org_name = "SquirrelMail";
7
8// Webmail Title
9// This is the title that goes at the top of the browser window
10 $org_title = "SquirrelMail $version";
11
12// The server that your imap server is on
13 $imapServerAddress = "localhost";
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 = "localhost";
21
22// Your SMTP server and port number (usually the same as the IMAP server)
23 $smtpServerAddress = "localhost";
24 $smtpPort = 25;
25
26// This is displayed right after they log in
27 $motd = "";
28 $motd .= "You are using SquirrelMail's web-based email client. If you run into any bugs or have ";
29 $motd .= "suggestions, please report them to our <A HREF=\"mailto:squirrelmail-list@sourceforge.net\">mailing list</A>";
30
31// Customizable colors
32// You can define your own theme and put it in this directory. You must
33// call it as the example below. You can name the theme whatever you
34// want. For an example of a theme, see the ones included in the config
35// directory.
36// Example: require("../config/default_theme.php");
37 require("../config/tan_theme.php");
38
39// Whether or not to use $color[11] for special folders. If not, special
40// folders will be the same color as the other folders
41 $use_special_folder_color = true;
42
43/* The following are related to deleting messages.
44 * $move_to_trash
45 * - if this is set to "true", when "delete" is pressed, it will attempt
46 * to move the selected messages to the folder named $trash_folder. If
47 * it's set to "false", we won't even attempt to move the messages, just
48 * delete them.
49 * $trash_folder
50 * - This is the path to the default trash folder. For Cyrus IMAP, it
51 * would be "INBOX.Trash", but for UW it would be "Trash". We need the
52 * full path name here.
53 * $auto_expunge
54 * - If this is true, when a message is moved or copied, the source mailbox
55 * will get expunged, removing all messages marked "Deleted".
56 */
57
58 $move_to_trash = true;
59 $trash_folder = "INBOX.Trash";
60 $auto_expunge = true;
61
62// Special Folders are folders that can't be manipulated like normal user created
63// folders can. A couple of examples would be "INBOX.Trash", "INBOX.Drafts". We have
64// them set to Netscape's default mailboxes, but this obviously can be changed.
65// To add one, just add a new number to the array.
66
67 $special_folders[0] = "INBOX"; // The first one has to be the inbox (whatever the name is)
68 $special_folders[1] = $trash_folder;
69 $special_folders[2] = "INBOX.Sent";
70 $special_folders[3] = "INBOX.Drafts";
71 $special_folders[4] = "INBOX.Templates";
72
73// Whether or not to list the special folders first (true/false)
74 $list_special_folders_first = true;
75
76// Are all your folders subfolders of INBOX (i.e. cyrus IMAP server)
77// If you are not sure, set it to false.
78 $default_sub_of_inbox = true;
79
80// Some IMAP daemons (UW) handle folders weird. They only allow a folder to contain
81// either messages or other folders, not both at the same time. This option controls
82// whether or not to display an option during folder creation. The option toggles
83// which type of folder it should be.
84//
85// If this option confuses you, make it "true". You can't hurt anything if it's true,
86// but some servers will respond weird if it's false. (Cyrus works fine whether it's
87// true OR false).
88 $show_contain_subfolders_option = false;
89
90// Whether or not to use META tags and automatically forward after an action has
91// been completed.
92 $auto_forward = true;
93?>