Upgrade Roundcube to 1.6.0 (#6)

Co-authored-by: meaz <meaz@disroot.org>
Reviewed-on: #6
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
This commit is contained in:
meaz 2022-09-06 14:59:03 +00:00
parent b404bc9cb4
commit 1ed1adecc4
6 changed files with 64 additions and 38 deletions

View file

@ -1,7 +1,7 @@
--- ---
rcube_release_dir_path: '/var/www/roundcube_releases' rcube_release_dir_path: '/var/www/roundcube_releases'
rcube_version: '1.5.2' rcube_version: '1.6.0'
rcube_latest_path: '/var/www/roundcube_latest' rcube_latest_path: '/var/www/roundcube_latest'
rcube_app_username: 'www-data' rcube_app_username: 'www-data'
rcube_app_group: 'www-data' rcube_app_group: 'www-data'
@ -35,7 +35,7 @@ rcube_custom_themes: #add you custom theme
branch: '' branch: ''
#PHP Vars #PHP Vars
php_version: '7.4' php_version: '8.0'
php_etc_path: '/etc/php' php_etc_path: '/etc/php'
install_php: 'true' install_php: 'true'
pool_listen: '/var/run/php/php{{ php_version }}-fpm.sock' pool_listen: '/var/run/php/php{{ php_version }}-fpm.sock'

View file

@ -59,7 +59,7 @@
- name: "[CARDDAV] - Add carddav in config.inc.php" - name: "[CARDDAV] - Add carddav in config.inc.php"
lineinfile: lineinfile:
path: "{{ rcube_latest_path }}/config/config.inc.php" path: "{{ rcube_latest_path }}/config/config.inc.php"
insertafter: "^.{1}config.{2}plugins.*array.$" insertafter: "^.{1}config.{2}plugins.*$"
line: "'carddav'," line: "'carddav',"
state: present state: present
when: carddav_in_config.stdout == "1" when: carddav_in_config.stdout == "1"

View file

@ -22,3 +22,4 @@
- include: carddav.yml - include: carddav.yml
when: rcube_plugins_carddav == 'yes' when: rcube_plugins_carddav == 'yes'
tags: carddav

View file

@ -12,21 +12,22 @@
{% if rcube_plugins_carddav == 'yes' %} {% if rcube_plugins_carddav == 'yes' %}
{{ rcube_plugins_carddav_composer }} {{ rcube_plugins_carddav_composer }}
{% endif %} {% endif %}
"php": ">=5.5.0", "php": ">=7.3.0",
"pear/pear-core-minimal": "~1.10.1", "pear/pear-core-minimal": "~1.10.1",
"pear/auth_sasl": "~1.1.0", "pear/auth_sasl": "~1.1.0",
"pear/mail_mime": "~1.10.0", "pear/mail_mime": "~1.10.0",
"pear/net_smtp": "~1.10.0", "pear/net_smtp": "~1.10.0",
"pear/crypt_gpg": "~1.6.3", "pear/crypt_gpg": "~1.6.3",
"pear/net_sieve": "~1.4.5", "pear/net_sieve": "~1.4.5",
"roundcube/plugin-installer": "~0.3.0", "roundcube/plugin-installer": "~0.3.1",
"roundcube/rtf-html-php": "~2.1", "roundcube/rtf-html-php": "~2.1",
"masterminds/html5": "~2.7.0", "masterminds/html5": "~2.7.0",
"endroid/qr-code": "~1.6.5", "bacon/bacon-qr-code": "^2.0.0",
"guzzlehttp/guzzle": "^6.5.5" "guzzlehttp/guzzle": "^7.3.0",
"symfony/deprecation-contracts": "2.2"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6 || ^7" "phpunit/phpunit": "^9"
}, },
"suggest": { "suggest": {
"kolab/net_ldap3": "~1.1.1 required for connecting to LDAP", "kolab/net_ldap3": "~1.1.1 required for connecting to LDAP",

View file

@ -17,7 +17,7 @@
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
*/ */
$config = array(); $config = [];
// ---------------------------------- // ----------------------------------
// SQL DATABASE // SQL DATABASE
@ -27,29 +27,20 @@ $config = array();
// Format (compatible with PEAR MDB2): db_provider://user:password@host/database // Format (compatible with PEAR MDB2): db_provider://user:password@host/database
// Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle // 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 // 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' // NOTE: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646'
// or (Windows): 'sqlite:///C:/full/path/to/sqlite.db' // or (Windows): 'sqlite:///C:/full/path/to/sqlite.db'
// Note: Various drivers support various additional arguments for connection,
// for Mysql: key, cipher, cert, capath, ca, verify_server_cert,
// for Postgres: application_name, sslmode, sslcert, sslkey, sslrootcert, sslcrl, sslcompression, service.
// e.g. 'mysql://roundcube:@localhost/roundcubemail?verify_server_cert=false'
$config['db_dsnw'] = '{{ rcube_db_plugin }}://{{ rcube_db_username }}:{{ rcube_db_passwd }}@{{ rcube_db_hostname }}/{{ rcube_db_name }}'; $config['db_dsnw'] = '{{ rcube_db_plugin }}://{{ rcube_db_username }}:{{ rcube_db_passwd }}@{{ rcube_db_hostname }}/{{ rcube_db_name }}';
// Log sent messages to <log_dir>/sendmail.log or to syslog
$config['smtp_log'] = {{ rcube_smpt_log }};
// Log LDAP conversation to <log_dir>/ldap.log or to syslog
$config['ldap_debug'] = {{ rcube_ldap_debug }};
// ---------------------------------- // ----------------------------------
// IMAP // IMAP
// ---------------------------------- // ----------------------------------
// The IMAP host chosen to perform the log-in. // The IMAP host (and optionally port number) chosen to perform the log-in.
// Leave blank to show a textbox at login, give a list of hosts // 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 display a pulldown menu or set one host as string.
// Enter hostname with prefix ssl:// to use Implicit TLS, or use // Enter hostname with prefix ssl:// to use Implicit TLS, or use
// prefix tls:// to use STARTTLS. // prefix tls:// to use STARTTLS.
// If port number is omitted it will be set to 993 (for ssl://) or 143 otherwise.
// Supported replacement variables: // Supported replacement variables:
// %n - hostname ($_SERVER['SERVER_NAME']) // %n - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part // %t - hostname without the first part
@ -58,15 +49,26 @@ $config['ldap_debug'] = {{ rcube_ldap_debug }};
// For example %n = mail.domain.tld, %t = domain.tld // For example %n = mail.domain.tld, %t = domain.tld
// WARNING: After hostname change update of mail_host column in users table is // WARNING: After hostname change update of mail_host column in users table is
// required to match old user data records with the new host. // required to match old user data records with the new host.
$config['default_host'] = '{{ rcube_default_host }}';
// IMAP host chosen to perform the log-in.
// See defaults.inc.php for the option description.
$config['imap_host'] = '{{ rcube_default_host }}';
// Log LDAP conversation to <log_dir>/ldap.log or to syslog
$config['ldap_debug'] = {{ rcube_ldap_debug }};
// ---------------------------------- // ----------------------------------
// SMTP // SMTP
// ---------------------------------- // ----------------------------------
// SMTP server host (for sending mails). // SMTP server host (for sending mails).
// See defaults.inc.php for the option description.
$config['smtp_host'] = '{{ rcube_security_proto }}://{{ rcube_smtp_server }}:{{ rcube_smpt_port }}';
// SMTP server host (and optional port number) for sending mails.
// Enter hostname with prefix ssl:// to use Implicit TLS, or use // Enter hostname with prefix ssl:// to use Implicit TLS, or use
// prefix tls:// to use STARTTLS. // prefix tls:// to use STARTTLS.
// If port number is omitted it will be set to 465 (for ssl://) or 587 otherwise.
// Supported replacement variables: // Supported replacement variables:
// %h - user's IMAP hostname // %h - user's IMAP hostname
// %n - hostname ($_SERVER['SERVER_NAME']) // %n - hostname ($_SERVER['SERVER_NAME'])
@ -74,10 +76,8 @@ $config['default_host'] = '{{ rcube_default_host }}';
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part) // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %z - IMAP domain (IMAP hostname without the first part) // %z - IMAP domain (IMAP hostname without the first part)
// For example %n = mail.domain.tld, %t = domain.tld // For example %n = mail.domain.tld, %t = domain.tld
$config['smtp_server'] = '{{ rcube_security_proto }}://{{ rcube_smtp_server }}'; // 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']
// SMTP port. Use 25 for cleartext, 465 for Implicit TLS, or 587 for STARTTLS (default)
$config['smtp_port'] = {{ rcube_smpt_port }};
// SMTP username (if required) if you use %u as the username Roundcube // SMTP username (if required) if you use %u as the username Roundcube
// will use the current username for login // will use the current username for login
@ -87,6 +87,9 @@ $config['smtp_user'] = '{{ rcube_smtp_user }}';
// will use the current user's password for login // will use the current user's password for login
$config['smtp_pass'] = '{{ rcube_smtp_passwd }}'; $config['smtp_pass'] = '{{ rcube_smtp_passwd }}';
// Log sent messages to <log_dir>/sendmail.log or to syslog
$config['smtp_log'] = {{ rcube_smpt_log }};
// ---------------------------------- // ----------------------------------
// SYSTEM // SYSTEM
// ---------------------------------- // ----------------------------------
@ -102,12 +105,10 @@ $config['log_dir'] = '{{ rcube_logdir }}';
// use this folder to store temp files // 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) // must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
$config['temp_dir'] = '{{ rcube_temp_dir }}'; $config['temp_dir'] = '{{ rcube_temp_dir }}';// Name your service. This is displayed on the login screen and in the window title// 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
// This key is used for encrypting purposes, like storing of imap password // exactly 24 characters long.
// in the session. For historical reasons it's called DES_key, but it's used // YOUR KEY MUST BE DIFFERENT THAN THE SAMPLE VALUE FOR SECURITY REASONS
// with any configured cipher_method (see below).
// For the default cipher_method a required key length is 24 characters.
$config['des_key'] = '{{ rcube_des_key }}'; $config['des_key'] = '{{ rcube_des_key }}';
// Name your service. This is displayed on the login screen and in the window title // Name your service. This is displayed on the login screen and in the window title
@ -119,13 +120,13 @@ $config['product_name'] = '{{ rcube_product_name }}';
// ---------------------------------- // ----------------------------------
// List of active plugins (in plugins/ directory) // List of active plugins (in plugins/ directory)
$config['plugins'] = array( $config['plugins'] = [
{% if rcube_plugins is defined %} {% if rcube_plugins is defined %}
{% for item in rcube_plugins %} {% for item in rcube_plugins %}
'{{ item.name }}', '{{ item.name }}',
{% endfor %} {% endfor %}
{% endif %} {% endif %}
); ];
// skin name: folder from skins/ // skin name: folder from skins/
$config['skin'] = '{{ rcube_default_skin }}'; $config['skin'] = '{{ rcube_default_skin }}';
@ -141,7 +142,7 @@ $config['language'] = '{{ rcube_default_lang }}';
// give this choice of date formats to the user to select from // give this choice of date formats to the user to select from
// Note: do not use ambiguous formats like m/d/Y // Note: do not use ambiguous formats like m/d/Y
$config['date_formats'] = array('Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'); $config['date_formats'] = ['Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'];
// Make use of the built-in spell checker. It is based on GoogieSpell. // Make use of the built-in spell checker. It is based on GoogieSpell.
$config['enable_spellcheck'] = {{ rcube_enable_spellcheck }}; $config['enable_spellcheck'] = {{ rcube_enable_spellcheck }};
@ -186,9 +187,9 @@ $config['htmleditor'] = {{ rcube_htmleditor }};
// 0 - Full RFC 2231 compatible // 0 - Full RFC 2231 compatible
// 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default) // 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)
// 2 - Full 2047 compatible // 2 - Full 2047 compatible
$config['mime_param_folding'] = 0; $config['mime_param_folding'] = 1;
// Default font for composed HTML message. // Default font for composed HTML message.
// Supported values: Andale Mono, Arial, Arial Black, Book Antiqua, Courier New, // Supported values: Andale Mono, Arial, Arial Black, Book Antiqua, Courier New,
// Georgia, Helvetica, Impact, Tahoma, Terminal, Times New Roman, Trebuchet MS, Verdana // Georgia, Helvetica, Impact, Tahoma, Terminal, Times New Roman, Trebuchet MS, Verdana
$config['default_font'] = 'Arial'; $config['default_font'] = 'Verdana';

View file

@ -29,6 +29,28 @@
$prefs['_GLOBAL']['loglevel'] = \Psr\Log\LogLevel::WARNING; $prefs['_GLOBAL']['loglevel'] = \Psr\Log\LogLevel::WARNING;
$prefs['_GLOBAL']['loglevel_http'] = \Psr\Log\LogLevel::ERROR; $prefs['_GLOBAL']['loglevel_http'] = \Psr\Log\LogLevel::ERROR;
// Select addressbook from preset to use as Roundcube's collected recipients or collected/trusted senders addressbook,
// corresponding to the roundcube options of the same name available since roundcube 1.5.
// Note that only writeable addressbooks can be used for this. If you do not want to use these options, simply do not
// define them
// If no/several addressbooks match, the roundcube setting will not be set and stay with whatever is configured in roundcube
//$prefs['_GLOBAL']['collected_recipients'] = [
// // Key of the preset, i.e. whatever is used for <Presetname> in the template below
// 'preset' => '<Presetname>',
// // The placeholders that can be used in the url attribute can also be used inside these regular rexpressions
// // If both matchname and matchurl are given, both need to match for the addressbook to be used
// 'matchname' => '/collected recipients/i',
// 'matchurl' => '#http://carddav.example.com/abooks/%u/CollectedRecipients#',
//];
//$prefs['_GLOBAL']['collected_senders'] = [
// // Key of the preset, i.e. whatever is used for <Presetname> in the template below
// 'preset' => '<Presetname>',
// // The placeholders that can be used in the url attribute can also be used inside these regular rexpressions
// // If both matchname and matchurl are given, both need to match for the addressbook to be used
// 'matchname' => '/collected recipients/i',
// 'matchurl' => '#http://carddav.example.com/abooks/%u/CollectedRecipients#',
//];
//// ** ADDRESSBOOK PRESETS //// ** ADDRESSBOOK PRESETS
// Each addressbook preset takes the following form: // Each addressbook preset takes the following form:
@ -39,7 +61,7 @@ $prefs['{{ rcube_plugins_carddav_presetname }}'] = [
'url' => '{{ rcube_plugins_carddav_url }}', 'url' => '{{ rcube_plugins_carddav_url }}',
// required attributes unless passwordless authentication is used (Kerberos) // required attributes unless passwordless authentication is used (Kerberos)
'username' => '%u', 'username' => '%l',
'password' => '%p', 'password' => '%p',
// optional attributes // optional attributes
@ -58,3 +80,4 @@ $prefs['{{ rcube_plugins_carddav_presetname }}'] = [
]; ];
// vim: ts=4:sw=4:expandtab:fenc=utf8:ff=unix:tw=120 // vim: ts=4:sw=4:expandtab:fenc=utf8:ff=unix:tw=120