init commit
This commit is contained in:
7
config/.htaccess
Normal file
7
config/.htaccess
Normal file
@ -0,0 +1,7 @@
|
||||
# deny webserver access to this directory
|
||||
<ifModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</ifModule>
|
||||
<ifModule !mod_authz_core.c>
|
||||
Deny from all
|
||||
</ifModule>
|
202
config/config.inc.php
Normal file
202
config/config.inc.php
Normal file
@ -0,0 +1,202 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Local configuration for the Roundcube Webmail installation. |
|
||||
| |
|
||||
| This is a sample configuration file only containing the minimum |
|
||||
| setup required for a functional installation. Copy more options |
|
||||
| from defaults.inc.php to this file to override the defaults. |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
// Retrieve YunoHost main domain
|
||||
$main_domain = exec('cat /etc/yunohost/current_host');
|
||||
|
||||
$config = array();
|
||||
|
||||
// Database connection string (DSN) for read+write operations
|
||||
// Format (compatible with PEAR MDB2): db_provider://user:password@host/database
|
||||
// Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle
|
||||
// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
|
||||
// NOTE: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646'
|
||||
// or (Windows): 'sqlite:///C:/full/path/to/sqlite.db'
|
||||
$config['db_dsnw'] = 'mysql://roundcube:4528eb3ed21f5c35473152a9@localhost/roundcube';
|
||||
|
||||
// The IMAP 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.
|
||||
// Enter hostname with prefix ssl:// to use Implicit TLS, or use
|
||||
// prefix tls:// to use STARTTLS.
|
||||
// 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
|
||||
$config['imap_host'] = 'localhost:143';
|
||||
|
||||
// SMTP server host (for sending mails).
|
||||
// Enter hostname with prefix ssl:// to use Implicit TLS, or use
|
||||
// prefix tls:// to use STARTTLS.
|
||||
// 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
|
||||
// To specify different SMTP servers for different IMAP hosts provide an array
|
||||
// of IMAP host (no prefix or port) and SMTP server e.g. ['imap.example.com' => 'smtp.example.net']
|
||||
$config['smtp_host'] = 'tls://' . $main_domain;
|
||||
|
||||
// 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 socket context options
|
||||
// See http://php.net/manual/en/context.ssl.php
|
||||
// The server certificate validation is disabled, since the server is local
|
||||
// and the communication should be safe. Note that it can be enabled as
|
||||
// needed, just uncomment lines and set 'verify_peer' to true.
|
||||
$config['smtp_conn_options'] = array(
|
||||
'ssl' => array(
|
||||
'verify_peer' => false,
|
||||
// 'verify_depth' => 3,
|
||||
// 'cafile' => '/etc/yunohost/certs/' . $main_domain . '/ca.pem',
|
||||
),
|
||||
);
|
||||
|
||||
// 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'] = 'https://forum.yunohost.org/t/roundcube-a-webmail/3965';
|
||||
|
||||
// Name your service. This is displayed on the login screen and in the window title
|
||||
$config['product_name'] = 'MultiBox Webmail';
|
||||
|
||||
// This key is used to encrypt the users imap password which is stored
|
||||
// in the session record. For the default cipher method it must be
|
||||
// exactly 24 characters long.
|
||||
// YOUR KEY MUST BE DIFFERENT THAN THE SAMPLE VALUE FOR SECURITY REASONS
|
||||
$config['des_key'] = 'jybvdIgYeTxiEx61YQ5VUkm0';
|
||||
|
||||
|
||||
// ----------------------------------
|
||||
// USER INTERFACE
|
||||
// ----------------------------------
|
||||
|
||||
// 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'] = 'en_GB';
|
||||
|
||||
// use this format for date display (date or strftime format)
|
||||
$config['date_format'] = 'd.m.Y';
|
||||
|
||||
// Make use of the built-in spell checker. It is based on GoogieSpell.
|
||||
$config['enable_spellcheck'] = false;
|
||||
|
||||
|
||||
// Enable YunoHost users search in the address book.
|
||||
$config['ldap_public']['yunohost'] = array(
|
||||
'name' => 'YunoHost Users',
|
||||
'hosts' => array('localhost:389'),
|
||||
'user_specific' => false,
|
||||
'base_dn' => 'ou=users,dc=yunohost,dc=org',
|
||||
'scope' => 'list',
|
||||
'filter' => '(objectClass=mailAccount)',
|
||||
'hidden' => false,
|
||||
'search_fields' => array(
|
||||
'uid',
|
||||
'mail',
|
||||
'cn'
|
||||
),
|
||||
'fieldmap' => array(
|
||||
'uid' => 'uid',
|
||||
'name' => 'cn',
|
||||
'surname' => 'sn',
|
||||
'firstname' => 'givenName',
|
||||
'email' => 'mail:*',
|
||||
),
|
||||
);
|
||||
|
||||
$config['license_key'] = 'RCP-zxM5wAi4xnpx';
|
||||
|
||||
// List of active plugins (in plugins/ directory)
|
||||
$config['plugins'] = [
|
||||
'xskin',
|
||||
'archive',
|
||||
'zipdownload',
|
||||
'http_authentication',
|
||||
'managesieve',
|
||||
'markasjunk',
|
||||
'new_user_dialog',
|
||||
'new_user_identity',
|
||||
'newmail_notifier',
|
||||
'enigma',
|
||||
'contextmenu',
|
||||
'automatic_addressbook',
|
||||
'carddav',
|
||||
'message_highlight',
|
||||
'identity_switch',
|
||||
];
|
||||
|
||||
// ----------------------------------
|
||||
// PLUGINS
|
||||
// ----------------------------------
|
||||
|
||||
// -- new_user_identity
|
||||
// The id of the address book to use to automatically set a
|
||||
// user's full name in their new identity.
|
||||
$config['new_user_identity_addressbook'] = 'yunohost';
|
||||
$config['new_user_identity_match'] = 'uid';
|
||||
$config['new_user_identity_onlogin'] = true;
|
||||
|
||||
// -- http_authentication
|
||||
// Redirect the client to this URL after logout.
|
||||
$config['logout_url'] = 'https://' . $main_domain . '/yunohost/sso/?action=logout';
|
||||
|
||||
// -- managesieve
|
||||
// Enables separate management interface for vacation responses (out-of-office)
|
||||
$config['managesieve_vacation'] = 1;
|
||||
|
||||
// -- ldapAliasSync
|
||||
$config['ldapAliasSync'] = array(
|
||||
// Mail parameters
|
||||
'mail' => array(
|
||||
'dovecot_separator' => '+',
|
||||
),
|
||||
// LDAP parameters
|
||||
'ldap' => array(
|
||||
'bind_dn' => '',
|
||||
),
|
||||
# 'user_search' holds all config variables for the user search
|
||||
'user_search' => array(
|
||||
'base_dn' => 'uid=%local,ou=users,dc=yunohost,dc=org',
|
||||
'filter' => '(objectClass=mailAccount)',
|
||||
'mail_by' => 'attribute',
|
||||
'attr_mail' => 'mail',
|
||||
'attr_name' => 'cn',
|
||||
),
|
||||
# 'alias_search' holds all config variables for the alias search
|
||||
'alias_search' => array(
|
||||
'base_dn' => 'uid=%local,ou=users,dc=yunohost,dc=org',
|
||||
'filter' => '(objectClass=mailAccount)',
|
||||
'mail_by' => 'attribute',
|
||||
'attr_mail' => 'mailalias',
|
||||
'attr_name' => 'cn',
|
||||
),
|
||||
);
|
||||
|
||||
// skin name: folder from skins/
|
||||
$config['skin'] = 'litecube-f';
|
66
config/config.inc.php.sample
Normal file
66
config/config.inc.php.sample
Normal file
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+-----------------------------------------------------------------------+
|
||||
| Local configuration for the Roundcube Webmail installation. |
|
||||
| |
|
||||
| This is a sample configuration file only containing the minimum |
|
||||
| setup required for a functional installation. Copy more options |
|
||||
| from defaults.inc.php to this file to override the defaults. |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
$config = [];
|
||||
|
||||
// Database connection string (DSN) for read+write operations
|
||||
// Format (compatible with PEAR MDB2): db_provider://user:password@host/database
|
||||
// Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle
|
||||
// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
|
||||
// NOTE: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646'
|
||||
// or (Windows): 'sqlite:///C:/full/path/to/sqlite.db'
|
||||
$config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail';
|
||||
|
||||
// IMAP host chosen to perform the log-in.
|
||||
// See defaults.inc.php for the option description.
|
||||
$config['imap_host'] = 'localhost:143';
|
||||
|
||||
// SMTP server host (for sending mails).
|
||||
// See defaults.inc.php for the option description.
|
||||
$config['smtp_host'] = 'localhost:587';
|
||||
|
||||
// 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';
|
||||
|
||||
// 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'] = '';
|
||||
|
||||
// Name your service. This is displayed on the login screen and in the window title
|
||||
$config['product_name'] = 'Roundcube Webmail';
|
||||
|
||||
// This key is used to encrypt the users imap password which is stored
|
||||
// in the session record. For the default cipher method it must be
|
||||
// exactly 24 characters long.
|
||||
// YOUR KEY MUST BE DIFFERENT THAN THE SAMPLE VALUE FOR SECURITY REASONS
|
||||
$config['des_key'] = 'rcmail-!24ByteDESkey*Str';
|
||||
|
||||
// List of active plugins (in plugins/ directory)
|
||||
$config['plugins'] = [
|
||||
'archive',
|
||||
'zipdownload',
|
||||
];
|
||||
|
||||
// skin name: folder from skins/
|
||||
$config['skin'] = 'elastic';
|
1482
config/defaults.inc.php
Normal file
1482
config/defaults.inc.php
Normal file
File diff suppressed because it is too large
Load Diff
44
config/local.inc.php
Normal file
44
config/local.inc.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
// Name your service. This is displayed on the login screen and in the window title
|
||||
$config['product_name'] = 'MultiBox Webmail';
|
||||
|
||||
// This key is used to encrypt the users imap password which is stored
|
||||
// in the session record. For the default cipher method it must be
|
||||
// exactly 24 characters long.
|
||||
// YOUR KEY MUST BE DIFFERENT THAN THE SAMPLE VALUE FOR SECURITY REASONS
|
||||
$config['des_key'] = 'jybvdIgYeTxiEx61YQ5VUkm0';
|
||||
|
||||
|
||||
// ----------------------------------
|
||||
// USER INTERFACE
|
||||
// ----------------------------------
|
||||
|
||||
// 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'] = 'en_GB';
|
||||
|
||||
// use this format for date display (date or strftime format)
|
||||
$config['date_format'] = 'd.m.Y';
|
||||
|
||||
$config['license_key'] = 'RCP-zxM5wAi4xnpx';
|
||||
|
||||
// List of active plugins (in plugins/ directory)
|
||||
$config['plugins'] = [
|
||||
'xskin',
|
||||
'archive',
|
||||
'zipdownload',
|
||||
'http_authentication',
|
||||
'managesieve',
|
||||
'markasjunk',
|
||||
'new_user_dialog',
|
||||
'new_user_identity',
|
||||
'newmail_notifier',
|
||||
'enigma',
|
||||
'contextmenu',
|
||||
'automatic_addressbook',
|
||||
'carddav',
|
||||
'message_highlight',
|
||||
];
|
||||
|
||||
// skin name: folder from skins/
|
||||
$config['skin'] = 'litecube-f';
|
56
config/mimetypes.php
Normal file
56
config/mimetypes.php
Normal file
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Local mapping file to specify mime-types based on common file-name extensions
|
||||
*
|
||||
* Please note that this mapping takes precedence over the content-based mime-type detection
|
||||
* and should only contain mappings which cannot be detected properly from the file contents.
|
||||
*/
|
||||
|
||||
return [
|
||||
'xls' => 'application/vnd.ms-excel',
|
||||
'xlm' => 'application/vnd.ms-excel',
|
||||
'xla' => 'application/vnd.ms-excel',
|
||||
'xlc' => 'application/vnd.ms-excel',
|
||||
'xlt' => 'application/vnd.ms-excel',
|
||||
'xlw' => 'application/vnd.ms-excel',
|
||||
'pdf' => 'application/pdf',
|
||||
'ppt' => 'application/vnd.ms-powerpoint',
|
||||
'pps' => 'application/vnd.ms-powerpoint',
|
||||
'pot' => 'application/vnd.ms-powerpoint',
|
||||
'doc' => 'application/msword',
|
||||
'dot' => 'application/msword',
|
||||
'odc' => 'application/vnd.oasis.opendocument.chart',
|
||||
'otc' => 'application/vnd.oasis.opendocument.chart-template',
|
||||
'odf' => 'application/vnd.oasis.opendocument.formula',
|
||||
'otf' => 'application/vnd.oasis.opendocument.formula-template',
|
||||
'odg' => 'application/vnd.oasis.opendocument.graphics',
|
||||
'otg' => 'application/vnd.oasis.opendocument.graphics-template',
|
||||
'odi' => 'application/vnd.oasis.opendocument.image',
|
||||
'oti' => 'application/vnd.oasis.opendocument.image-template',
|
||||
'odp' => 'application/vnd.oasis.opendocument.presentation',
|
||||
'otp' => 'application/vnd.oasis.opendocument.presentation-template',
|
||||
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
|
||||
'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
|
||||
'odt' => 'application/vnd.oasis.opendocument.text',
|
||||
'otm' => 'application/vnd.oasis.opendocument.text-master',
|
||||
'ott' => 'application/vnd.oasis.opendocument.text-template',
|
||||
'oth' => 'application/vnd.oasis.opendocument.text-web',
|
||||
'docm' => 'application/vnd.ms-word.document.macroEnabled.12',
|
||||
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
||||
'dotm' => 'application/vnd.ms-word.template.macroEnabled.12',
|
||||
'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
|
||||
'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12',
|
||||
'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
|
||||
'pptm' => 'application/vnd.ms-powerpoint.presentation.macroEnabled.12',
|
||||
'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
||||
'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroEnabled.12',
|
||||
'xlsm' => 'application/vnd.ms-excel.sheet.macroEnabled.12',
|
||||
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
||||
'xps' => 'application/vnd.ms-xpsdocument',
|
||||
'rar' => 'application/x-rar-compressed',
|
||||
'7z' => 'application/x-7z-compressed',
|
||||
's7z' => 'application/x-7z-compressed',
|
||||
'vcf' => 'text/vcard',
|
||||
'ics' => 'text/calendar',
|
||||
];
|
Reference in New Issue
Block a user