diff options
| -rw-r--r-- | CHANGELOG | 1 | ||||
| -rw-r--r-- | program/lib/Roundcube/rcube_imap.php | 11 | 
2 files changed, 12 insertions, 0 deletions
| @@ -1,6 +1,7 @@  CHANGELOG Roundcube Webmail  =========================== +- Plugin API: Added message_saved hook (#1489752)  - Support messages import from zip archives  - Zipdownload: Added mbox format support (#1486069)  - Drop support for IE6, move IE7/IE8 support to legacy_browser plugin diff --git a/program/lib/Roundcube/rcube_imap.php b/program/lib/Roundcube/rcube_imap.php index b3ae9608c..f2ade9545 100644 --- a/program/lib/Roundcube/rcube_imap.php +++ b/program/lib/Roundcube/rcube_imap.php @@ -2457,6 +2457,17 @@ class rcube_imap extends rcube_storage          if ($saved) {              // increase messagecount of the target folder              $this->set_messagecount($folder, 'ALL', 1); + +            rcube::get_instance()->plugins->exec_hook('message_saved', array( +                    'folder'  => $folder, +                    'message' => $message, +                    'headers' => $headers, +                    'is_file' => $is_file, +                    'flags'   => $flags, +                    'date'    => $date, +                    'binary'  => $binary, +                    'result'  => $saved, +            ));          }          return $saved; | 
