Folder manipulation update
[squirrelmail.git] / config / config.php
index 99b1fa8cb02590d9328d957fd8a390bd01aa530c..9048b0aa18533265384c31d2a8a9d3ccc2a99cf3 100644 (file)
@@ -33,4 +33,16 @@ $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", "INBOX.Trash".  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] = "INBOX.Trash";
+$special_folders[2] = "INBOX.Sent";
+$special_folders[3] = "INBOX.Drafts";
+$special_folders[4] = "INBOX.Templates";
+
+
 ?>