X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=config%2Fconfig_default.php;h=6a4322394026d8cf13eb4a01090cc0ba0b273f10;hb=00c4b08d64f44d76274f89c01d8e82b7385d6d44;hp=61316827d826f1c7a41fdb92ffee9c94249b7520;hpb=4e85a37fc4a968e1fd255219069e85df7d08e558;p=squirrelmail.git diff --git a/config/config_default.php b/config/config_default.php index 61316827..6a432239 100644 --- a/config/config_default.php +++ b/config/config_default.php @@ -16,6 +16,13 @@ $config_version = '1.2.0'; global $org_logo; $org_logo = '../images/sm_logo.png'; +/* The width of the logo (0 for default) */ +$org_logo_width = 308; + +/* The height of the logo (0 for default) */ +$org_logo_height = 111; + + /* Organization's name */ global $org_name; $org_name = 'SquirrelMail'; @@ -25,7 +32,7 @@ $org_name = 'SquirrelMail'; * This is the web page title that appears at the top of the browser window. */ global $org_title; -$org_title = 'SquirrelMail $version'; +$org_title = "SquirrelMail $version"; /** * Default language @@ -393,7 +400,7 @@ $addrbook_table = 'address'; global $prefs_dsn, $prefs_table; $prefs_dsn = ''; -$prefs_table = 'userprefs' +$prefs_table = 'userprefs'; /** * Users may search their addressbook via either a plain HTML or Javascript @@ -448,6 +455,18 @@ global $plugins; * $plugins[1] = 'attachment_common'; */ +/** + * If you don't want to allow users to change their email address + * then you can set $edit_identity to false, if you want them to + * not be able to change their full name too then set $edit_name + * to false as well. $edit_name has no effect unless $edit_identity + * is false; + */ + +global $edit_identity, $edit_name; +$edit_identity = true; +$edit_name = true; + /** * Make sure there are no characters after the PHP closing * tag below (including newline characters and whitespace).