clicking on email addr sends you to compose screen
[squirrelmail.git] / config / config_default.php
CommitLineData
baf93783 1<?
2// Organization's logo picture (blank if none)
3 $org_logo = "../images/sm_logo.jpg";
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 = "mydomain.com";
21
22// Your SMTP server and port number (usually the same as the IMAP server)
23 $smtpServerAddress = "localhost";
24 $smtpPort = 25;
25
26// Uncomment this if you want to deliver locally using sendmail instead
27// of connecting to a SMTP-server
28// $useSendmail = true;
29// $sendmail_path = "/usr/sbin/sendmail";
30
31// This is displayed right after they log in
32 $motd = "You are using SquirrelMail's web-based email client. If you run into any bugs or have suggestions, please report them to our <A HREF=\"mailto:squirrelmail-list@sourceforge.net\">mailing list</A>";
33
baf93783 34// Whether or not to use a special color for special folders. If not, special
35// folders will be the same color as the other folders
36 $use_special_folder_color = true;
37
5479d709 38// Many servers store mail in your home directory. With this, they
cf85d665 39// store them in a subdirectory: mail/ or Mail/, etc. If your
5479d709 40// server does this, please set this to what the default mail folder
41// should be. This is still a user preference, so they can change
42// it if it is different for each user.
43//
44// Example:
cf85d665 45// $default_folder_prefix = "mail/";
5479d709 46// -- or --
cf85d665 47// $default_folder_prefix = "Mail/folders/";
5479d709 48//
49// If you do not use this, please set it to "".
cf85d665 50 $default_folder_prefix = "";
51// If you do not wish to give them the option to change this, set it to false.
52// Otherwise, if it is true, they can change the folder prefix to be anything.
53 $show_prefix_option = false;
5479d709 54
ca1f4a68 55// The following are related to deleting messages.
56// $move_to_trash
57// - if this is set to "true", when "delete" is pressed, it
58// will attempt to move the selected messages to the folder
59// named $trash_folder. If it's set to "false", we won't even
60// attempt to move the messages, just delete them.
61// $trash_folder
62// - This is the path to the default trash folder. For Cyrus
63// IMAP, it would be "INBOX.Trash", but for UW it would be
64// "Trash". We need the full path name here.
65// $auto_expunge
66// - If this is true, when a message is moved or copied, the
67// source mailbox will get expunged, removing all messages
68// marked "Deleted".
e5370d43 69// $sent_folder
70// - This is the path to where Sent messages will be stored.
baf93783 71
72 $default_move_to_trash = true;
73 $trash_folder = "INBOX.Trash";
74 $auto_expunge = true;
e5370d43 75 $sent_folder = "INBOX.Sent";
baf93783 76
ca1f4a68 77// Special Folders are folders that can't be manipulated like normal
78// user created folders can. A couple of examples would be
79// "INBOX.Trash", "INBOX.Drafts". We have them set to Netscape's
80// default mailboxes, but this obviously can be changed. To add one,
81// just add a new number to the array.
baf93783 82
83 $special_folders[0] = "INBOX"; // The first one has to be the inbox (whatever the name is)
84 $special_folders[1] = $trash_folder;
a3886f39 85 $special_folders[2] = $sent_folder;
baf93783 86 $special_folders[3] = "INBOX.Drafts";
87 $special_folders[4] = "INBOX.Templates";
88
89// Whether or not to list the special folders first (true/false)
90 $list_special_folders_first = true;
91
92// Are all your folders subfolders of INBOX (i.e. cyrus IMAP server)
93// If you are not sure, set it to false.
94 $default_sub_of_inbox = true;
95
ca1f4a68 96// Some IMAP daemons (UW) handle folders weird. They only allow a
97// folder to contain either messages or other folders, not both at
98// the same time. This option controls whether or not to display an
99// option during folder creation. The option toggles which type of
100// folder it should be.
baf93783 101//
ca1f4a68 102// If this option confuses you, make it "true". You can't hurt
103// anything if it's true, but some servers will respond weird if it's
104// false. (Cyrus works fine whether it's true OR false).
105
baf93783 106 $show_contain_subfolders_option = false;
107
17ce8467 108// This option controls what character set is used when sending mail
109// and when sending HTMl to the browser. Do not set this to US-ASCII,
110// use ISO-8859-1 instead. For cyrillic it is best to use KOI8-R,
111// since this implementation is faster than the alternatives.
112 $default_charset = "iso-8859-1";
113
ca1f4a68 114// Whether or not to use META tags and automatically forward after an
115// action has been completed.
baf93783 116 $auto_forward = true;
117
118// Path to the data/ directory
ca1f4a68 119// It is a possible security hole to have a writable directory
120// under the web server's root directory (ex: /home/httpd/html).
121// For this reason, it is possible to put the data directory
122// anywhere you would like. The path name can be absolute or
123// relative (to the config directory). It doesn't matter. Here are
124// two examples:
baf93783 125//
126// Absolute:
127// $data_dir = "/usr/local/squirrelmail/data/";
128//
129// Relative (to the config directory):
130// $data_dir = "../data/";
131
132 $data_dir = "../data/";
ca1f4a68 133
134// Path to directory used for storing attachments while a mail is
135// being sent. There are a few security considerations regarding this
136// directory:
137// - It should have the permission 733 (rwx-wx-wx) to make it
138// impossible for a random person with access to the webserver to
139// list files in this directory. Confidential data might be laying
140// around there
141// - Since the webserver is not able to list the files in the content
142// is also impossible for the webserver to delete files lying around
143// there for too long.
144// - It should probably be another directory than data_dir.
145
4df48d80 146 $attachment_dir = $data_dir;
2848c630 147
148// This is the default size of the left folder list. Default is 200,
149// but you can set it to whatever you wish.
150
151 $default_left_size = 200;
17ce8467 152
153// Themes
154// You can define your own theme and put it in this directory. You must
155// call it as the example below. You can name the theme whatever you
156// want. For an example of a theme, see the ones included in the config
157// directory.
158//
159// You can download themes from http://squirrelmail.sourceforge.net/index.php3?page=10
160//
161// To add a new theme to the options that users can choose from, just add
162// a new number to the array at the bottom, and follow the pattern.
163
164 // The first one HAS to be here, and is your system's default theme.
165 // It can be any theme you want
166 $theme[0]["PATH"] = "../config/default_theme.php";
167 $theme[0]["NAME"] = "Default";
168
169 $theme[1]["PATH"] = "../config/sandstorm_theme.php";
170 $theme[1]["NAME"] = "Sand Storm";
171
172 $theme[2]["PATH"] = "../config/deepocean_theme.php";
173 $theme[2]["NAME"] = "Deep Ocean";
174
175 $theme[3]["PATH"] = "../config/slashdot_theme.php";
176 $theme[3]["NAME"] = "Slashdot";
177
178 $theme[4]["PATH"] = "../config/purple_theme.php";
179 $theme[4]["NAME"] = "Purple";
180
181 $theme[5]["PATH"] = "../config/forest_theme.php";
182 $theme[5]["NAME"] = "Forest";
183
184 $theme[6]["PATH"] = "../config/ice_theme.php";
185 $theme[6]["NAME"] = "Ice";
186
187 $theme[7]["PATH"] = "../config/seaspray_theme.php";
188 $theme[7]["NAME"] = "Sea Spray";
189
59eff34d 190
191// LDAP server(s)
192//
193// Array of arrays with LDAP server parameters. See
194// functions/abook_ldap_server.php for a list of possible
195// parameters
196
197 $ldap_server[0] = Array("host" => "memberdir.netscape.com",
198 "name" => "Netcenter Member Directory",
199 "base" => "ou=member_directory,o=netcenter.com");
200
201 $ldap_server[1] = Array("host" => "ldap.bigfoot.com",
202 "name" => "Bigfoot Directory",
203 "base" => "",
204 "charset" => "iso8859-1");
205
baf93783 206?>