Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../squirrel
File: config.php
<?php
[0] Fix | Delete
[1] Fix | Delete
/**
[2] Fix | Delete
* Default SquirrelMail configuration file
[3] Fix | Delete
*
[4] Fix | Delete
* BEFORE EDITING THIS FILE!
[5] Fix | Delete
*
[6] Fix | Delete
* Don't edit this file directly. Copy it to config.php before you
[7] Fix | Delete
* edit it. However, it is best to use the configuration script
[8] Fix | Delete
* conf.pl if at all possible. That is the easiest and cleanest way
[9] Fix | Delete
* to configure.
[10] Fix | Delete
*
[11] Fix | Delete
* Note on SECURITY: some options require putting a password in this file.
[12] Fix | Delete
* Please make sure that you adapt its permissions appropriately to avoid
[13] Fix | Delete
* passwords being leaked to e.g. other system users. Take extra care when
[14] Fix | Delete
* the webserver is shared with untrusted users.
[15] Fix | Delete
*
[16] Fix | Delete
* @copyright 2000-2011 The SquirrelMail Project Team
[17] Fix | Delete
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
[18] Fix | Delete
* @version $Id: config_default.php 14084 2011-01-06 02:44:03Z pdontthink $
[19] Fix | Delete
* @package squirrelmail
[20] Fix | Delete
* @subpackage config
[21] Fix | Delete
*/
[22] Fix | Delete
[23] Fix | Delete
/* Do not change this value. */
[24] Fix | Delete
global $version;
[25] Fix | Delete
global $config_version;
[26] Fix | Delete
$config_version = '1.4.0';
[27] Fix | Delete
[28] Fix | Delete
/*** Organization preferences ***/
[29] Fix | Delete
/**
[30] Fix | Delete
* Organization's name
[31] Fix | Delete
* @global string $org_name
[32] Fix | Delete
*/
[33] Fix | Delete
$org_name = "[[site_name]]";
[34] Fix | Delete
[35] Fix | Delete
/**
[36] Fix | Delete
* Organization's logo picture (blank if none)
[37] Fix | Delete
* @global string $org_logo
[38] Fix | Delete
*/
[39] Fix | Delete
$org_logo = SM_PATH . 'images/sm_logo.png';
[40] Fix | Delete
[41] Fix | Delete
/**
[42] Fix | Delete
* The width of the logo (0 for default)
[43] Fix | Delete
* @global string $org_logo_width
[44] Fix | Delete
*/
[45] Fix | Delete
$org_logo_width = '308';
[46] Fix | Delete
[47] Fix | Delete
/**
[48] Fix | Delete
* The height of the logo (0 for default)
[49] Fix | Delete
* @global string $org_logo_height
[50] Fix | Delete
*/
[51] Fix | Delete
$org_logo_height = '111';
[52] Fix | Delete
[53] Fix | Delete
/**
[54] Fix | Delete
* Webmail Title
[55] Fix | Delete
*
[56] Fix | Delete
* This is the web page title that appears at the top of the browser window.
[57] Fix | Delete
* @global string $org_title
[58] Fix | Delete
*/
[59] Fix | Delete
$org_title = "SquirrelMail $version";
[60] Fix | Delete
[61] Fix | Delete
/**
[62] Fix | Delete
* Signout page
[63] Fix | Delete
*
[64] Fix | Delete
* Rather than going to the signout.php page (which only allows you
[65] Fix | Delete
* to sign back in), setting signout_page allows you to sign the user
[66] Fix | Delete
* out and then redirect to whatever page you want. For instance,
[67] Fix | Delete
* the following would return the user to your home page:
[68] Fix | Delete
* $signout_page = '/';
[69] Fix | Delete
* Set to the empty string to continue to use the default signout page.
[70] Fix | Delete
* @global string $signout_page
[71] Fix | Delete
*/
[72] Fix | Delete
$signout_page = '';
[73] Fix | Delete
[74] Fix | Delete
/**
[75] Fix | Delete
* Top frame
[76] Fix | Delete
*
[77] Fix | Delete
* By default SquirrelMail takes up the whole browser window,
[78] Fix | Delete
* this allows you to embed it within sites using frames. Set
[79] Fix | Delete
* this to the frame you want it to stay in.
[80] Fix | Delete
* @global string $frame_top
[81] Fix | Delete
*/
[82] Fix | Delete
$frame_top = '_top';
[83] Fix | Delete
[84] Fix | Delete
/**
[85] Fix | Delete
* Provider name
[86] Fix | Delete
*
[87] Fix | Delete
* Here you can set name of the link displayed on the right side of main page.
[88] Fix | Delete
*
[89] Fix | Delete
* Link will be displayed only if you have $hide_sm_attributions
[90] Fix | Delete
* option set to true.
[91] Fix | Delete
* @global string $provider_name
[92] Fix | Delete
*/
[93] Fix | Delete
$provider_name = 'SquirrelMail';
[94] Fix | Delete
[95] Fix | Delete
/**
[96] Fix | Delete
* Provider URI
[97] Fix | Delete
*
[98] Fix | Delete
* Here you can set URL of the link displayed on the right side of main page.
[99] Fix | Delete
*
[100] Fix | Delete
* Link will be displayed only if you have $hide_sm_attributions
[101] Fix | Delete
* option set to true.
[102] Fix | Delete
* @global string $provider_uri
[103] Fix | Delete
*/
[104] Fix | Delete
$provider_uri = 'http://squirrelmail.org/';
[105] Fix | Delete
[106] Fix | Delete
/*** Server Settings ***/
[107] Fix | Delete
/**
[108] Fix | Delete
* Default Domain
[109] Fix | Delete
*
[110] Fix | Delete
* The domain part of local email addresses.
[111] Fix | Delete
* This is for all messages sent out from this server.
[112] Fix | Delete
* Reply address is generated by $username@$domain
[113] Fix | Delete
* Example: In bob@example.com, example.com is the domain.
[114] Fix | Delete
* @global string $domain
[115] Fix | Delete
*/
[116] Fix | Delete
$domain = '[[domhost]]';
[117] Fix | Delete
[118] Fix | Delete
/**
[119] Fix | Delete
* Time offset inversion
[120] Fix | Delete
*
[121] Fix | Delete
* If you are running on a machine that doesn't have the tm_gmtoff
[122] Fix | Delete
* value in your time structure and if you are in a time zone that
[123] Fix | Delete
* has a negative offset, you need to set this value to 1. This is
[124] Fix | Delete
* typically people in the US that are running Solaris 7.
[125] Fix | Delete
* @global bool $invert_time
[126] Fix | Delete
*/
[127] Fix | Delete
$invert_time = false;
[128] Fix | Delete
[129] Fix | Delete
/**
[130] Fix | Delete
* Default send transport
[131] Fix | Delete
*
[132] Fix | Delete
* What should be used when sending email.
[133] Fix | Delete
* If it is set to false, SquirrelMail will use SMTP server settings.
[134] Fix | Delete
* If it is set to true, SquirrelMail will use program defined in
[135] Fix | Delete
* $sendmail_path
[136] Fix | Delete
* @global bool $useSendmail
[137] Fix | Delete
*/
[138] Fix | Delete
$useSendmail = false;
[139] Fix | Delete
[140] Fix | Delete
/**
[141] Fix | Delete
* Your SMTP server (usually the same as the IMAP server).
[142] Fix | Delete
* @global string $smtpServerAddress
[143] Fix | Delete
*/
[144] Fix | Delete
$smtpServerAddress = '[[smtp]]';
[145] Fix | Delete
/**
[146] Fix | Delete
* Your SMTP port number (usually 25).
[147] Fix | Delete
* @global integer $smtpPort
[148] Fix | Delete
*/
[149] Fix | Delete
$smtpPort = [[smtp_port]];
[150] Fix | Delete
[151] Fix | Delete
/**
[152] Fix | Delete
* SquirrelMail header encryption
[153] Fix | Delete
*
[154] Fix | Delete
* Encryption key allows to hide SquirrelMail Received: headers
[155] Fix | Delete
* in outbound messages. Interface uses encryption key to encode
[156] Fix | Delete
* username, remote address and proxied address, then stores encoded
[157] Fix | Delete
* information in X-Squirrel-* headers.
[158] Fix | Delete
*
[159] Fix | Delete
* Warning: used encryption function is not bulletproof. When used
[160] Fix | Delete
* with static encryption keys, it provides only minimal security
[161] Fix | Delete
* measures and information can be decoded quickly.
[162] Fix | Delete
*
[163] Fix | Delete
* Encoded information can be decoded with decrypt_headers.php script
[164] Fix | Delete
* from SquirrelMail contrib/ directory.
[165] Fix | Delete
* @global string $encode_header_key
[166] Fix | Delete
* @since 1.5.1 and 1.4.5
[167] Fix | Delete
*/
[168] Fix | Delete
$encode_header_key = '';
[169] Fix | Delete
[170] Fix | Delete
/**
[171] Fix | Delete
* Path to Sendmail
[172] Fix | Delete
*
[173] Fix | Delete
* Program that should be used when sending email. SquirrelMail expects that
[174] Fix | Delete
* this program will follow options used by original sendmail
[175] Fix | Delete
* (http://www.sendmail.org).
[176] Fix | Delete
* @global string $sendmail_path
[177] Fix | Delete
*/
[178] Fix | Delete
$sendmail_path = '/usr/sbin/sendmail';
[179] Fix | Delete
[180] Fix | Delete
/**
[181] Fix | Delete
* Extra sendmail command arguments.
[182] Fix | Delete
*
[183] Fix | Delete
* Sets additional sendmail command arguments. Make sure that arguments are
[184] Fix | Delete
* supported by your sendmail program. -f argument is added automatically by
[185] Fix | Delete
* SquirrelMail scripts. Variable defaults to standard /usr/sbin/sendmail
[186] Fix | Delete
* arguments. If you use qmail-inject, nbsmtp or any other sendmail wrapper,
[187] Fix | Delete
* which does not support -t and -i arguments, set variable to empty string
[188] Fix | Delete
* or use arguments suitable for your mailer.
[189] Fix | Delete
* @global string $sendmail_args
[190] Fix | Delete
* @since 1.5.1 and 1.4.8
[191] Fix | Delete
*/
[192] Fix | Delete
$sendmail_args = '-i -t';
[193] Fix | Delete
[194] Fix | Delete
/**
[195] Fix | Delete
* IMAP server address
[196] Fix | Delete
*
[197] Fix | Delete
* The dns name (or IP address) for your imap server.
[198] Fix | Delete
* @global string $imapServerAddress
[199] Fix | Delete
*/
[200] Fix | Delete
$imapServerAddress = '[[imap]]';
[201] Fix | Delete
[202] Fix | Delete
/**
[203] Fix | Delete
* IMAP server port
[204] Fix | Delete
*
[205] Fix | Delete
* Port used by your imap server. (Usually 143)
[206] Fix | Delete
* @global integer $imapPort
[207] Fix | Delete
*/
[208] Fix | Delete
$imapPort = [[imap_port]];
[209] Fix | Delete
[210] Fix | Delete
/**
[211] Fix | Delete
* IMAP server type
[212] Fix | Delete
*
[213] Fix | Delete
* The type of IMAP server you are running.
[214] Fix | Delete
* Valid type are the following (case is important):
[215] Fix | Delete
* courier
[216] Fix | Delete
* cyrus
[217] Fix | Delete
* exchange
[218] Fix | Delete
* uw
[219] Fix | Delete
* macosx
[220] Fix | Delete
* hmailserver
[221] Fix | Delete
* other
[222] Fix | Delete
*
[223] Fix | Delete
* Please note that this changes only some of server settings.
[224] Fix | Delete
*
[225] Fix | Delete
* In order to set everything correctly, you need to adjust several
[226] Fix | Delete
* squirrelmail options. These options are listed in doc/presets.txt
[227] Fix | Delete
* @global string $imap_server_type
[228] Fix | Delete
*/
[229] Fix | Delete
$imap_server_type = 'other';
[230] Fix | Delete
[231] Fix | Delete
/**
[232] Fix | Delete
* Advanced IMAP authentication options control
[233] Fix | Delete
*
[234] Fix | Delete
* CRAM-MD5, DIGEST-MD5, Plain, and TLS
[235] Fix | Delete
* Set reasonable defaults - you'd never know this was there unless you ask for it
[236] Fix | Delete
* @global bool $use_imap_tls
[237] Fix | Delete
*/
[238] Fix | Delete
$use_imap_tls = [[imap_tls]];
[239] Fix | Delete
[240] Fix | Delete
/**
[241] Fix | Delete
* Advanced SMTP authentication options control
[242] Fix | Delete
*
[243] Fix | Delete
* CRAM-MD5, DIGEST-MD5, Plain, and TLS
[244] Fix | Delete
* Set reasonable defaults - you'd never know this was there unless you ask for it
[245] Fix | Delete
* @global bool $use_smtp_tls
[246] Fix | Delete
*/
[247] Fix | Delete
$use_smtp_tls = [[smtp_tls]];
[248] Fix | Delete
[249] Fix | Delete
/**
[250] Fix | Delete
* SMTP authentication mechanism
[251] Fix | Delete
*
[252] Fix | Delete
* auth_mech can be either 'none', 'login','plain', 'cram-md5', or 'digest-md5'
[253] Fix | Delete
* @global string $smtp_auth_mech
[254] Fix | Delete
*/
[255] Fix | Delete
$smtp_auth_mech = 'none';
[256] Fix | Delete
[257] Fix | Delete
/**
[258] Fix | Delete
* Custom SMTP Authentication Username
[259] Fix | Delete
*
[260] Fix | Delete
* IMAP username is used if variable is set to an empty string. Variable is included in
[261] Fix | Delete
* the main configuration file only in 1.4.11+ and 1.5.2+.
[262] Fix | Delete
* @global string $smtp_sitewide_user
[263] Fix | Delete
* @since 1.4.11
[264] Fix | Delete
*/
[265] Fix | Delete
$smtp_sitewide_user = '';
[266] Fix | Delete
[267] Fix | Delete
/**
[268] Fix | Delete
* Custom SMTP Authentication Password
[269] Fix | Delete
*
[270] Fix | Delete
* IMAP password is used if variable is set to an empty string. Variable is included in
[271] Fix | Delete
* the main configuration file in 1.4.11+ and 1.5.2+
[272] Fix | Delete
* @global string $smtp_sitewide_pass
[273] Fix | Delete
* @since 1.4.11
[274] Fix | Delete
*/
[275] Fix | Delete
$smtp_sitewide_pass = '';
[276] Fix | Delete
[277] Fix | Delete
/**
[278] Fix | Delete
* IMAP authentication mechanism
[279] Fix | Delete
*
[280] Fix | Delete
* auth_mech can be either 'login','plain', 'cram-md5', or 'digest-md5'
[281] Fix | Delete
* @global string $imap_auth_mech
[282] Fix | Delete
*/
[283] Fix | Delete
$imap_auth_mech = 'login';
[284] Fix | Delete
[285] Fix | Delete
/**
[286] Fix | Delete
* IMAP folder delimiter
[287] Fix | Delete
*
[288] Fix | Delete
* This is the delimiter that your IMAP server uses to distinguish between
[289] Fix | Delete
* folders. For example, Cyrus uses '.' as the delimiter and a complete
[290] Fix | Delete
* folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would
[291] Fix | Delete
* look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'
[292] Fix | Delete
* but if you are sure you know what delimiter your server uses, you can
[293] Fix | Delete
* specify it here.
[294] Fix | Delete
*
[295] Fix | Delete
* To have it autodetect the delimiter, set it to 'detect'.
[296] Fix | Delete
* @global string $optional_delimiter
[297] Fix | Delete
*/
[298] Fix | Delete
$optional_delimiter = 'detect';
[299] Fix | Delete
[300] Fix | Delete
/**
[301] Fix | Delete
* POP before SMTP setting
[302] Fix | Delete
*
[303] Fix | Delete
* Do you wish to use POP3 before SMTP? Your server must
[304] Fix | Delete
* support this in order for SquirrelMail to work with it.
[305] Fix | Delete
* @global bool $pop_before_smtp
[306] Fix | Delete
*/
[307] Fix | Delete
$pop_before_smtp = false;
[308] Fix | Delete
[309] Fix | Delete
[310] Fix | Delete
/**
[311] Fix | Delete
* POP before SMTP server address
[312] Fix | Delete
*
[313] Fix | Delete
* When using POP3 before SMTP, if the POP server address is
[314] Fix | Delete
* not the same as the SMTP server address, specify it here.
[315] Fix | Delete
* If this is left empty, the SMTP server address will be
[316] Fix | Delete
* used by default.
[317] Fix | Delete
* @global bool $pop_before_smtp_host
[318] Fix | Delete
*/
[319] Fix | Delete
$pop_before_smtp_host = '';
[320] Fix | Delete
[321] Fix | Delete
[322] Fix | Delete
/*** Folder Settings ***/
[323] Fix | Delete
/**
[324] Fix | Delete
* Default IMAP folder prefix
[325] Fix | Delete
*
[326] Fix | Delete
* Many servers store mail in your home directory. With this, they
[327] Fix | Delete
* store them in a subdirectory: mail/ or Mail/, etc. If your server
[328] Fix | Delete
* does this, please set this to what the default mail folder should
[329] Fix | Delete
* be. This is still a user preference, so they can change it if it
[330] Fix | Delete
* is different for each user.
[331] Fix | Delete
*
[332] Fix | Delete
* Example:
[333] Fix | Delete
* $default_folder_prefix = 'mail/';
[334] Fix | Delete
* -- or --
[335] Fix | Delete
* $default_folder_prefix = 'Mail/folders/';
[336] Fix | Delete
*
[337] Fix | Delete
* If you do not use this, set it to the empty string.
[338] Fix | Delete
* @global string $default_folder_prefix
[339] Fix | Delete
*/
[340] Fix | Delete
$default_folder_prefix = '';
[341] Fix | Delete
[342] Fix | Delete
/**
[343] Fix | Delete
* User level prefix control
[344] Fix | Delete
*
[345] Fix | Delete
* If you do not wish to give them the option to change this, set it
[346] Fix | Delete
* to false. Otherwise, if it is true, they can change the folder prefix
[347] Fix | Delete
* to be anything.
[348] Fix | Delete
* @global bool $show_prefix_option
[349] Fix | Delete
*/
[350] Fix | Delete
$show_prefix_option = false;
[351] Fix | Delete
[352] Fix | Delete
/**
[353] Fix | Delete
* The following are related to deleting messages.
[354] Fix | Delete
* $default_move_to_trash
[355] Fix | Delete
* If this is set to 'true', when 'delete' is pressed, it
[356] Fix | Delete
* will attempt to move the selected messages to the folder
[357] Fix | Delete
* named $trash_folder. If it's set to 'false', we won't even
[358] Fix | Delete
* attempt to move the messages, just delete them.
[359] Fix | Delete
* $default_move_to_sent
[360] Fix | Delete
* If this is set to 'true', sent messages will be stored in
[361] Fix | Delete
* $sent_folder by default.
[362] Fix | Delete
* $default_save_as_draft
[363] Fix | Delete
* If this is set to 'true', users are able to use $draft_folder
[364] Fix | Delete
* to store their unfinished messages.
[365] Fix | Delete
* $trash_folder
[366] Fix | Delete
* This is the path to the default trash folder. For Cyrus
[367] Fix | Delete
* IMAP, it would be 'INBOX.Trash', but for UW it would be
[368] Fix | Delete
* 'Trash'. We need the full path name here.
[369] Fix | Delete
* $draft_folder
[370] Fix | Delete
* This is the patch to where Draft messages will be stored.
[371] Fix | Delete
* $auto_expunge
[372] Fix | Delete
* If this is true, when a message is moved or copied, the
[373] Fix | Delete
* source mailbox will get expunged, removing all messages
[374] Fix | Delete
* marked 'Deleted'.
[375] Fix | Delete
* $sent_folder
[376] Fix | Delete
* This is the path to where Sent messages will be stored.
[377] Fix | Delete
* $delete_folder
[378] Fix | Delete
* If this is true, when a folder is deleted then it will
[379] Fix | Delete
* not get moved into the Trash folder.
[380] Fix | Delete
* @global bool $default_move_to_trash
[381] Fix | Delete
* @global bool $default_move_to_sent
[382] Fix | Delete
* @global bool $default_save_as_draft
[383] Fix | Delete
* @global string $trash_folder
[384] Fix | Delete
* @global string $sent_folder
[385] Fix | Delete
* @global string $draft_folder
[386] Fix | Delete
* @global bool $auto_expunge
[387] Fix | Delete
* @global bool $delete_folder
[388] Fix | Delete
*/
[389] Fix | Delete
$default_move_to_trash = true;
[390] Fix | Delete
$default_move_to_sent = true;
[391] Fix | Delete
$default_save_as_draft = true;
[392] Fix | Delete
$trash_folder = 'INBOX.Trash';
[393] Fix | Delete
$sent_folder = 'INBOX.Sent';
[394] Fix | Delete
$draft_folder = 'INBOX.Drafts';
[395] Fix | Delete
$auto_expunge = true;
[396] Fix | Delete
$delete_folder = false;
[397] Fix | Delete
[398] Fix | Delete
/**
[399] Fix | Delete
* Special Folder Color Control
[400] Fix | Delete
*
[401] Fix | Delete
* Whether or not to use a special color for special folders. If not,
[402] Fix | Delete
* special folders will be the same color as the other folders.
[403] Fix | Delete
* @global bool $use_special_folder_color
[404] Fix | Delete
*/
[405] Fix | Delete
$use_special_folder_color = true;
[406] Fix | Delete
[407] Fix | Delete
/**
[408] Fix | Delete
* Create Special Folders Control
[409] Fix | Delete
*
[410] Fix | Delete
* Should I create the Sent and Trash folders automatically for
[411] Fix | Delete
* a new user that doesn't already have them created?
[412] Fix | Delete
* @global bool $auto_create_special
[413] Fix | Delete
*/
[414] Fix | Delete
$auto_create_special = true;
[415] Fix | Delete
[416] Fix | Delete
/**
[417] Fix | Delete
* List Special Folders First Control
[418] Fix | Delete
*
[419] Fix | Delete
* Whether or not to list the special folders first (true/false).
[420] Fix | Delete
* @global bool $list_special_folders_first
[421] Fix | Delete
*/
[422] Fix | Delete
$list_special_folders_first = true;
[423] Fix | Delete
[424] Fix | Delete
/**
[425] Fix | Delete
* Subfolder Layout Control
[426] Fix | Delete
*
[427] Fix | Delete
* Are all your folders subfolders of INBOX (i.e. cyrus IMAP server).
[428] Fix | Delete
* If you are unsure, set it to false.
[429] Fix | Delete
* @global bool $default_sub_of_inbox
[430] Fix | Delete
*/
[431] Fix | Delete
$default_sub_of_inbox = true;
[432] Fix | Delete
[433] Fix | Delete
/**
[434] Fix | Delete
* Subfolder Format Control
[435] Fix | Delete
*
[436] Fix | Delete
* Some IMAP daemons (UW) handle folders weird. They only allow a
[437] Fix | Delete
* folder to contain either messages or other folders, not both at
[438] Fix | Delete
* the same time. This option controls whether or not to display an
[439] Fix | Delete
* option during folder creation. The option toggles which type of
[440] Fix | Delete
* folder it should be.
[441] Fix | Delete
*
[442] Fix | Delete
* If this option confuses you, just set it to 'true'. You can not hurt
[443] Fix | Delete
* anything if it's true, but some servers will respond weird if it's
[444] Fix | Delete
* false. (Cyrus works fine whether it's true OR false).
[445] Fix | Delete
* @global bool $show_contain_subfolders_option
[446] Fix | Delete
*/
[447] Fix | Delete
$show_contain_subfolders_option = false;
[448] Fix | Delete
[449] Fix | Delete
/**
[450] Fix | Delete
* These next two options set the defaults for the way that the
[451] Fix | Delete
* users see their folder list.
[452] Fix | Delete
* $default_unseen_notify
[453] Fix | Delete
* Specifies whether or not the users will see the number of
[454] Fix | Delete
* unseen in each folder by default and also which folders to
[455] Fix | Delete
* do this to. Valid values are: 1=none, 2=inbox, 3=all.
[456] Fix | Delete
* $default_unseen_type
[457] Fix | Delete
* Specifies the type of notification to give the users by
[458] Fix | Delete
* default. Valid choice are: 1=(4), 2=(4,25).
[459] Fix | Delete
* @global integer $default_unseen_notify
[460] Fix | Delete
* @global integer $default_unseen_type
[461] Fix | Delete
*/
[462] Fix | Delete
$default_unseen_notify = 2;
[463] Fix | Delete
$default_unseen_type = 1;
[464] Fix | Delete
[465] Fix | Delete
/**
[466] Fix | Delete
* NoSelect Fix Control
[467] Fix | Delete
*
[468] Fix | Delete
* This enables the no select fix for Cyrus when subfolders
[469] Fix | Delete
* exist but parent folders do not
[470] Fix | Delete
* @global bool $noselect_fix_enable
[471] Fix | Delete
*/
[472] Fix | Delete
$noselect_fix_enable = false;
[473] Fix | Delete
[474] Fix | Delete
/*** General options ***/
[475] Fix | Delete
/**
[476] Fix | Delete
* Path to the data/ directory
[477] Fix | Delete
*
[478] Fix | Delete
* It is a possible security hole to have a writable directory
[479] Fix | Delete
* under the web server's root directory (ex: /home/httpd/html).
[480] Fix | Delete
* It is possible to put the data directory anywhere you would like;
[481] Fix | Delete
* it is strongly advised that it is NOT directly web-accessible.
[482] Fix | Delete
*
[483] Fix | Delete
* The path name can be absolute or relative (to the config directory).
[484] Fix | Delete
* If it is relative, it must use the SM_PATH constant.
[485] Fix | Delete
* Here are two examples:
[486] Fix | Delete
*
[487] Fix | Delete
* Absolute:
[488] Fix | Delete
* $data_dir = '/var/local/squirrelmail/data/';
[489] Fix | Delete
*
[490] Fix | Delete
* Relative (to main SM directory):
[491] Fix | Delete
* $data_dir = SM_PATH . 'data/';
[492] Fix | Delete
* (NOT recommended: you need to secure apache to make sure these
[493] Fix | Delete
* files are not world readable)
[494] Fix | Delete
*
[495] Fix | Delete
* @global string $data_dir
[496] Fix | Delete
*/
[497] Fix | Delete
$data_dir = '[[softpath]]/data/';
[498] Fix | Delete
[499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function