Add roundcubemail in tools
This commit is contained in:
parent
62f27cae1c
commit
6b1860320f
5
apps/tools/roundcubemail/config/.user.ini
Normal file
5
apps/tools/roundcubemail/config/.user.ini
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
upload_max_filesize=50M
|
||||||
|
post_max_size=55M
|
||||||
|
memory_limit=64M
|
||||||
|
default_charset='UTF-8'
|
||||||
|
date.timezone='Europe/Paris'
|
143
apps/tools/roundcubemail/config/config.inc.php
Normal file
143
apps/tools/roundcubemail/config/config.inc.php
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/* Local configuration for Roundcube Webmail */
|
||||||
|
|
||||||
|
// PEAR database DSN for read/write operations
|
||||||
|
// format is db_provider://user:password@host/database
|
||||||
|
// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
|
||||||
|
// currently supported db_providers: mysql, mysqli, pgsql, sqlite, mssql or sqlsrv
|
||||||
|
$config['db_dsnw'] = 'mysql://roundcube:hNL4DVtSVmBKtHEv@localhost/roundcube';
|
||||||
|
|
||||||
|
// Log sent messages to <log_dir>/sendmail or to syslog
|
||||||
|
$config['smtp_log'] = false;
|
||||||
|
|
||||||
|
// ----------------------------------
|
||||||
|
// IMAP
|
||||||
|
// ----------------------------------
|
||||||
|
// The mail host chosen to perform the log-in.
|
||||||
|
// Leave blank to show a textbox at login, give a list of hosts
|
||||||
|
// to display a pulldown menu or set one host as string.
|
||||||
|
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
|
||||||
|
// Supported replacement variables:
|
||||||
|
// %n - hostname ($_SERVER['SERVER_NAME'])
|
||||||
|
// %t - hostname without the first part
|
||||||
|
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
||||||
|
// %s - domain name after the '@' from e-mail address provided at login screen
|
||||||
|
// For example %n = mail.domain.tld, %t = domain.tld
|
||||||
|
// WARNING: After hostname change update of mail_host column in users table is
|
||||||
|
// required to match old user data records with the new host.
|
||||||
|
$config['default_host'] = 'localhost';
|
||||||
|
|
||||||
|
// TCP port used for IMAP connections
|
||||||
|
$config['default_port'] = 1143;
|
||||||
|
|
||||||
|
// IMAP connection timeout, in seconds. Default: 0 (no limit)
|
||||||
|
$config['imap_timeout'] = 30;
|
||||||
|
|
||||||
|
// Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache'.
|
||||||
|
$config['imap_cache'] = 'db';
|
||||||
|
|
||||||
|
// Enables messages cache. Only 'db' cache is supported.
|
||||||
|
$config['messages_cache'] = true;
|
||||||
|
|
||||||
|
// ----------------------------------
|
||||||
|
// SMTP
|
||||||
|
// ----------------------------------
|
||||||
|
// SMTP server host (for sending mails).
|
||||||
|
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
|
||||||
|
// If left blank, the PHP mail() function is used
|
||||||
|
// Supported replacement variables:
|
||||||
|
// %h - user's IMAP hostname
|
||||||
|
// %n - hostname ($_SERVER['SERVER_NAME'])
|
||||||
|
// %t - hostname without the first part
|
||||||
|
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
||||||
|
// %z - IMAP domain (IMAP hostname without the first part)
|
||||||
|
// For example %n = mail.domain.tld, %t = domain.tld
|
||||||
|
$config['smtp_server'] = 'smtpauth.online.net';
|
||||||
|
|
||||||
|
// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
|
||||||
|
// deprecated SSL over SMTP (aka SMTPS))
|
||||||
|
$config['smtp_port'] = 2525;
|
||||||
|
|
||||||
|
// SMTP username (if required) if you use %u as the username Roundcube
|
||||||
|
// will use the current username for login
|
||||||
|
$config['smtp_user'] = '%u';
|
||||||
|
|
||||||
|
// SMTP password (if required) if you use %p as the password Roundcube
|
||||||
|
// will use the current user's password for login
|
||||||
|
$config['smtp_pass'] = '%p';
|
||||||
|
|
||||||
|
// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
|
||||||
|
// best server supported one)
|
||||||
|
$config['smtp_auth_type'] = 'PLAIN';
|
||||||
|
|
||||||
|
// provide an URL where a user can get support for this Roundcube installation
|
||||||
|
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
|
||||||
|
$config['support_url'] = '';
|
||||||
|
|
||||||
|
// use this folder to store log files (must be writeable for apache user)
|
||||||
|
// This is used by the 'file' log driver.
|
||||||
|
$config['log_dir'] = 'logs/';
|
||||||
|
|
||||||
|
// use this folder to store temp files (must be writeable for apache user)
|
||||||
|
$config['temp_dir'] = 'temp/';
|
||||||
|
|
||||||
|
// display software version on login screen
|
||||||
|
$config['display_version'] = true;
|
||||||
|
|
||||||
|
// Session lifetime in minutes
|
||||||
|
$config['session_lifetime'] = 30;
|
||||||
|
|
||||||
|
// this key is used to encrypt the users imap password which is stored
|
||||||
|
// in the session record (and the client cookie if remember password is enabled).
|
||||||
|
// please provide a string of exactly 24 chars.
|
||||||
|
$config['des_key'] = 'YK9%rruAcFEtAh5c3gr=T0z8';
|
||||||
|
|
||||||
|
// use this name to compose page titles
|
||||||
|
$config['product_name'] = 'Scores Webmail';
|
||||||
|
|
||||||
|
// ----------------------------------
|
||||||
|
// PLUGINS
|
||||||
|
// ----------------------------------
|
||||||
|
// List of active plugins (in plugins/ directory)
|
||||||
|
//$config['plugins'] = array('automatic_addressbook');
|
||||||
|
|
||||||
|
// ----------------------------------
|
||||||
|
// USER INTERFACE
|
||||||
|
// ----------------------------------
|
||||||
|
// default messages sort column. Use empty value for default server's sorting,
|
||||||
|
// or 'arrival', 'date', 'subject', 'from', 'to', 'fromto', 'size', 'cc'
|
||||||
|
$config['message_sort_col'] = 'date';
|
||||||
|
|
||||||
|
// the default locale setting (leave empty for auto-detection)
|
||||||
|
// RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
|
||||||
|
$config['language'] = 'fr_FR';
|
||||||
|
|
||||||
|
// give this choice of date formats to the user to select from
|
||||||
|
$config['date_formats'] = array('Y-m-d', 'd-m-Y', 'Y/m/d', 'm/d/Y', 'd/m/Y', 'd.m.Y', 'j.n.Y');
|
||||||
|
|
||||||
|
// Enables files upload indicator. Requires APC installed and enabled apc.rfc1867 option.
|
||||||
|
// By default refresh time is set to 1 second. You can set this value to true
|
||||||
|
// or any integer value indicating number of seconds.
|
||||||
|
$config['upload_progress'] = true;
|
||||||
|
|
||||||
|
// compose html formatted messages by default
|
||||||
|
// 0 - never, 1 - always, 2 - on reply to HTML message, 3 - on forward or reply to HTML message
|
||||||
|
$config['htmleditor'] = 2;
|
||||||
|
|
||||||
|
// Default interval for auto-refresh requests (in seconds)
|
||||||
|
// These are requests for system state updates e.g. checking for new messages, etc.
|
||||||
|
// Setting it to 0 disables the feature.
|
||||||
|
$config['refresh_interval'] = 300;
|
||||||
|
|
||||||
|
// If true, after message delete/move, the next message will be displayed
|
||||||
|
$config['display_next'] = false;
|
||||||
|
|
||||||
|
// Default font for composed HTML message.
|
||||||
|
// Supported values: Andale Mono, Arial, Arial Black, Book Antiqua, Courier New,
|
||||||
|
// Georgia, Helvetica, Impact, Tahoma, Terminal, Times New Roman, Trebuchet MS, Verdana
|
||||||
|
$config['default_font'] = '';
|
||||||
|
|
||||||
|
// lifetime of message cache
|
||||||
|
// possible units: s, m, h, d, w
|
||||||
|
$config['message_cache_lifetime'] = '10d';
|
0
apps/tools/roundcubemail/roundcube-hosts
Normal file
0
apps/tools/roundcubemail/roundcube-hosts
Normal file
0
apps/tools/roundcubemail/roundcube.yml
Normal file
0
apps/tools/roundcubemail/roundcube.yml
Normal file
Loading…
Reference in New Issue
Block a user