From 08f27316eeb57ca927311e4e192248f7532dbc9e Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 11 Dec 2017 08:54:27 +0100 Subject: [PATCH] Fix bug where Archive folder wasn't auto-created on login with create_default_folders=true --- CHANGELOG | 1 + plugins/archive/archive.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 75e82da83..145ed4474 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -62,6 +62,7 @@ CHANGELOG Roundcube Webmail - Fix so temp_dir misconfiguration prints an error to the log (#6045) - Fix untagged COPYUID responses handling - again (#5982) - Fix PHP warning "idn_to_utf8(): INTL_IDNA_VARIANT_2003 is deprecated" with PHP 7.2 (#6075) +- Fix bug where Archive folder wasn't auto-created on login with create_default_folders=true RELEASE 1.3.3 ------------- diff --git a/plugins/archive/archive.php b/plugins/archive/archive.php index c6daed901..6e14659b4 100644 --- a/plugins/archive/archive.php +++ b/plugins/archive/archive.php @@ -12,7 +12,7 @@ */ class archive extends rcube_plugin { - public $task = 'settings|mail'; + public $task = 'settings|mail|login'; function init()