From 863ee93dde82f84fd17066fe00483c5b7395b034 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Wed, 15 Dec 1999 15:40:00 +0000 Subject: [PATCH] removed the config file git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@81 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/config.php | 66 ----------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 config/config.php diff --git a/config/config.php b/config/config.php deleted file mode 100644 index dfbb4e3d..00000000 --- a/config/config.php +++ /dev/null @@ -1,66 +0,0 @@ -Nathan or Luke."; - -/* Customizable colors */ -$color_lgray = "DCDCDC"; -$color_red = "800000"; -$color_light_red = "FF0000"; -$color_left_bg = "A0B8C8"; -$color_bground = "FFFFFF"; -$color_light_yel = "FFFFCC"; - -/* SquirrelMail version number -- DO NOT CHANGE */ -$version = "0.0.1"; - -/* 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"; -$special_folders[1] = $trash_folder; -$special_folders[2] = "INBOX.Sent"; -$special_folders[3] = "INBOX.Drafts"; -$special_folders[4] = "INBOX.Templates"; -?> -- 2.25.1