13e0c983ba491c6a63fb410019a4c6511d66bde9
[squirrelmail.git] / config / config_default.php
1 <?php
2 //
3 // BEFORE EDITING THIS FILE!
4 //
5 // Don't edit this file directly. Copy it to config.php before you
6 // edit it. However, it is best to use the configuration script
7 // conf.pl if at all possible. That is the easiest and cleanest way
8 // to configure.
9 //
10
11 // don't change
12 $config_version = "x51";
13
14 // Organization's logo picture (blank if none)
15 $org_logo = "../images/sm_logo.jpg";
16
17 // Organization's name
18 $org_name = "SquirrelMail";
19
20 // Webmail Title
21 // This is the title that goes at the top of the browser window
22 $org_title = "SquirrelMail $version";
23
24 // The server that your imap server is on
25 $imapServerAddress = "localhost";
26 $imapPort = 143;
27
28 // The domain where your email address is.
29 // Example: in "luke@usa.om.org", usa.om.org is the domain.
30 // this is for all the messages sent out. Reply address
31 // is generated by $username@$domain
32 $domain = "mydomain.com";
33
34 // Your SMTP server and port number (usually the same as the IMAP server)
35 $smtpServerAddress = "localhost";
36 $smtpPort = 25;
37
38 // Uncomment this if you want to deliver locally using sendmail instead
39 // of connecting to a SMTP-server
40 // $useSendmail = true;
41 // $sendmail_path = "/usr/sbin/sendmail";
42
43 // This is displayed right after they log in
44 $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>";
45
46 // Whether or not to use a special color for special folders. If not, special
47 // folders will be the same color as the other folders
48 $use_special_folder_color = true;
49
50 // The type of IMAP server you are running
51 // Valid type are the following (case is important).
52 //
53 // courier
54 // cyrus
55 // exchange
56 // uw
57 $imap_server_type = "cyrus";
58
59 // Many servers store mail in your home directory. With this, they
60 // store them in a subdirectory: mail/ or Mail/, etc. If your
61 // server does this, please set this to what the default mail folder
62 // should be. This is still a user preference, so they can change
63 // it if it is different for each user.
64 //
65 // Example:
66 // $default_folder_prefix = "mail/";
67 // -- or --
68 // $default_folder_prefix = "Mail/folders/";
69 //
70 // If you do not use this, please set it to "".
71 $default_folder_prefix = "";
72 // If you do not wish to give them the option to change this, set it to false.
73 // Otherwise, if it is true, they can change the folder prefix to be anything.
74 $show_prefix_option = false;
75
76 // The following are related to deleting messages.
77 // $move_to_trash
78 // - if this is set to "true", when "delete" is pressed, it
79 // will attempt to move the selected messages to the folder
80 // named $trash_folder. If it's set to "false", we won't even
81 // attempt to move the messages, just delete them.
82 // $trash_folder
83 // - This is the path to the default trash folder. For Cyrus
84 // IMAP, it would be "INBOX.Trash", but for UW it would be
85 // "Trash". We need the full path name here.
86 // $auto_expunge
87 // - If this is true, when a message is moved or copied, the
88 // source mailbox will get expunged, removing all messages
89 // marked "Deleted".
90 // $sent_folder
91 // - This is the path to where Sent messages will be stored.
92
93 $default_move_to_trash = true;
94 $default_move_to_sent = true;
95 $trash_folder = "INBOX.Trash";
96 $auto_expunge = true;
97 $sent_folder = "INBOX.Sent";
98
99 // Special Folders are folders that can't be manipulated like normal
100 // user created folders can. A couple of examples would be
101 // "INBOX.Trash", "INBOX.Drafts". We have them set to Netscape's
102 // default mailboxes, but this obviously can be changed. To add one,
103 // just add a new number to the array.
104
105 $special_folders[0] = "INBOX"; // The first one has to be the inbox (whatever the name is)
106 $special_folders[1] = $trash_folder;
107 $special_folders[2] = $sent_folder;
108 $special_folders[3] = "INBOX.Drafts";
109 $special_folders[4] = "INBOX.Templates";
110
111 // Whether or not to list the special folders first (true/false)
112 $list_special_folders_first = true;
113
114 // Are all your folders subfolders of INBOX (i.e. cyrus IMAP server)
115 // If you are not sure, set it to false.
116 $default_sub_of_inbox = true;
117
118 // Some IMAP daemons (UW) handle folders weird. They only allow a
119 // folder to contain either messages or other folders, not both at
120 // the same time. This option controls whether or not to display an
121 // option during folder creation. The option toggles which type of
122 // folder it should be.
123 //
124 // If this option confuses you, make it "true". You can't hurt
125 // anything if it's true, but some servers will respond weird if it's
126 // false. (Cyrus works fine whether it's true OR false).
127
128 $show_contain_subfolders_option = false;
129
130 // This option controls what character set is used when sending mail
131 // and when sending HTMl to the browser. Do not set this to US-ASCII,
132 // use ISO-8859-1 instead. For cyrillic it is best to use KOI8-R,
133 // since this implementation is faster than the alternatives.
134 $default_charset = "iso-8859-1";
135
136 // Path to the data/ directory
137 // It is a possible security hole to have a writable directory
138 // under the web server's root directory (ex: /home/httpd/html).
139 // For this reason, it is possible to put the data directory
140 // anywhere you would like. The path name can be absolute or
141 // relative (to the config directory). It doesn't matter. Here are
142 // two examples:
143 //
144 // Absolute:
145 // $data_dir = "/usr/local/squirrelmail/data/";
146 //
147 // Relative (to the config directory):
148 // $data_dir = "../data/";
149
150 $data_dir = "../data/";
151
152 // Path to directory used for storing attachments while a mail is
153 // being sent. There are a few security considerations regarding this
154 // directory:
155 // - It should have the permission 733 (rwx-wx-wx) to make it
156 // impossible for a random person with access to the webserver to
157 // list files in this directory. Confidential data might be laying
158 // around there
159 // - Since the webserver is not able to list the files in the content
160 // is also impossible for the webserver to delete files lying around
161 // there for too long.
162 // - It should probably be another directory than data_dir.
163
164 $attachment_dir = $data_dir;
165
166 // This is the default size of the left folder list. Default is 200,
167 // but you can set it to whatever you wish.
168
169 $default_left_size = 200;
170
171 // Themes
172 // You can define your own theme and put it in this directory. You must
173 // call it as the example below. You can name the theme whatever you
174 // want. For an example of a theme, see the ones included in the config
175 // directory.
176 //
177 // You can download themes from http://squirrelmail.sourceforge.net/index.php3?page=10
178 //
179 // To add a new theme to the options that users can choose from, just add
180 // a new number to the array at the bottom, and follow the pattern.
181
182 // The first one HAS to be here, and is your system's default theme.
183 // It can be any theme you want
184 $theme[0]["PATH"] = "../themes/default_theme.php";
185 $theme[0]["NAME"] = "Default";
186
187 $theme[1]["PATH"] = "../themes/plain_blue_theme.php";
188 $theme[1]["NAME"] = "Plain Blue";
189
190 $theme[2]["PATH"] = "../themes/sandstorm_theme.php";
191 $theme[2]["NAME"] = "Sand Storm";
192
193 $theme[3]["PATH"] = "../themes/deepocean_theme.php";
194 $theme[3]["NAME"] = "Deep Ocean";
195
196 $theme[4]["PATH"] = "../themes/slashdot_theme.php";
197 $theme[4]["NAME"] = "Slashdot";
198
199 $theme[5]["PATH"] = "../themes/purple_theme.php";
200 $theme[5]["NAME"] = "Purple";
201
202 $theme[6]["PATH"] = "../themes/forest_theme.php";
203 $theme[6]["NAME"] = "Forest";
204
205 $theme[7]["PATH"] = "../themes/ice_theme.php";
206 $theme[7]["NAME"] = "Ice";
207
208 $theme[8]["PATH"] = "../themes/seaspray_theme.php";
209 $theme[8]["NAME"] = "Sea Spray";
210
211 $theme[9]["PATH"] = "../themes/bluesteel_theme.php";
212 $theme[9]["NAME"] = "Blue Steel";
213
214 $theme[10]["PATH"] = "../themes/dark_grey_theme.php";
215 $theme[10]["NAME"] = "Dark Grey";
216
217 $theme[11]["PATH"] = "../themes/high_contrast_theme.php";
218 $theme[11]["NAME"] = "High Contrast";
219
220 // LDAP server(s)
221 //
222 // Array of arrays with LDAP server parameters. See
223 // functions/abook_ldap_server.php for a list of possible
224 // parameters
225
226 $ldap_server[0] = Array(
227 "host" => "memberdir.netscape.com",
228 "name" => "Netcenter Member Directory",
229 "base" => "ou=member_directory,o=netcenter.com");
230
231 $ldap_server[1] = Array(
232 "host" => "ldap.bigfoot.com",
233 "name" => "Bigfoot Directory",
234 "base" => "",
235 "charset" => "iso8859-1");
236
237 // you have an option to chose between javascript or html version of
238 // address book searching.
239 // true = javascript
240 // false = html
241
242 $default_use_javascript_addr_book = false;
243
244 // these next two options set the defaults for the way that the users see
245 // their folder list.
246 // $default_unseen_notify specifies whether or not the users will see
247 // the number of unseen in each folder by default
248 // and alsy which folders to do this to.
249 // 1=none, 2=inbox, 3=all
250 // $default_unseen_type specifies the type of notification to give the
251 // users by default.
252 // 1=(4), 2=(4,25)
253
254 $default_unseen_notify = 2;
255 $default_unseen_type = 1;
256 ?>