From: lkehresman Date: Sun, 19 Dec 1999 13:53:50 +0000 (+0000) Subject: added the config file again X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=c63afa2ddb2abab63e5cc49e415ae70a94c9e1ce added the config file again git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@88 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/config/config.php b/config/config.php new file mode 100644 index 00000000..753fb61d --- /dev/null +++ b/config/config.php @@ -0,0 +1,97 @@ +Nathan or Luke."; + +// Customizable colors + $color[0] = "DCDCDC"; // Light Gray + $color[1] = "800000"; // Red + $color[2] = "CC0000"; // Light Red + $color[3] = "A0B8C8"; // Left Background + $color[4] = "FFFFFF"; // Background + $color[5] = "FFFFCC"; // Light Yellow + $color[6] = "000000"; // Left Text + $color[7] = "0000CC"; // Link + $color[8] = "000000"; // Text + $color[9] = "ABABAB"; // Darker light gray + $color[10] = "666666"; // Darker light gray + $color[11] = "770000"; // Special folder color + +// Whether or not to use $color[11] for special folders. If not, special +// folders will be the same color as the other folders + $use_special_folder_color = true; + +/* The following are related to deleting messages. + * $move_to_trash + * - if this is set to "true", when "delete" is pressed, it will attempt + * to move the selected messages to the folder named $trash_folder. If + * it's set to "false", we won't even attempt to move the messages, just + * delete them. + * $trash_folder + * - This is the path to the default trash folder. For Cyrus IMAP, it + * would be "INBOX.Trash", but for UW it would be "Trash". We need the + * full path name here. + * $auto_expunge + * - If this is true, when a message is moved or copied, the source mailbox + * will get expunged, removing all messages marked "Deleted". + */ + + $move_to_trash = true; + $trash_folder = "INBOX.Trash"; + $auto_expunge = true; + +// Special Folders are folders that can't be manipulated like normal user created +// folders can. A couple of examples would be "INBOX.Trash", "INBOX.Drafts". We have +// them set to Netscape's default mailboxes, but this obviously can be changed. +// To add one, just add a new number to the array. + + $special_folders[0] = "INBOX"; // The first one has to be the inbox (whatever the name is) + $special_folders[1] = $trash_folder; + $special_folders[2] = "INBOX.Sent"; + $special_folders[3] = "INBOX.Drafts"; + $special_folders[4] = "INBOX.Templates"; + +// Whether or not to list the special folders first (true/false) + $list_special_folders_first = true; + +// Are all your folders subfolders of INBOX (i.e. cyrus IMAP server) +// If you are not sure, set it to false. + $default_sub_of_inbox = true; + +// Some IMAP daemons (UW) handle folders weird. They only allow a folder to contain +// either messages or other folders, not both at the same time. This option controls +// whether or not to display an option during folder creation. The option toggles +// which type of folder it should be. +// +// If this option confuses you, make it "true". You can't hurt anything if it's true, +// but some servers will respond weird if it's false. (Cyrus works fine whether it's +// true OR false). + $show_contain_subfolders_option = false; + +// Whether or not to use META tags and automatically forward after an action has +// been completed. + $auto_forward = true; +?>