diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-11-21 08:53:17 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-11-21 08:53:17 +0100 |
commit | aef6ed4702ce50e7eb67b73a380e0b91c1f3376c (patch) | |
tree | b9ea7dc122f3fb13088f6fb7d6133df79fd2230b /program/lib/Roundcube/rcube.php | |
parent | 3b8a7918fc315f71fe48608060588e026b55d85a (diff) |
Add hook to notify plugins about message sending errors
Diffstat (limited to 'program/lib/Roundcube/rcube.php')
-rw-r--r-- | program/lib/Roundcube/rcube.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php index 399f84fd8..e0fa22c3c 100644 --- a/program/lib/Roundcube/rcube.php +++ b/program/lib/Roundcube/rcube.php @@ -1537,6 +1537,10 @@ class rcube !empty($response) ? join('; ', $response) : '')); } } + else { + // allow plugins to catch sending errors with the same parameters as in 'message_before_send' + $this->plugins->exec_hook('message_send_error', $plugin + array('error' => $error)); + } if (is_resource($msg_body)) { fclose($msg_body); |