diff options
author | Remi Collet <remi@remirepo.net> | 2022-03-07 12:40:30 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2022-03-07 12:40:30 +0100 |
commit | 8290b52748f2c395a22997d16c88df67dad659ac (patch) | |
tree | 9ab9f4d4654ecf8e29453b2d423c114c8d104762 /roundcubemail-1.6-legacy.patch | |
parent | f1746fa3fd05ee8f251c175f91544b8e887720c1 (diff) |
update to 1.6-beta
raise dependency on PHP 7.3
add patch to keep use default_host and smtp_server
from https://github.com/roundcube/roundcubemail/pull/8467
Diffstat (limited to 'roundcubemail-1.6-legacy.patch')
-rw-r--r-- | roundcubemail-1.6-legacy.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/roundcubemail-1.6-legacy.patch b/roundcubemail-1.6-legacy.patch new file mode 100644 index 0000000..dc88baf --- /dev/null +++ b/roundcubemail-1.6-legacy.patch @@ -0,0 +1,22 @@ +From 425c93ff6096d9bf6e7cfdba228ecf4fcdc6b3d5 Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Mon, 7 Mar 2022 12:31:42 +0100 +Subject: [PATCH] add imap and smtp host in legacy config options + +--- + program/lib/Roundcube/rcube_config.php | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/program/lib/Roundcube/rcube_config.php b/program/lib/Roundcube/rcube_config.php +index e706226651..d7bb8463fa 100644 +--- a/program/lib/Roundcube/rcube_config.php ++++ b/program/lib/Roundcube/rcube_config.php +@@ -55,6 +55,8 @@ class rcube_config + 'mail_read_time' => 'preview_pane_mark_read', + 'session_debug' => 'log_session', + 'redundant_attachments_cache_ttl' => 'redundant_attachments_memcache_ttl', ++ 'imap_host' => 'default_host', ++ 'smtp_host' => 'smtp_server', + ]; + + /** |