tbrehm
2011-04-05 ae6af9ea4fe89568055fbd68e4d5348c8a9b9b1d
Fixed: FS#1561 - Filter rule to send email copys is only created on update and not on insert.
2 files modified
2 ■■■■■ changed files
server/plugins-available/maildeliver_plugin.inc.php 1 ●●●● patch | view | raw | blame | history
server/plugins-available/maildrop_plugin.inc.php 1 ●●●● patch | view | raw | blame | history
server/plugins-available/maildeliver_plugin.inc.php
@@ -60,6 +60,7 @@
        Register for the events
        */
        
        $app->plugins->registerEvent('mail_user_insert','maildeliver_plugin','update');
        $app->plugins->registerEvent('mail_user_update','maildeliver_plugin','update');
        $app->plugins->registerEvent('mail_user_delete','maildeliver_plugin','delete');
        
server/plugins-available/maildrop_plugin.inc.php
@@ -60,6 +60,7 @@
        Register for the events
        */
        
        $app->plugins->registerEvent('mail_user_update','maildrop_plugin','insert');
        $app->plugins->registerEvent('mail_user_update','maildrop_plugin','update');
        $app->plugins->registerEvent('mail_user_delete','maildrop_plugin','delete');