| | |
| | | // Enables possibility to log in using email address from user identities |
| | | $config['user_aliases'] = false; |
| | | |
| | | // use this folder to store log files (must be writeable for apache user) |
| | | // use this folder to store log files |
| | | // must be writeable for the user who runs PHP process (Apache user if mod_php is being used) |
| | | // This is used by the 'file' log driver. |
| | | $config['log_dir'] = RCUBE_INSTALL_PATH . 'logs/'; |
| | | |
| | | // use this folder to store temp files (must be writeable for apache user) |
| | | // use this folder to store temp files |
| | | // must be writeable for the user who runs PHP process (Apache user if mod_php is being used) |
| | | $config['temp_dir'] = RCUBE_INSTALL_PATH . 'temp/'; |
| | | |
| | | // expire files in temp_dir after 48 hours |
| | |
| | | // Note: useful when SMTP server stores sent mail in user mailbox |
| | | $config['no_save_sent_messages'] = false; |
| | | |
| | | // Improve system security by using special URL with security token. |
| | | // This can be set to a number defining token length. Default: 16. |
| | | // Warning: This requires http server configuration. Sample: |
| | | // RewriteRule ^/roundcubemail/[a-f0-9]{16}/(.*) /roundcubemail/$1 [PT] |
| | | // Alias /roundcubemail /var/www/roundcubemail/ |
| | | // Note: Use assets_path to not prevent the browser from caching assets |
| | | $config['use_secure_urls'] = false; |
| | | |
| | | // Allows to define separate server/path for image/js/css files |
| | | // Warning: If the domain is different cross-domain access to some |
| | | // resources need to be allowed |
| | | // Sample: |
| | | // <FilesMatch ".(eot|ttf|woff)"> |
| | | // Header set Access-Control-Allow-Origin "*" |
| | | // </FilesMatch> |
| | | $config['assets_path'] = ''; |
| | | |
| | | // While assets_path is for the browser, assets_dir informs |
| | | // PHP code about the location of asset files in filesystem |
| | | $config['assets_dir'] = ''; |
| | | |
| | | |
| | | // ---------------------------------- |
| | | // PLUGINS |
| | | // ---------------------------------- |
| | |
| | | $config['spellcheck_dictionary'] = false; |
| | | |
| | | // Set the spell checking engine. Possible values: |
| | | // - 'googie' - the default |
| | | // - 'googie' - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting) |
| | | // - 'pspell' - requires the PHP Pspell module and aspell installed |
| | | // - 'enchant' - requires the PHP Enchant module |
| | | // - 'atd' - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API |
| | | // Since Google shut down their public spell checking service, you need to |
| | | // connect to a Nox Spell Server when using 'googie' here. Therefore specify the 'spellcheck_uri' |
| | | // Since Google shut down their public spell checking service, the default settings |
| | | // connect to http://spell.roundcube.net which is a hosted service provided by Roundcube. |
| | | // You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly. |
| | | $config['spellcheck_engine'] = 'googie'; |
| | | |
| | | // For locally installed Nox Spell Server or After the Deadline services, |