59177427 |
1 | <?php |
390372b4 |
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 | |
4011c3ca |
11 | // don't change |
e2ef6f4b |
12 | $config_version = "x53"; |
390372b4 |
13 | |
baf93783 |
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 |
a37f3771 |
44 | $motd = ""; |
baf93783 |
45 | |
baf93783 |
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 | |
51457ed2 |
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 | |
5479d709 |
59 | // Many servers store mail in your home directory. With this, they |
cf85d665 |
60 | // store them in a subdirectory: mail/ or Mail/, etc. If your |
5479d709 |
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: |
cf85d665 |
66 | // $default_folder_prefix = "mail/"; |
5479d709 |
67 | // -- or -- |
cf85d665 |
68 | // $default_folder_prefix = "Mail/folders/"; |
5479d709 |
69 | // |
70 | // If you do not use this, please set it to "". |
cf85d665 |
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; |
5479d709 |
75 | |
ca1f4a68 |
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". |
e5370d43 |
90 | // $sent_folder |
91 | // - This is the path to where Sent messages will be stored. |
baf93783 |
92 | |
93 | $default_move_to_trash = true; |
2f287147 |
94 | $default_move_to_sent = true; |
baf93783 |
95 | $trash_folder = "INBOX.Trash"; |
96 | $auto_expunge = true; |
e5370d43 |
97 | $sent_folder = "INBOX.Sent"; |
baf93783 |
98 | |
ca1f4a68 |
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. |
baf93783 |
104 | |
105 | $special_folders[0] = "INBOX"; // The first one has to be the inbox (whatever the name is) |
106 | $special_folders[1] = $trash_folder; |
a3886f39 |
107 | $special_folders[2] = $sent_folder; |
baf93783 |
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 | |
ca1f4a68 |
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. |
baf93783 |
123 | // |
ca1f4a68 |
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 | |
baf93783 |
128 | $show_contain_subfolders_option = false; |
129 | |
17ce8467 |
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 | |
baf93783 |
136 | // Path to the data/ directory |
ca1f4a68 |
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: |
baf93783 |
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/"; |
ca1f4a68 |
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 | |
4df48d80 |
164 | $attachment_dir = $data_dir; |
2848c630 |
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; |
17ce8467 |
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 | // |
17ce8467 |
177 | // To add a new theme to the options that users can choose from, just add |
178 | // a new number to the array at the bottom, and follow the pattern. |
179 | |
180 | // The first one HAS to be here, and is your system's default theme. |
181 | // It can be any theme you want |
390372b4 |
182 | $theme[0]["PATH"] = "../themes/default_theme.php"; |
17ce8467 |
183 | $theme[0]["NAME"] = "Default"; |
184 | |
390372b4 |
185 | $theme[1]["PATH"] = "../themes/plain_blue_theme.php"; |
6170c5b6 |
186 | $theme[1]["NAME"] = "Plain Blue"; |
17ce8467 |
187 | |
390372b4 |
188 | $theme[2]["PATH"] = "../themes/sandstorm_theme.php"; |
6170c5b6 |
189 | $theme[2]["NAME"] = "Sand Storm"; |
17ce8467 |
190 | |
390372b4 |
191 | $theme[3]["PATH"] = "../themes/deepocean_theme.php"; |
6170c5b6 |
192 | $theme[3]["NAME"] = "Deep Ocean"; |
17ce8467 |
193 | |
390372b4 |
194 | $theme[4]["PATH"] = "../themes/slashdot_theme.php"; |
6170c5b6 |
195 | $theme[4]["NAME"] = "Slashdot"; |
17ce8467 |
196 | |
390372b4 |
197 | $theme[5]["PATH"] = "../themes/purple_theme.php"; |
6170c5b6 |
198 | $theme[5]["NAME"] = "Purple"; |
17ce8467 |
199 | |
390372b4 |
200 | $theme[6]["PATH"] = "../themes/forest_theme.php"; |
6170c5b6 |
201 | $theme[6]["NAME"] = "Forest"; |
17ce8467 |
202 | |
390372b4 |
203 | $theme[7]["PATH"] = "../themes/ice_theme.php"; |
6170c5b6 |
204 | $theme[7]["NAME"] = "Ice"; |
17ce8467 |
205 | |
390372b4 |
206 | $theme[8]["PATH"] = "../themes/seaspray_theme.php"; |
6170c5b6 |
207 | $theme[8]["NAME"] = "Sea Spray"; |
a871010c |
208 | |
390372b4 |
209 | $theme[9]["PATH"] = "../themes/bluesteel_theme.php"; |
9d1c518c |
210 | $theme[9]["NAME"] = "Blue Steel"; |
59eff34d |
211 | |
390372b4 |
212 | $theme[10]["PATH"] = "../themes/dark_grey_theme.php"; |
6170c5b6 |
213 | $theme[10]["NAME"] = "Dark Grey"; |
214 | |
390372b4 |
215 | $theme[11]["PATH"] = "../themes/high_contrast_theme.php"; |
6170c5b6 |
216 | $theme[11]["NAME"] = "High Contrast"; |
24fc5dd2 |
217 | |
8af40496 |
218 | $theme[12]["PATH"] = "../themes/black_bean_burrito_theme.php"; |
219 | $theme[12]["NAME"] = "Black Bean Burrito"; |
0493a8d9 |
220 | |
944eb785 |
221 | $theme[13]["PATH"] = "../themes/servery_theme.php"; |
222 | $theme[13]["NAME"] = "Servery"; |
223 | |
6e0fa5e6 |
224 | $theme[14]["PATH"] = "../themes/maize_theme.php"; |
225 | $theme[14]["NAME"] = "Maize"; |
226 | |
227 | $theme[15]["PATH"] = "../themes/bluesnews_theme.php"; |
228 | $theme[15]["NAME"] = "BluesNews"; |
229 | |
59eff34d |
230 | // LDAP server(s) |
231 | // |
232 | // Array of arrays with LDAP server parameters. See |
233 | // functions/abook_ldap_server.php for a list of possible |
234 | // parameters |
74a7d5b0 |
235 | // |
236 | // EXAMPLE: |
237 | // |
238 | // $ldap_server[0] = Array( |
239 | // "host" => "memberdir.netscape.com", |
240 | // "name" => "Netcenter Member Directory", |
241 | // "base" => "ou=member_directory,o=netcenter.com"); |
59eff34d |
242 | |
1e0628fb |
243 | |
59eff34d |
244 | |
3806fa52 |
245 | // you have an option to chose between javascript or html version of |
246 | // address book searching. |
247 | // true = javascript |
248 | // false = html |
249 | |
250 | $default_use_javascript_addr_book = false; |
251 | |
24fc5dd2 |
252 | // these next two options set the defaults for the way that the users see |
253 | // their folder list. |
254 | // $default_unseen_notify specifies whether or not the users will see |
255 | // the number of unseen in each folder by default |
256 | // and alsy which folders to do this to. |
257 | // 1=none, 2=inbox, 3=all |
258 | // $default_unseen_type specifies the type of notification to give the |
259 | // users by default. |
260 | // 1=(4), 2=(4,25) |
261 | |
262 | $default_unseen_notify = 2; |
263 | $default_unseen_type = 1; |
baf93783 |
264 | ?> |