Folder manipulation update
[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 /* The server that your imap server is on */
9 $imapServerAddress = "adam.usa.om.org";
10
11 /* This is displayed right after they log in */
12 $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>.";
13
14 /* SquirrelMail version number -- DO NOT CHANGE */
15 $version = "0.0.1";
16
17 /* The following are related to deleting messages.
18 * $move_to_trash
19 * - if this is set to "true", when "delete" is pressed, it will attempt
20 * to move the selected messages to the folder named $trash_folder. If
21 * it's set to "false", we won't even attempt to move the messages, just
22 * delete them.
23 * $trash_folder
24 * - This is the path to the default trash folder. For Cyrus IMAP, it
25 * would be "INBOX.Trash", but for UW it would be "Trash". We need the
26 * full path name here.
27 * $auto_expunge
28 * - If this is true, when a message is moved or copied, the source mailbox
29 * will get expunged, removing all messages marked "Deleted".
30 */
31
32 $move_to_trash = true;
33 $trash_folder = "INBOX.Trash";
34 $auto_expunge = true;
35
36 /* Special Folders are folders that can't be manipulated like normal user created
37 folders can. A couple of examples would be "INBOX", "INBOX.Trash". We have
38 them set to Netscape's default mailboxes, but this obviously can be changed.
39 To add one, just add a new number to the array.
40 */
41 $special_folders[0] = "INBOX";
42 $special_folders[1] = "INBOX.Trash";
43 $special_folders[2] = "INBOX.Sent";
44 $special_folders[3] = "INBOX.Drafts";
45 $special_folders[4] = "INBOX.Templates";
46
47
48 ?>