summaryrefslogtreecommitdiff
path: root/plugins/archive/archive.js
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-01-20 16:28:02 +0100
committerThomas Bruederli <thomas@roundcube.net>2013-01-20 16:28:02 +0100
commit67cb017b0cdda3c2dcc7d9434fdbaca5f4ead938 (patch)
treec98ca68022b83a73bc34d913d274ed9e7243960f /plugins/archive/archive.js
parent1ef4033b8d6aa2ec8559f6aea5f35c9044e033e4 (diff)
Extend archive plugin with user-configurable options to move messages into subfolders according to their date, sender or originating folder
Diffstat (limited to 'plugins/archive/archive.js')
-rw-r--r--plugins/archive/archive.js23
1 files changed, 20 insertions, 3 deletions
diff --git a/plugins/archive/archive.js b/plugins/archive/archive.js
index af2b0d26d..eee41d336 100644
--- a/plugins/archive/archive.js
+++ b/plugins/archive/archive.js
@@ -1,6 +1,6 @@
/*
* Archive plugin script
- * @version @package_version@
+ * @version 2.0
*/
function rcmail_archive(prop)
@@ -8,8 +8,19 @@ function rcmail_archive(prop)
if (!rcmail.env.uid && (!rcmail.message_list || !rcmail.message_list.get_selection().length))
return;
- if (rcmail.env.mailbox != rcmail.env.archive_folder)
- rcmail.command('moveto', rcmail.env.archive_folder);
+ if (rcmail.env.mailbox.indexOf(rcmail.env.archive_folder) != 0) {
+ if (!rcmail.env.archive_type) {
+ // simply move to archive folder (if no partition type is set)
+ rcmail.command('moveto', rcmail.env.archive_folder);
+ }
+ else {
+ // let the server sort the messages to the according subfolders
+ rcmail.http_post(
+ 'plugin.move2archive',
+ { _uid: rcmail.message_list.get_selection().join(','), _mbox: rcmail.env.mailbox }
+ );
+ }
+ }
}
// callback for app-onload event
@@ -29,6 +40,12 @@ if (window.rcmail) {
var li;
if (rcmail.env.archive_folder && (li = rcmail.get_folder_li(rcmail.env.archive_folder, '', true)))
$(li).addClass('archive');
+
+ // callback for server response
+ rcmail.addEventListener('plugin.move2archive_response', function(result) {
+ if (result.update)
+ rcmail.command('checkmail'); // refresh list
+ });
})
}