* fixed so bottom delete button works
[squirrelmail.git] / config / config.php
CommitLineData
bb839564 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
aa4c3749 14/* SquirrelMail version number -- DO NOT CHANGE */
bb839564 15$version = "0.0.1";
aa4c3749 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 */
28
29$move_to_trash = true;
30$trash_folder = "INBOX.Trash";
31
bb839564 32?>