From b7afdec4c575e3513126dbfaf9004d88f4cdc779 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Fri, 07 Mar 2008 12:48:25 -0500
Subject: [PATCH] Added language file editor.
---
interface/web/admin/lib/lang/en_language_edit.lng | 8
interface/web/admin/language_edit.php | 96 ++++
server/ispconfig.log | 853 ++++++++++++++++++++++++++++++++++++++++
interface/web/admin/language_add.php | 102 ++++
interface/web/admin/templates/language_add.htm | 13
interface/web/admin/templates/language_list.htm | 17
interface/web/admin/lib/lang/en_language_add.lng | 7
interface/web/admin/templates/language_edit.htm | 36 +
interface/web/admin/lib/lang/en_language_list.lng | 6
interface/web/admin/language_list.php | 99 ++++
10 files changed, 1,237 insertions(+), 0 deletions(-)
diff --git a/interface/web/admin/language_add.php b/interface/web/admin/language_add.php
new file mode 100644
index 0000000..3b66fb6
--- /dev/null
+++ b/interface/web/admin/language_add.php
@@ -0,0 +1,102 @@
+<?php
+/*
+Copyright (c) 2008, Till Brehm, projektfarm Gmbh
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ * Neither the name of ISPConfig nor the names of its contributors
+ may be used to endorse or promote products derived from this software without
+ specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+require_once('../../lib/config.inc.php');
+require_once('../../lib/app.inc.php');
+
+// Checking permissions for the module
+if(!stristr($_SESSION['s']['user']['modules'],'admin')) {
+ header('Location: ../index.php');
+ exit;
+}
+
+//* This is only allowed for administrators
+if(!$app->auth->is_admin()) die('only allowed for administrators.');
+
+$app->uses('tpl');
+
+$app->tpl->newTemplate('form.tpl.htm');
+$app->tpl->setInclude('content_tpl', 'templates/language_add.htm');
+
+//* reading languages
+$language_option = '';
+$error = '';
+$msg = '';
+$selected_language = (isset($_REQUEST['lng_select']))?substr($_REQUEST['lng_select'],0,2):'en';
+$handle = opendir(ISPC_ROOT_PATH.'/lib/lang/');
+while ($file = readdir ($handle)) {
+ if ($file != '.' && $file != '..') {
+ $tmp_lng = substr($file,0,-4);
+ if($tmp_lng !='') {
+ $selected = ($tmp_lng == $selected_language)?'SELECTED':'';
+ $language_option .= "<option value='$tmp_lng' $selected>$tmp_lng</option>";
+ if(isset($_POST['lng_new']) && $_POST['lng_new'] == $tmp_lng) $error = 'Language exists already.';
+ }
+ }
+}
+$app->tpl->setVar('language_option',$language_option);
+$app->tpl->setVar('error',$error);
+
+if(isset($_POST['lng_new']) && strlen($_POST['lng_new']) == 2 && $error == '') {
+ $lng_new = $_POST['lng_new'];
+ if(!preg_match("/^[a-z]{2}$/i", $lng_new)) die('unallowed characters in language name.');
+
+ //* Make a copy of every language file
+ $bgcolor = '#FFFFFF';
+ $language_files_list = array();
+ $handle = @opendir(ISPC_WEB_PATH);
+ while ($file = @readdir ($handle)) {
+ if ($file != '.' && $file != '..') {
+ if(@is_dir(ISPC_WEB_PATH.'/'.$file.'/lib/lang')) {
+ $handle2 = opendir(ISPC_WEB_PATH.'/'.$file.'/lib/lang');
+ while ($lang_file = @readdir ($handle2)) {
+ if ($lang_file != '.' && $lang_file != '..' && substr($lang_file,0,2) == $selected_language) {
+ $new_lang_file = $lng_new.substr($lang_file,2);
+ //echo ISPC_WEB_PATH.'/'.$file.'/lib/lang/'.$lang_file.' ## '.ISPC_WEB_PATH.'/'.$file.'/lib/lang/'.$new_lang_file;
+ copy(ISPC_WEB_PATH.'/'.$file.'/lib/lang/'.$lang_file,ISPC_WEB_PATH.'/'.$file.'/lib/lang/'.$new_lang_file);
+ $msg = 'Added new language '.$lng_new;
+ }
+ }
+ }
+ }
+ }
+}
+
+$app->tpl->setVar('msg',$msg);
+
+//* load language file
+$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_language_add.lng';
+include($lng_file);
+$app->tpl->setVar($wb);
+
+$app->tpl_defaults();
+$app->tpl->pparse();
+
+
+?>
\ No newline at end of file
diff --git a/interface/web/admin/language_edit.php b/interface/web/admin/language_edit.php
new file mode 100644
index 0000000..6329339
--- /dev/null
+++ b/interface/web/admin/language_edit.php
@@ -0,0 +1,96 @@
+<?php
+/*
+Copyright (c) 2008, Till Brehm, projektfarm Gmbh
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ * Neither the name of ISPConfig nor the names of its contributors
+ may be used to endorse or promote products derived from this software without
+ specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+require_once('../../lib/config.inc.php');
+require_once('../../lib/app.inc.php');
+
+// Checking permissions for the module
+if(!stristr($_SESSION['s']['user']['modules'],'admin')) {
+ header('Location: ../index.php');
+ exit;
+}
+
+//* This is only allowed for administrators
+if(!$app->auth->is_admin()) die('only allowed for administrators.');
+
+$app->uses('tpl');
+
+$app->tpl->newTemplate('form.tpl.htm');
+$app->tpl->setInclude('content_tpl', 'templates/language_edit.htm');
+
+$lang = $_REQUEST['lang'];
+$module = $_REQUEST['module'];
+$lang_file = $_REQUEST['lang_file'];
+
+if(!preg_match("/^[a-z]+$/i", $lang)) die('unallowed characters in language name.');
+if(!preg_match("/^[a-z_]+$/i", $module)) die('unallowed characters in module name.');
+if(!preg_match("/^[a-z\._]+$/i", $lang_file)) die('unallowed characters in language file name.');
+
+$msg = '';
+
+//* Save data
+if(isset($_POST['records']) && is_array($_POST['records'])) {
+ $file_content = "<?php\n";
+ foreach($_POST['records'] as $key => $val) {
+ $val = stripslashes($val);
+ $val = str_replace("'",'',$val);
+ $val = str_replace('"','',$val);
+ $file_content .= '$wb['."'$key'".'] = '."'$val';\n";
+ $msg = 'File saved.';
+ }
+ $file_content .= "?>\n";
+ file_put_contents(ISPC_WEB_PATH."/$module/lib/lang/$lang_file" ,$file_content);
+}
+
+
+$app->tpl->setVar(array('module' => $module,'lang_file' => $lang_file, 'lang' => $lang, 'msg' => $msg));
+
+include(ISPC_WEB_PATH."/$module/lib/lang/$lang_file");
+
+$keyword_list = array();
+if(isset($wb) && is_array($wb)) {
+ foreach($wb as $key => $val) {
+ $keyword_list[] = array('key' => $key, 'val' => $val);
+ }
+
+ $app->tpl->setLoop('records', $keyword_list);
+ unset($wb);
+}
+
+
+//* load language file
+$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_language_edit.lng';
+include($lng_file);
+$app->tpl->setVar($wb);
+
+$app->tpl_defaults();
+$app->tpl->pparse();
+
+
+?>
\ No newline at end of file
diff --git a/interface/web/admin/language_list.php b/interface/web/admin/language_list.php
new file mode 100644
index 0000000..17eab0e
--- /dev/null
+++ b/interface/web/admin/language_list.php
@@ -0,0 +1,99 @@
+<?php
+/*
+Copyright (c) 2008, Till Brehm, projektfarm Gmbh
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ * Neither the name of ISPConfig nor the names of its contributors
+ may be used to endorse or promote products derived from this software without
+ specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+require_once('../../lib/config.inc.php');
+require_once('../../lib/app.inc.php');
+
+// Checking permissions for the module
+if(!stristr($_SESSION['s']['user']['modules'],'admin')) {
+ header('Location: ../index.php');
+ exit;
+}
+
+//* This is only allowed for administrators
+if(!$app->auth->is_admin()) die('only allowed for administrators.');
+
+$app->uses('tpl');
+
+$app->tpl->newTemplate('form.tpl.htm');
+$app->tpl->setInclude('content_tpl', 'templates/language_list.htm');
+
+
+//* reading languages
+$language_option = '';
+$selected_language = (isset($_REQUEST['lng_select']))?substr($_REQUEST['lng_select'],0,2):'en';
+$handle = opendir(ISPC_ROOT_PATH.'/lib/lang/');
+while ($file = readdir ($handle)) {
+ if ($file != '.' && $file != '..') {
+ $tmp_lng = substr($file,0,-4);
+ if($tmp_lng !='') {
+ $selected = ($tmp_lng == $selected_language)?'SELECTED':'';
+ $language_option .= "<option value='$tmp_lng' $selected>$tmp_lng</option>";
+ }
+ }
+}
+$app->tpl->setVar('language_option',$language_option);
+// $app->tpl->setLoop('records', $language_list);
+
+//* list all language files of the selected language
+$bgcolor = '#FFFFFF';
+$language_files_list = array();
+$handle = @opendir(ISPC_WEB_PATH);
+while ($file = @readdir ($handle)) {
+ if ($file != '.' && $file != '..') {
+ if(@is_dir(ISPC_WEB_PATH.'/'.$file.'/lib/lang')) {
+ $handle2 = opendir(ISPC_WEB_PATH.'/'.$file.'/lib/lang');
+ while ($lang_file = @readdir ($handle2)) {
+ if ($lang_file != '.' && $lang_file != '..' && substr($lang_file,0,2) == $selected_language) {
+ $bgcolor = ($bgcolor == '#FFFFFF') ? '#EEEEEE' : '#FFFFFF';
+ $language_files_list[] = array( 'module' => $file,
+ 'lang_file' => $lang_file,
+ 'bgcolor' => $bgcolor,
+ 'lang' => $selected_language);
+ }
+ }
+ }
+ }
+}
+
+$app->tpl->setLoop('records', $language_files_list);
+
+
+
+
+//* load language file
+$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_language_list.lng';
+include($lng_file);
+$app->tpl->setVar($wb);
+
+$app->tpl_defaults();
+$app->tpl->pparse();
+
+
+?>
\ No newline at end of file
diff --git a/interface/web/admin/lib/lang/en_language_add.lng b/interface/web/admin/lib/lang/en_language_add.lng
new file mode 100644
index 0000000..519da57
--- /dev/null
+++ b/interface/web/admin/lib/lang/en_language_add.lng
@@ -0,0 +1,7 @@
+<?php
+$wb["list_head_txt"] = 'Add new language';
+$wb["language_select_txt"] = 'Select language basis';
+$wb["language_new_txt"] = 'New language';
+$wb['btn_save_txt'] = 'Create new language file set';
+$wb['btn_cancel_txt'] = 'Back';
+?>
\ No newline at end of file
diff --git a/interface/web/admin/lib/lang/en_language_edit.lng b/interface/web/admin/lib/lang/en_language_edit.lng
new file mode 100644
index 0000000..4c50e88
--- /dev/null
+++ b/interface/web/admin/lib/lang/en_language_edit.lng
@@ -0,0 +1,8 @@
+<?php
+$wb['list_head_txt'] = 'Language file editor';
+$wb['language_select_txt'] = 'Select language';
+$wb['module_txt'] = 'Module';
+$wb['lang_file_txt'] = 'Language file';
+$wb['btn_save_txt'] = 'Save';
+$wb['btn_cancel_txt'] = 'Back';
+?>
diff --git a/interface/web/admin/lib/lang/en_language_list.lng b/interface/web/admin/lib/lang/en_language_list.lng
new file mode 100644
index 0000000..3b0a988
--- /dev/null
+++ b/interface/web/admin/lib/lang/en_language_list.lng
@@ -0,0 +1,6 @@
+<?php
+$wb["list_head_txt"] = 'Language file editor';
+$wb["language_select_txt"] = 'Select language';
+$wb["module_txt"] = 'Module';
+$wb["lang_file_txt"] = 'Language file';
+?>
\ No newline at end of file
diff --git a/interface/web/admin/templates/language_add.htm b/interface/web/admin/templates/language_add.htm
new file mode 100644
index 0000000..f9db2fe
--- /dev/null
+++ b/interface/web/admin/templates/language_add.htm
@@ -0,0 +1,13 @@
+<div class="frmTextHead"><tmpl_var name="list_head_txt"></div><br />
+<p class="frmText11">
+ <tmpl_var name="language_select_txt">: <select name="lng_select">{tmpl_var name='language_option'}</select>
+ <tmpl_var name="language_new_txt">: <input type="text" name="lng_new" value="" class="text" size="2" maxlength="2" />
+</p>
+<tmpl_if name="msg">
+ <p class="msg" ><tmpl_var name="msg"></p>
+</tmpl_if>
+<tmpl_if name="error">
+ <p class="error" ><tmpl_var name="error"></p>
+</tmpl_if>
+<input name="btn_save" type="button" class="button" value="{tmpl_var name='btn_save_txt'}" onClick="submitForm('pageForm','admin/language_add.php');"><div class="buttonEnding"></div>
+ <input name="btn_cancel" type="button" class="button" value="{tmpl_var name='btn_cancel_txt'}" onClick="loadContent('admin/language_list.php');"><div class="buttonEnding"></div>
\ No newline at end of file
diff --git a/interface/web/admin/templates/language_edit.htm b/interface/web/admin/templates/language_edit.htm
new file mode 100644
index 0000000..3053ee0
--- /dev/null
+++ b/interface/web/admin/templates/language_edit.htm
@@ -0,0 +1,36 @@
+<div class="frmTextHead"><tmpl_var name="list_head_txt"></div><br />
+<table width="100%" border="0" cellspacing="0" cellpadding="4">
+ <tr>
+ <td class="tblHead"><tmpl_var name="key_txt"></td>
+ <td class="tblHead"><tmpl_var name="value_txt"></td>
+ </tr>
+ <tr>
+ <td colspan="2"> </td>
+ </tr>
+ <tmpl_loop name="records">
+ <tr bgcolor="{tmpl_var name="bgcolor"}">
+ <td class="frmText11">{tmpl_var name="key"}</td>
+ <td class="frmText11"><input name="records[{tmpl_var name="key"}]" type="text" class="text" value="{tmpl_var name='val'}" size="50" maxlength="255"></td>
+ </tr>
+ </tmpl_loop>
+ <tr>
+ <td colspan="2"> </td>
+ </tr>
+ <tmpl_if name="msg">
+ <tr>
+ <td class="msg" colspan="2"><tmpl_var name="msg"></td>
+ </tr>
+ <tr>
+ <td colspan="2"> </td>
+ </tr>
+ </tmpl_if>
+ <tr>
+ <td> </td>
+ <td><input name="btn_save" type="button" class="button" value="{tmpl_var name='btn_save_txt'}" onClick="submitForm('pageForm','admin/language_edit.php');"><div class="buttonEnding"></div>
+ <input name="btn_cancel" type="button" class="button" value="{tmpl_var name='btn_cancel_txt'}" onClick="loadContent('admin/language_list.php?lng_select={tmpl_var name='lang'}');"><div class="buttonEnding"></div>
+ </td>
+ </tr>
+</table>
+<input type="hidden" name="lang" value="{tmpl_var name='lang'}">
+<input type="hidden" name="lang_file" value="{tmpl_var name='lang_file'}">
+<input type="hidden" name="module" value="{tmpl_var name='module'}">
\ No newline at end of file
diff --git a/interface/web/admin/templates/language_list.htm b/interface/web/admin/templates/language_list.htm
new file mode 100644
index 0000000..990272a
--- /dev/null
+++ b/interface/web/admin/templates/language_list.htm
@@ -0,0 +1,17 @@
+<div class="frmTextHead"><tmpl_var name="list_head_txt"></div><br />
+<p class="frmText11"><tmpl_var name="language_select_txt">: <select name="lng_select" onChange="submitForm('pageForm','admin/language_list.php');">{tmpl_var name='language_option'}</select></p>
+<table width="100%" border="0" cellspacing="0" cellpadding="4">
+ <tr>
+ <td class="tblHead"><tmpl_var name="module_txt"></td>
+ <td class="tblHead"><tmpl_var name="lang_file_txt"></td>
+ </tr>
+ <tmpl_loop name="records">
+ <tr bgcolor="{tmpl_var name="bgcolor"}">
+ <td class="frmText11"><a href="#" onClick="loadContent('admin/language_edit.php?module={tmpl_var name="module"}&lang_file={tmpl_var name="lang_file"}&lang={tmpl_var name="lang"}');" class="frmText11">{tmpl_var name="module"}</a></td>
+ <td class="frmText11"><a href="#" onClick="loadContent('admin/language_edit.php?module={tmpl_var name="module"}&lang_file={tmpl_var name="lang_file"}&lang={tmpl_var name="lang"}');" class="frmText11">{tmpl_var name="lang_file"}</a></td>
+ </tr>
+ </tmpl_loop>
+ <tr>
+ <td colspan="2" height="40" align="center" class="tblFooter"><tmpl_var name="paging"></td>
+ </tr>
+</table>
\ No newline at end of file
diff --git a/server/ispconfig.log b/server/ispconfig.log
new file mode 100644
index 0000000..cfe1977
--- /dev/null
+++ b/server/ispconfig.log
@@ -0,0 +1,853 @@
+28.05.2007-18:46 - DEBUG - Set Lock: D:\server\www\ispconfig3\server/temp/.ispconfig_lock
+28.05.2007-18:46 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:46 - DEBUG - Remove Lock: D:\server\www\ispconfig3\server/temp/.ispconfig_lock
+28.05.2007-18:47 - DEBUG - Set Lock: D:\server\www\ispconfig3\server/temp/.ispconfig_lock
+28.05.2007-18:47 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:49 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:49 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:49 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:49 - DEBUG - Loading Module:
+28.05.2007-18:50 - DEBUG - Set Lock: D:\server\www\ispconfig3\server/temp/.ispconfig_lock
+28.05.2007-18:50 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:50 - DEBUG - Loading Module:
+28.05.2007-18:52 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:52 - DEBUG - Loading Module:
+28.05.2007-18:52 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:52 - DEBUG - Loading Module:
+28.05.2007-18:52 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:52 - DEBUG - Loading Module: mail_module
+28.05.2007-18:55 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:55 - DEBUG - Loading Module: mail_module
+28.05.2007-18:56 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:56 - DEBUG - Loading Module: mail_module
+28.05.2007-18:57 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:57 - DEBUG - Loading Module: mail_module
+28.05.2007-18:57 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-18:57 - DEBUG - Announced event: mail_domain_update
+28.05.2007-18:57 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-18:57 - DEBUG - Announced event: mail_user_insert
+28.05.2007-18:57 - DEBUG - Announced event: mail_user_update
+28.05.2007-18:57 - DEBUG - Announced event: mail_user_delete
+28.05.2007-18:57 - DEBUG - Announced event: mail_access_insert
+28.05.2007-18:57 - DEBUG - Announced event: mail_access_update
+28.05.2007-18:57 - DEBUG - Announced event: mail_access_delete
+28.05.2007-18:57 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-18:57 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-18:57 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-18:57 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-18:57 - DEBUG - Announced event: mail_transport_update
+28.05.2007-18:57 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-18:57 - DEBUG - Announced event: mail_get_insert
+28.05.2007-18:57 - DEBUG - Announced event: mail_get_update
+28.05.2007-18:57 - DEBUG - Announced event: mail_get_delete
+28.05.2007-18:57 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-18:58 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:58 - DEBUG - Loading Module: mail_module
+28.05.2007-18:58 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-18:58 - DEBUG - Announced event: mail_domain_update
+28.05.2007-18:58 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-18:58 - DEBUG - Announced event: mail_user_insert
+28.05.2007-18:58 - DEBUG - Announced event: mail_user_update
+28.05.2007-18:58 - DEBUG - Announced event: mail_user_delete
+28.05.2007-18:58 - DEBUG - Announced event: mail_access_insert
+28.05.2007-18:58 - DEBUG - Announced event: mail_access_update
+28.05.2007-18:58 - DEBUG - Announced event: mail_access_delete
+28.05.2007-18:58 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-18:58 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-18:58 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-18:58 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-18:58 - DEBUG - Announced event: mail_transport_update
+28.05.2007-18:58 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-18:58 - DEBUG - Announced event: mail_get_insert
+28.05.2007-18:58 - DEBUG - Announced event: mail_get_update
+28.05.2007-18:58 - DEBUG - Announced event: mail_get_delete
+28.05.2007-18:58 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-18:58 - DEBUG - Unable to register the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'
+28.05.2007-18:58 - DEBUG - Unable to register the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'
+28.05.2007-18:58 - DEBUG - Unable to register the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'
+28.05.2007-18:58 - DEBUG - Raised event: mail_get_insert
+28.05.2007-18:59 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-18:59 - DEBUG - Loading Module: mail_module
+28.05.2007-18:59 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-18:59 - DEBUG - Announced event: mail_domain_update
+28.05.2007-18:59 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-18:59 - DEBUG - Announced event: mail_user_insert
+28.05.2007-18:59 - DEBUG - Announced event: mail_user_update
+28.05.2007-18:59 - DEBUG - Announced event: mail_user_delete
+28.05.2007-18:59 - DEBUG - Announced event: mail_access_insert
+28.05.2007-18:59 - DEBUG - Announced event: mail_access_update
+28.05.2007-18:59 - DEBUG - Announced event: mail_access_delete
+28.05.2007-18:59 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-18:59 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-18:59 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-18:59 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-18:59 - DEBUG - Announced event: mail_transport_update
+28.05.2007-18:59 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-18:59 - DEBUG - Announced event: mail_get_insert
+28.05.2007-18:59 - DEBUG - Announced event: mail_get_update
+28.05.2007-18:59 - DEBUG - Announced event: mail_get_delete
+28.05.2007-18:59 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-18:59 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-18:59 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-18:59 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-18:59 - DEBUG - Raised event: mail_get_insert
+28.05.2007-18:59 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:00 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:00 - DEBUG - Loading Module: mail_module
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:00 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:00 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:00 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:00 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:00 - DEBUG - Raised event: mail_get_insert
+28.05.2007-19:00 - DEBUG - bin da
+28.05.2007-19:00 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:00 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:00 - DEBUG - Loading Module: mail_module
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:00 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:00 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:00 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:00 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:00 - DEBUG - Raised event: mail_get_insert
+28.05.2007-19:00 - DEBUG - bin da
+28.05.2007-19:00 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:00 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:00 - DEBUG - Loading Module: mail_module
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:00 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:00 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:00 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:00 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:00 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:00 - DEBUG - Raised event: mail_get_insert
+28.05.2007-19:00 - DEBUG - bin da
+28.05.2007-19:00 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:06 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:06 - DEBUG - Loading Module: mail_module
+28.05.2007-19:06 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:06 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:06 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:06 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:06 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:06 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:06 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:06 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:06 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:06 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:06 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:06 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:06 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:06 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:06 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:06 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:06 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:06 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:07 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:07 - DEBUG - Loading Module: mail_module
+28.05.2007-19:07 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:07 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:07 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:07 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:07 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:07 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:07 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:07 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:07 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:07 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:07 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:07 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:07 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:07 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:07 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:07 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:07 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:07 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:07 - DEBUG - Registered TableHook for table 'mail_access' in module 'mail_module' with processing function 'process'
+28.05.2007-19:07 - DEBUG - Registered TableHook for table 'mail_domain' in module 'mail_module' with processing function 'process'
+28.05.2007-19:07 - DEBUG - Registered TableHook for table 'mail_forwarding' in module 'mail_module' with processing function 'process'
+28.05.2007-19:07 - DEBUG - Registered TableHook for table 'mail_transport' in module 'mail_module' with processing function 'process'
+28.05.2007-19:07 - DEBUG - Registered TableHook for table 'mail_user' in module 'mail_module' with processing function 'process'
+28.05.2007-19:07 - DEBUG - Registered TableHook for table 'mail_get' in module 'mail_module' with processing function 'process'
+28.05.2007-19:07 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:07 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:07 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:07 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:07 - DEBUG - Raised TableHook for table mail_get
+28.05.2007-19:07 - DEBUG - Raised event: mail_get_insert
+28.05.2007-19:07 - DEBUG - bin da
+28.05.2007-19:07 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:07 - DEBUG - Called function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:08 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:08 - DEBUG - Loading Module: mail_module
+28.05.2007-19:08 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:08 - DEBUG - Registered TableHook mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:08 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:08 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:08 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:08 - DEBUG - Raised TableHook for table mail_get
+28.05.2007-19:08 - DEBUG - Raised event: mail_get_insert
+28.05.2007-19:08 - DEBUG - bin da
+28.05.2007-19:08 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:08 - DEBUG - Called function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:08 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:08 - DEBUG - Loading Module: mail_module
+28.05.2007-19:08 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:08 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:08 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:08 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:08 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-19:08 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:08 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:08 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:08 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:08 - DEBUG - Raised TableHook for table mail_get
+28.05.2007-19:08 - DEBUG - Raised event: mail_get_insert
+28.05.2007-19:08 - DEBUG - bin da
+28.05.2007-19:08 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:08 - DEBUG - Called function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:09 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:09 - DEBUG - Loading Module: mail_module
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:09 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:09 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:09 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:09 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-19:09 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-19:09 - DEBUG - bin da
+28.05.2007-19:09 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:09 - DEBUG - Called function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:09 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:09 - DEBUG - Loading Module: mail_module
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:09 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:09 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:09 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:09 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-19:09 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-19:09 - DEBUG - bin da
+28.05.2007-19:09 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:09 - DEBUG - Called function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:09 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:09 - DEBUG - Loading Module: mail_module
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:09 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-19:09 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:09 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:09 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:09 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:09 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-19:09 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-19:09 - DEBUG - bin da
+28.05.2007-19:09 - DEBUG - Called function insert in plugin getmail_plugin raised by event mail_get_insert.
+28.05.2007-19:09 - DEBUG - Called function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:10 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:10 - DEBUG - Loading Module: mail_module
+28.05.2007-19:10 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:10 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:10 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:10 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:10 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:10 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:10 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:10 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:10 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:10 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:10 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:10 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:10 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:10 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:10 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:10 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:10 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:10 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:10 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-19:10 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-19:10 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-19:10 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-19:10 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-19:10 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-19:10 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:10 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:10 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:10 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:10 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-19:10 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-19:10 - DEBUG - bin da
+28.05.2007-19:10 - DEBUG - Called function 'insert' in plugin 'getmail_plugin' raised by event 'mail_get_insert'.
+28.05.2007-19:10 - DEBUG - Called function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:11 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:11 - DEBUG - Loading Module: mail_module
+28.05.2007-19:11 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:11 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:11 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:11 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:11 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:11 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:11 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:11 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:11 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:11 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:11 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:11 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:11 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:11 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:11 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:11 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:11 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:11 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:11 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-19:11 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-19:11 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-19:11 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-19:11 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-19:11 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-19:11 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:11 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:11 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:11 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:11 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-19:11 - DEBUG - Call function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:11 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-19:11 - DEBUG - Call function 'insert' in plugin 'getmail_plugin' raised by event 'mail_get_insert'.
+28.05.2007-19:11 - DEBUG - bin da
+28.05.2007-19:12 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-19:12 - DEBUG - Loading Module: mail_module
+28.05.2007-19:12 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-19:12 - DEBUG - Announced event: mail_domain_update
+28.05.2007-19:12 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-19:12 - DEBUG - Announced event: mail_user_insert
+28.05.2007-19:12 - DEBUG - Announced event: mail_user_update
+28.05.2007-19:12 - DEBUG - Announced event: mail_user_delete
+28.05.2007-19:12 - DEBUG - Announced event: mail_access_insert
+28.05.2007-19:12 - DEBUG - Announced event: mail_access_update
+28.05.2007-19:12 - DEBUG - Announced event: mail_access_delete
+28.05.2007-19:12 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-19:12 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-19:12 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-19:12 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-19:12 - DEBUG - Announced event: mail_transport_update
+28.05.2007-19:12 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-19:12 - DEBUG - Announced event: mail_get_insert
+28.05.2007-19:12 - DEBUG - Announced event: mail_get_update
+28.05.2007-19:12 - DEBUG - Announced event: mail_get_delete
+28.05.2007-19:12 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-19:12 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-19:12 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-19:12 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-19:12 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-19:12 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-19:12 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-19:12 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-19:12 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-19:12 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-19:12 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-19:12 - DEBUG - Call function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-19:12 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-19:12 - DEBUG - Call function 'insert' in plugin 'getmail_plugin' raised by event 'mail_get_insert'.
+28.05.2007-20:02 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-20:02 - DEBUG - Loading Module: mail_module
+28.05.2007-20:02 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-20:02 - DEBUG - Announced event: mail_domain_update
+28.05.2007-20:02 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-20:02 - DEBUG - Announced event: mail_user_insert
+28.05.2007-20:02 - DEBUG - Announced event: mail_user_update
+28.05.2007-20:02 - DEBUG - Announced event: mail_user_delete
+28.05.2007-20:02 - DEBUG - Announced event: mail_access_insert
+28.05.2007-20:02 - DEBUG - Announced event: mail_access_update
+28.05.2007-20:02 - DEBUG - Announced event: mail_access_delete
+28.05.2007-20:02 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-20:02 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-20:02 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-20:02 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-20:02 - DEBUG - Announced event: mail_transport_update
+28.05.2007-20:02 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-20:02 - DEBUG - Announced event: mail_get_insert
+28.05.2007-20:02 - DEBUG - Announced event: mail_get_update
+28.05.2007-20:02 - DEBUG - Announced event: mail_get_delete
+28.05.2007-20:02 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-20:02 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-20:02 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-20:02 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-20:02 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-20:02 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-20:04 - DEBUG - Loading Module: mail_module
+28.05.2007-20:04 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_domain_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_user_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_user_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_user_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_access_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_access_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_access_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_transport_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_get_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_get_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_get_delete
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-20:04 - DEBUG - Loading Module: mail_module
+28.05.2007-20:04 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_domain_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_user_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_user_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_user_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_access_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_access_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_access_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_transport_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-20:04 - DEBUG - Announced event: mail_get_insert
+28.05.2007-20:04 - DEBUG - Announced event: mail_get_update
+28.05.2007-20:04 - DEBUG - Announced event: mail_get_delete
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-20:04 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-20:05 - DEBUG - Loading Module: mail_module
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_delete
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-20:05 - DEBUG - Loading Module: mail_module
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_delete
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-20:05 - DEBUG - Loading Module: mail_module
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_user_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_access_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_insert
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_update
+28.05.2007-20:05 - DEBUG - Announced event: mail_get_delete
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-20:05 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-20:06 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-20:06 - DEBUG - Loading Module: mail_module
+28.05.2007-20:06 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-20:06 - DEBUG - Announced event: mail_domain_update
+28.05.2007-20:06 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-20:06 - DEBUG - Announced event: mail_user_insert
+28.05.2007-20:06 - DEBUG - Announced event: mail_user_update
+28.05.2007-20:06 - DEBUG - Announced event: mail_user_delete
+28.05.2007-20:06 - DEBUG - Announced event: mail_access_insert
+28.05.2007-20:06 - DEBUG - Announced event: mail_access_update
+28.05.2007-20:06 - DEBUG - Announced event: mail_access_delete
+28.05.2007-20:06 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-20:06 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-20:06 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-20:06 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-20:06 - DEBUG - Announced event: mail_transport_update
+28.05.2007-20:06 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-20:06 - DEBUG - Announced event: mail_get_insert
+28.05.2007-20:06 - DEBUG - Announced event: mail_get_update
+28.05.2007-20:06 - DEBUG - Announced event: mail_get_delete
+28.05.2007-20:06 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-20:06 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-20:06 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-20:06 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-20:06 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-20:06 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-20:06 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-20:06 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-20:06 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-20:06 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-20:06 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-20:06 - DEBUG - Call function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-20:06 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-20:06 - DEBUG - Call function 'insert' in plugin 'getmail_plugin' raised by event 'mail_get_insert'.
+28.05.2007-20:06 - ERROR - Getmail config directory '/etc/getmail' does not exist.
+28.05.2007-20:08 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-20:08 - DEBUG - Loading Module: mail_module
+28.05.2007-20:08 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-20:08 - DEBUG - Announced event: mail_domain_update
+28.05.2007-20:08 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-20:08 - DEBUG - Announced event: mail_user_insert
+28.05.2007-20:08 - DEBUG - Announced event: mail_user_update
+28.05.2007-20:08 - DEBUG - Announced event: mail_user_delete
+28.05.2007-20:08 - DEBUG - Announced event: mail_access_insert
+28.05.2007-20:08 - DEBUG - Announced event: mail_access_update
+28.05.2007-20:08 - DEBUG - Announced event: mail_access_delete
+28.05.2007-20:08 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-20:08 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-20:08 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-20:08 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-20:08 - DEBUG - Announced event: mail_transport_update
+28.05.2007-20:08 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-20:08 - DEBUG - Announced event: mail_get_insert
+28.05.2007-20:08 - DEBUG - Announced event: mail_get_update
+28.05.2007-20:08 - DEBUG - Announced event: mail_get_delete
+28.05.2007-20:08 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-20:08 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-20:08 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-20:08 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-20:08 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-20:08 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-20:08 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-20:08 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-20:08 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-20:08 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-20:08 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-20:08 - DEBUG - Call function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-20:08 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-20:08 - DEBUG - Call function 'insert' in plugin 'getmail_plugin' raised by event 'mail_get_insert'.
+28.05.2007-20:08 - ERROR - Getmail config directory '/etc/getmail' does not exist.
+28.05.2007-23:50 - DEBUG - Found 1 changes, starting update process.
+28.05.2007-23:50 - DEBUG - Loading Module: mail_module
+28.05.2007-23:50 - DEBUG - Announced event: mail_domain_insert
+28.05.2007-23:50 - DEBUG - Announced event: mail_domain_update
+28.05.2007-23:50 - DEBUG - Announced event: mail_domain_delete
+28.05.2007-23:50 - DEBUG - Announced event: mail_user_insert
+28.05.2007-23:50 - DEBUG - Announced event: mail_user_update
+28.05.2007-23:50 - DEBUG - Announced event: mail_user_delete
+28.05.2007-23:50 - DEBUG - Announced event: mail_access_insert
+28.05.2007-23:50 - DEBUG - Announced event: mail_access_update
+28.05.2007-23:50 - DEBUG - Announced event: mail_access_delete
+28.05.2007-23:50 - DEBUG - Announced event: mail_forwarding_insert
+28.05.2007-23:50 - DEBUG - Announced event: mail_forwarding_update
+28.05.2007-23:50 - DEBUG - Announced event: mail_forwarding_delete
+28.05.2007-23:50 - DEBUG - Announced event: mail_transport_insert
+28.05.2007-23:50 - DEBUG - Announced event: mail_transport_update
+28.05.2007-23:50 - DEBUG - Announced event: mail_transport_delete
+28.05.2007-23:50 - DEBUG - Announced event: mail_get_insert
+28.05.2007-23:50 - DEBUG - Announced event: mail_get_update
+28.05.2007-23:50 - DEBUG - Announced event: mail_get_delete
+28.05.2007-23:50 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+28.05.2007-23:50 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+28.05.2007-23:50 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+28.05.2007-23:50 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+28.05.2007-23:50 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+28.05.2007-23:50 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+28.05.2007-23:50 - DEBUG - Loading Plugin: getmail_plugin
+28.05.2007-23:50 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+28.05.2007-23:50 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+28.05.2007-23:50 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+28.05.2007-23:50 - DEBUG - Raised TableHook for table: 'mail_get'
+28.05.2007-23:50 - DEBUG - Call function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+28.05.2007-23:50 - DEBUG - Raised event: 'mail_get_insert'
+28.05.2007-23:50 - DEBUG - Call function 'insert' in plugin 'getmail_plugin' raised by event 'mail_get_insert'.
+28.05.2007-23:50 - ERROR - Getmail config directory '/etc/getmail' does not exist.
+29.05.2007-17:44 - DEBUG - Found 3 changes, starting update process.
+29.05.2007-17:44 - DEBUG - Loading Module: mail_module
+29.05.2007-17:44 - DEBUG - Announced event: mail_domain_insert
+29.05.2007-17:44 - DEBUG - Announced event: mail_domain_update
+29.05.2007-17:44 - DEBUG - Announced event: mail_domain_delete
+29.05.2007-17:44 - DEBUG - Announced event: mail_user_insert
+29.05.2007-17:44 - DEBUG - Announced event: mail_user_update
+29.05.2007-17:44 - DEBUG - Announced event: mail_user_delete
+29.05.2007-17:44 - DEBUG - Announced event: mail_access_insert
+29.05.2007-17:44 - DEBUG - Announced event: mail_access_update
+29.05.2007-17:44 - DEBUG - Announced event: mail_access_delete
+29.05.2007-17:44 - DEBUG - Announced event: mail_forwarding_insert
+29.05.2007-17:44 - DEBUG - Announced event: mail_forwarding_update
+29.05.2007-17:44 - DEBUG - Announced event: mail_forwarding_delete
+29.05.2007-17:44 - DEBUG - Announced event: mail_transport_insert
+29.05.2007-17:44 - DEBUG - Announced event: mail_transport_update
+29.05.2007-17:44 - DEBUG - Announced event: mail_transport_delete
+29.05.2007-17:44 - DEBUG - Announced event: mail_get_insert
+29.05.2007-17:44 - DEBUG - Announced event: mail_get_update
+29.05.2007-17:44 - DEBUG - Announced event: mail_get_delete
+29.05.2007-17:44 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+29.05.2007-17:44 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+29.05.2007-17:44 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+29.05.2007-17:44 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+29.05.2007-17:44 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+29.05.2007-17:44 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+29.05.2007-17:44 - DEBUG - Loading Plugin: getmail_plugin
+29.05.2007-17:44 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+29.05.2007-17:44 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+29.05.2007-17:44 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'spamfilter_wblist'
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'spamfilter_wblist'
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'mail_get'
+29.05.2007-17:44 - DEBUG - Call function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+29.05.2007-17:44 - DEBUG - Raised event: 'mail_get_insert'
+29.05.2007-17:44 - DEBUG - Call function 'insert' in plugin 'getmail_plugin' raised by event 'mail_get_insert'.
+29.05.2007-17:44 - ERROR - Getmail config directory '/etc/getmail' does not exist.
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:44 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:45 - DEBUG - Found 3 changes, starting update process.
+29.05.2007-17:45 - DEBUG - Loading Module: mail_module
+29.05.2007-17:45 - DEBUG - Announced event: mail_domain_insert
+29.05.2007-17:45 - DEBUG - Announced event: mail_domain_update
+29.05.2007-17:45 - DEBUG - Announced event: mail_domain_delete
+29.05.2007-17:45 - DEBUG - Announced event: mail_user_insert
+29.05.2007-17:45 - DEBUG - Announced event: mail_user_update
+29.05.2007-17:45 - DEBUG - Announced event: mail_user_delete
+29.05.2007-17:45 - DEBUG - Announced event: mail_access_insert
+29.05.2007-17:45 - DEBUG - Announced event: mail_access_update
+29.05.2007-17:45 - DEBUG - Announced event: mail_access_delete
+29.05.2007-17:45 - DEBUG - Announced event: mail_forwarding_insert
+29.05.2007-17:45 - DEBUG - Announced event: mail_forwarding_update
+29.05.2007-17:45 - DEBUG - Announced event: mail_forwarding_delete
+29.05.2007-17:45 - DEBUG - Announced event: mail_transport_insert
+29.05.2007-17:45 - DEBUG - Announced event: mail_transport_update
+29.05.2007-17:45 - DEBUG - Announced event: mail_transport_delete
+29.05.2007-17:45 - DEBUG - Announced event: mail_get_insert
+29.05.2007-17:45 - DEBUG - Announced event: mail_get_update
+29.05.2007-17:45 - DEBUG - Announced event: mail_get_delete
+29.05.2007-17:45 - DEBUG - Registered TableHook 'mail_access' in module 'mail_module' for processing function 'process'
+29.05.2007-17:45 - DEBUG - Registered TableHook 'mail_domain' in module 'mail_module' for processing function 'process'
+29.05.2007-17:45 - DEBUG - Registered TableHook 'mail_forwarding' in module 'mail_module' for processing function 'process'
+29.05.2007-17:45 - DEBUG - Registered TableHook 'mail_transport' in module 'mail_module' for processing function 'process'
+29.05.2007-17:45 - DEBUG - Registered TableHook 'mail_user' in module 'mail_module' for processing function 'process'
+29.05.2007-17:45 - DEBUG - Registered TableHook 'mail_get' in module 'mail_module' for processing function 'process'
+29.05.2007-17:45 - DEBUG - Loading Plugin: getmail_plugin
+29.05.2007-17:45 - DEBUG - Registered the function 'insert' in the plugin 'getmail_plugin' for event 'mail_get_insert'.
+29.05.2007-17:45 - DEBUG - Registered the function 'update' in the plugin 'getmail_plugin' for event 'mail_get_update'.
+29.05.2007-17:45 - DEBUG - Registered the function 'delete' in the plugin 'getmail_plugin' for event 'mail_get_delete'.
+29.05.2007-17:45 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:45 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:45 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:45 - DEBUG - Raised TableHook for table: 'spamfilter_wblist'
+29.05.2007-17:45 - DEBUG - Raised TableHook for table: 'spamfilter_wblist'
+29.05.2007-17:45 - DEBUG - Raised TableHook for table: 'client'
+29.05.2007-17:45 - DEBUG - Raised TableHook for table: 'mail_get'
+29.05.2007-17:45 - DEBUG - Call function 'process' in module 'mail_module' raised by TableHook 'mail_get'.
+29.05.2007-17:45 - DEBUG - Raised event: 'mail_get_insert'
+29.05.2007-17:45 - DEBUG - Call function 'insert' in plugin 'getmail_plugin' raised by event 'mail_get_insert'.
--
Gitblit v1.9.1