From d72a41dc8e9bf523b45e04d4226f63fb7502c349 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 30 Oct 2013 09:35:03 +0100 Subject: Make sure all folders in the path are created - ie. if archive folder is configured as Archive/YYYY/MM, create both Archive/YYYY and Archive/YYYY/MM. --- plugins/archive/archive.php | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) (limited to 'plugins/archive/archive.php') diff --git a/plugins/archive/archive.php b/plugins/archive/archive.php index 7a81606ab..4ef46e4f4 100644 --- a/plugins/archive/archive.php +++ b/plugins/archive/archive.php @@ -110,19 +110,20 @@ class archive extends rcube_plugin */ function move_messages() { - $rcmail = rcmail::get_instance(); $this->add_texts('localization'); - $storage = $rcmail->get_storage(); - $storage->set_folder(($current_mbox = rcube_utils::get_input_value('_mbox', RCUBE_INPUT_POST))); - - $delimiter = $storage->get_hierarchy_delimiter(); + $rcmail = rcmail::get_instance(); + $storage = $rcmail->get_storage(); + $delimiter = $storage->get_hierarchy_delimiter(); $archive_folder = $rcmail->config->get('archive_mbox'); - $archive_type = $rcmail->config->get('archive_type', ''); + $archive_type = $rcmail->config->get('archive_type', ''); - $result = array('reload' => false, 'update' => false, 'errors' => array()); + $storage->set_folder(($current_mbox = rcube_utils::get_input_value('_mbox', RCUBE_INPUT_POST))); + + $result = array('reload' => false, 'update' => false, 'errors' => array()); + $uids = explode(',', rcube_utils::get_input_value('_uid', RCUBE_INPUT_POST)); + $folders = array(); - $uids = explode(',', rcube_utils::get_input_value('_uid', RCUBE_INPUT_POST)); foreach ($uids as $uid) { if (!$archive_folder || !($message = $rcmail->storage->get_message($uid))) { continue; @@ -164,12 +165,24 @@ class archive extends rcube_plugin } // compose full folder path - $folder = $archive_folder . ($subfolder ? $delimiter . $subfolder : ''); + $folder = $archive_folder . ($subfolder ? $delimiter . $subfolder : ''); // create archive subfolder if it doesn't yet exist - if (!$storage->folder_exists($folder, false)) { - if ($storage->create_folder($folder, true)) - $result['reload'] = true; + // we'll create all folders in the path + if (!in_array($folder, $folders)) { + $list = $storage->list_folders('', $archive_folder . '*', 'mail', null, true); + $path = explode($delimiter, $folder); + + for ($i=0; $icreate_folder($_folder, true)) { + $result['reload'] = true; + } + } + } + + $folders[] = $folder; } // move message to target folder -- cgit v1.2.3