From 00dfbafa919e12b7fb4fb869b273ec724e0ade07 Mon Sep 17 00:00:00 2001 From: redray Date: Sun, 30 Nov 2008 20:11:25 +0000 Subject: [PATCH] charset corrections --- install/dist/conf/centos52.conf.php | 3 +- install/dist/conf/debian40.conf.php | 3 +- install/dist/conf/fedora9.conf.php | 3 +- install/dist/conf/opensuse110.conf.php | 3 +- install/install.php | 22 +- install/lib/installer_base.lib.php | 6 +- install/lib/mysql.lib.php | 27 +- install/options.conf.php | 3 +- install/sql/ispconfig3.sql | 162 ++-- install/tpl/config.inc.php.master | 141 ++- install/tpl/server.ini.master | 4 +- install/uninstall.php | 21 +- install/update.php | 14 +- interface/lib/app.inc.php | 18 +- interface/lib/classes/db_mysql.inc.php | 27 +- interface/lib/config.inc.php | 155 ---- interface/lib/db_local.php.skel | 9 - .../web/admin/form/server_config.tform.php | 4 +- interface/web/dns/templates/dns_soa_edit.htm | 6 +- .../web/mail/form/spamfilter_config.tform.php | 4 +- .../web/themes/default/templates/main.tpl.htm | 6 +- remoting_client/example.php | 4 +- server/ispconfig.log | 853 ------------------ server/lib/app.inc.php | 2 +- server/lib/classes/db_mysql.inc.php | 27 +- server/lib/config.inc.php | 72 -- 26 files changed, 269 insertions(+), 1330 deletions(-) delete mode 100644 interface/lib/config.inc.php delete mode 100755 interface/lib/db_local.php.skel delete mode 100644 server/ispconfig.log delete mode 100644 server/lib/config.inc.php diff --git a/install/dist/conf/centos52.conf.php b/install/dist/conf/centos52.conf.php index e3cc2300b8..89f8f4f6be 100644 --- a/install/dist/conf/centos52.conf.php +++ b/install/dist/conf/centos52.conf.php @@ -5,7 +5,7 @@ //* Main $conf['language'] = 'en'; $conf['distname'] = 'centos52'; -$conf['hostname'] = 'server1.example.com'; // Full hostname +$conf['hostname'] = 'server1.domain.tld'; // Full hostname $conf['ispconfig_install_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_config_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_log_priority'] = 2; // 0 = Debug, 1 = Warning, 2 = Error @@ -24,6 +24,7 @@ $conf['mysql']['port'] = '3306'; $conf['mysql']['database'] = 'dbispconfig'; $conf['mysql']['admin_user'] = 'root'; $conf['mysql']['admin_password'] = ''; +$conf['mysql']['charset'] = 'utf8'; $conf['mysql']['ispconfig_user'] = 'ispconfig'; $conf['mysql']['ispconfig_password'] = md5 (uniqid (rand())); diff --git a/install/dist/conf/debian40.conf.php b/install/dist/conf/debian40.conf.php index af36f5061c..e7dee46294 100644 --- a/install/dist/conf/debian40.conf.php +++ b/install/dist/conf/debian40.conf.php @@ -5,7 +5,7 @@ //* Main $conf['language'] = 'en'; $conf['distname'] = 'debian40'; -$conf['hostname'] = 'server1.example.com'; // Full hostname +$conf['hostname'] = 'server1.domain.tld'; // Full hostname $conf['ispconfig_install_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_config_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_log_priority'] = 2; // 0 = Debug, 1 = Warning, 2 = Error @@ -24,6 +24,7 @@ $conf['mysql']['port'] = '3306'; $conf['mysql']['database'] = 'dbispconfig'; $conf['mysql']['admin_user'] = 'root'; $conf['mysql']['admin_password'] = ''; +$conf['mysql']['charset'] = 'utf8'; $conf['mysql']['ispconfig_user'] = 'ispconfig'; $conf['mysql']['ispconfig_password'] = md5 (uniqid (rand())); diff --git a/install/dist/conf/fedora9.conf.php b/install/dist/conf/fedora9.conf.php index 18c1816ccd..3f27d97965 100644 --- a/install/dist/conf/fedora9.conf.php +++ b/install/dist/conf/fedora9.conf.php @@ -5,7 +5,7 @@ //* Main $conf['language'] = 'en'; $conf['distname'] = 'fedora9'; -$conf['hostname'] = 'server1.example.com'; // Full hostname +$conf['hostname'] = 'server1.domain.tld'; // Full hostname $conf['ispconfig_install_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_config_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_log_priority'] = 2; // 0 = Debug, 1 = Warning, 2 = Error @@ -24,6 +24,7 @@ $conf['mysql']['port'] = '3306'; $conf['mysql']['database'] = 'dbispconfig'; $conf['mysql']['admin_user'] = 'root'; $conf['mysql']['admin_password'] = ''; +$conf['mysql']['charset'] = 'utf8'; $conf['mysql']['ispconfig_user'] = 'ispconfig'; $conf['mysql']['ispconfig_password'] = md5 (uniqid (rand())); diff --git a/install/dist/conf/opensuse110.conf.php b/install/dist/conf/opensuse110.conf.php index 6f6b100c07..6191ad2a0e 100644 --- a/install/dist/conf/opensuse110.conf.php +++ b/install/dist/conf/opensuse110.conf.php @@ -5,7 +5,7 @@ //* Main $conf['language'] = 'en'; $conf['distname'] = 'opensuse110'; -$conf['hostname'] = 'server1.example.com'; // Full hostname +$conf['hostname'] = 'server1.domain.tld'; // Full hostname $conf['ispconfig_install_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_config_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_log_priority'] = 2; // 0 = Debug, 1 = Warning, 2 = Error @@ -24,6 +24,7 @@ $conf['mysql']['port'] = '3306'; $conf['mysql']['database'] = 'dbispconfig'; $conf['mysql']['admin_user'] = 'root'; $conf['mysql']['admin_password'] = ''; +$conf['mysql']['charset'] = 'utf8'; $conf['mysql']['ispconfig_user'] = 'ispconfig'; $conf['mysql']['ispconfig_password'] = md5 (uniqid (rand())); diff --git a/install/install.php b/install/install.php index 76823fef66..0313d5726e 100644 --- a/install/install.php +++ b/install/install.php @@ -32,9 +32,6 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ISPConfig 3 installer. */ -//** Check for existing installation -//if(is_dir("/usr/local/ispconfig")) die('We will stop here. There is already a ISPConfig installation, use the update script to update this installation.'); - error_reporting(E_ALL|E_STRICT); //** The banner on the command line @@ -56,20 +53,25 @@ require_once('lib/install.lib.php'); //** Include the base class of the installer class require_once('lib/installer_base.lib.php'); +//** Install logfile +define('ISPC_LOG_FILE', '/var/log/ispconfig_install.log'); +define('ISPC_INSTALL_ROOT', realpath(dirname(__FILE__).'/../')); + +//** Check for existing installation +/*if(is_dir("/usr/local/ispconfig")) { + die('We will stop here. There is already a ISPConfig installation, use the update script to update this installation.'); +}*/ + //** Get distribution identifier $dist = get_distname(); -if($dist['id'] == '') die('Linux Dustribution or Version not recognized.'); +if($dist['id'] == '') die('Linux Distribution or Version not recognized.'); //** Include the distribution specific installer class library and configuration if(is_file('dist/lib/'.$dist['baseid'].'.lib.php')) include_once('dist/lib/'.$dist['baseid'].'.lib.php'); include_once('dist/lib/'.$dist['id'].'.lib.php'); include_once('dist/conf/'.$dist['id'].'.conf.php'); -//** Install logfile -define('ISPC_LOG_FILE', '/var/log/ispconfig_install.log'); -define('ISPC_INSTALL_ROOT', realpath(dirname(__FILE__).'/../')); - //**************************************************************************************************** //** Installer Interface //**************************************************************************************************** @@ -97,7 +99,7 @@ $install_mode = $inst->simple_query('Installation mode', array('Standard','Exper //** Get the hostname $tmp_out = array(); exec('hostname -f', $tmp_out); -$conf['hostname'] = $inst->free_query('Full qualified hostname (FQDN) of the server, eg foo.example.com ', $tmp_out[0]); +$conf['hostname'] = $inst->free_query('Full qualified hostname (FQDN) of the server, eg server1.domain.tld ', $tmp_out[0]); unset($tmp_out); //** Get MySQL root credentials @@ -107,6 +109,7 @@ do { $tmp_mysql_server_admin_user = $inst->free_query('MySQL root username', $conf['mysql']['admin_user']); $tmp_mysql_server_admin_password = $inst->free_query('MySQL root password', $conf['mysql']['admin_password']); $tmp_mysql_server_database = $inst->free_query('MySQL database to create', $conf['mysql']['database']); + $tmp_mysql_server_charset = $inst->free_query('MySQL charset', $conf['mysql']['charset']); //* Initialize the MySQL server connection if(@mysql_connect($tmp_mysql_server_host, $tmp_mysql_server_admin_user, $tmp_mysql_server_admin_password)) { @@ -114,6 +117,7 @@ do { $conf['mysql']['admin_user'] = $tmp_mysql_server_admin_user; $conf['mysql']['admin_password'] = $tmp_mysql_server_admin_password; $conf['mysql']['database'] = $tmp_mysql_server_database; + $conf['mysql']['charset'] = $tmp_mysql_server_charset; $finished = true; } else { swriteln($inst->lng('Unable to connect to mysql server').' '.mysql_error()); diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index 0b4303c0fb..4c9c20c8b5 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -119,7 +119,7 @@ class installer_base { $cf = $conf['mysql']; // make $conf['mysql'] more accessible //** Create the database - if(!$this->db->query('CREATE DATABASE IF NOT EXISTS '.$cf['database'])) { + if(!$this->db->query('CREATE DATABASE IF NOT EXISTS '.$cf['database'].' DEFAULT CHARACTER SET '.$cf['charset'])) { $this->error('Unable to create MySQL database: '.$cf['database'].'.'); } @@ -132,10 +132,10 @@ class installer_base { $this->error('Stopped: Database already contains some tables.'); } else { if($cf['admin_password'] == '') { - caselog("mysql -h '".$cf['host']."' -u '".$cf['admin_user']."' '".$cf['database']."' < '".ISPC_INSTALL_ROOT."/install/sql/ispconfig3.sql' &> /dev/null", + caselog("mysql --default-character-set=".$cf['charset']." -h '".$cf['host']."' -u '".$cf['admin_user']."' '".$cf['database']."' < '".ISPC_INSTALL_ROOT."/install/sql/ispconfig3.sql' &> /dev/null", __FILE__, __LINE__, 'read in ispconfig3.sql', 'could not read in ispconfig3.sql'); } else { - caselog("mysql -h '".$cf['host']."' -u '".$cf['admin_user']."' -p'".$cf['admin_password']."' '".$cf['database']."' < '".ISPC_INSTALL_ROOT."/install/sql/ispconfig3.sql' &> /dev/null", + caselog("mysql --default-character-set=".$cf['charset']." -h '".$cf['host']."' -u '".$cf['admin_user']."' -p'".$cf['admin_password']."' '".$cf['database']."' < '".ISPC_INSTALL_ROOT."/install/sql/ispconfig3.sql' &> /dev/null", __FILE__, __LINE__, 'read in ispconfig3.sql', 'could not read in ispconfig3.sql'); } $db_tables = $this->db->getTables(); diff --git a/install/lib/mysql.lib.php b/install/lib/mysql.lib.php index e24fcc65d9..ec3e741c9f 100644 --- a/install/lib/mysql.lib.php +++ b/install/lib/mysql.lib.php @@ -29,18 +29,19 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. class db { - var $dbHost = ""; // hostname of the MySQL server - var $dbName = ""; // logical database name on that server - var $dbUser = ""; // database authorized user - var $dbPass = ""; // user's password - var $linkId = 0; // last result of mysql_connect() - var $queryId = 0; // last result of mysql_query() - var $record = array(); // last record fetched - var $autoCommit = 1; // Autocommit Transactions - var $currentRow; // current row number - var $errorNumber = 0; // last error number - var $errorMessage = ""; // last error message - var $errorLocation = "";// last error location + var $dbHost = ""; // hostname of the MySQL server + var $dbName = ""; // logical database name on that server + var $dbUser = ""; // database authorized user + var $dbPass = ""; // user's password + var $dbCharset = ""; // what charset comes and goes to mysql: utf8 / latin1 + var $linkId = 0; // last result of mysql_connect() + var $queryId = 0; // last result of mysql_query() + var $record = array(); // last record fetched + var $autoCommit = 1; // Autocommit Transactions + var $currentRow; // current row number + var $errorNumber = 0; // last error number + var $errorMessage = ""; // last error message + var $errorLocation = ""; // last error location var $show_error_messages = false; // constructor @@ -52,6 +53,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. //$this->dbName = $conf["mysql"]["database"]; $this->dbUser = $conf["mysql"]["admin_user"]; $this->dbPass = $conf["mysql"]["admin_password"]; + $this->dbCharset = $conf["mysql"]["charset"]; //$this->connect(); } @@ -79,6 +81,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. $this->updateError('DB::connect()
mysql_connect'); return false; } + $this->queryId = @mysql_query('SET NAMES '.$this->dbCharset, $this->linkId); } return true; } diff --git a/install/options.conf.php b/install/options.conf.php index e76aa3b3fc..bfff3ec00e 100644 --- a/install/options.conf.php +++ b/install/options.conf.php @@ -6,7 +6,7 @@ $conf['language'] = 'en'; $conf['distname'] = 'debian40'; -$conf['hostname'] = 'server1.example.com'; // Full hostname +$conf['hostname'] = 'server1.domain.tld'; // Full hostname $conf['ispconfig_install_dir'] = '/usr/local/ispconfig'; $conf['ispconfig_config_dir'] = '/usr/local/ispconfig'; $conf['server_id'] = 1; @@ -18,6 +18,7 @@ $conf['mysql']['port'] = '3306'; $conf['mysql']['database'] = 'dbispconfig'; $conf['mysql']['admin_user'] = 'root'; $conf['mysql']['admin_password'] = ''; +$conf['mysql']['charset'] = 'utf8'; $conf['mysql']['ispconfig_user'] = 'ispconfig'; $conf['mysql']['ispconfig_password'] = '5sDrewBhk'; diff --git a/install/sql/ispconfig3.sql b/install/sql/ispconfig3.sql index e7ccf33a09..01ef1ec1a4 100644 --- a/install/sql/ispconfig3.sql +++ b/install/sql/ispconfig3.sql @@ -1,13 +1,11 @@ --- phpMyAdmin SQL Dump --- version 2.9.0.3 --- http://www.phpmyadmin.net --- --- Host: localhost --- Erstellungszeit: 29. Juni 2007 um 16:37 --- Server Version: 5.0.24 --- PHP-Version: 5.1.4 + +-- ISPConfig 3 +-- DB-Version: 3.0.0.8 + +-- -------------------------------------------------------- + -- --- Datenbank: `ispconfig3` +-- Datenbank: `ispconfig_v3` -- -- -------------------------------------------------------- @@ -36,7 +34,7 @@ CREATE TABLE `client` ( `mobile` varchar(255) default NULL, `fax` varchar(255) default NULL, `email` varchar(255) default NULL, - `internet` varchar(255) NOT NULL default 'http://', + `internet` varchar(255) NOT NULL, `icq` varchar(255) default NULL, `notes` text, `default_mailserver` int(11) NOT NULL default '1', @@ -71,7 +69,7 @@ CREATE TABLE `client` ( `language` varchar(255) NOT NULL default 'en', `usertheme` varchar(255) NOT NULL default 'default', PRIMARY KEY (`client_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `client` @@ -101,7 +99,7 @@ CREATE TABLE `dns_rr` ( `active` enum('N','Y') NOT NULL default 'Y', PRIMARY KEY (`id`), UNIQUE KEY `rr` (`zone`,`name`,`type`,`data`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -131,7 +129,7 @@ CREATE TABLE `dns_soa` ( PRIMARY KEY (`id`), UNIQUE KEY `origin` (`origin`), KEY `active` (`active`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -151,7 +149,7 @@ CREATE TABLE `dns_template` ( `template` text, `visible` varchar(255) NOT NULL default 'Y', PRIMARY KEY (`template_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; +) ENGINE=MyISAM AUTO_INCREMENT=3 ; -- -- Daten für Tabelle `dns_template` @@ -180,7 +178,7 @@ CREATE TABLE `firewall` ( `udp_port` varchar(255) default NULL, `active` varchar(255) NOT NULL default 'y', PRIMARY KEY (`firewall_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `firewall` @@ -219,7 +217,7 @@ CREATE TABLE `ftp_user` ( KEY `server_id` (`server_id`), KEY `username` (`username`), KEY `quota_files` (`quota_files`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `ftp_user` @@ -246,7 +244,7 @@ CREATE TABLE `mail_access` ( `active` enum('n','y') NOT NULL default 'y', PRIMARY KEY (`access_id`), KEY `server_id` (`server_id`,`source`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `mail_access` @@ -273,7 +271,7 @@ CREATE TABLE `mail_content_filter` ( `action` varchar(255) default NULL, `active` varchar(255) NOT NULL default 'y', PRIMARY KEY (`content_filter_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -294,7 +292,7 @@ CREATE TABLE `mail_domain` ( PRIMARY KEY (`domain_id`), KEY `server_id` (`server_id`,`domain`), KEY `domain_active` (`domain`,`active`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `mail_domain` @@ -321,7 +319,7 @@ CREATE TABLE `mail_forwarding` ( `active` enum('y','n') NOT NULL, PRIMARY KEY (`forwarding_id`), KEY `server_id` (`server_id`,`source`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `mail_forwarding` @@ -350,7 +348,7 @@ CREATE TABLE `mail_get` ( `destination` varchar(255) default NULL, `active` varchar(255) NOT NULL default 'y', PRIMARY KEY (`mailget_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `mail_get` @@ -372,7 +370,7 @@ CREATE TABLE `mail_greylist` ( `origin_type` enum('MANUAL','AUTO') NOT NULL default 'AUTO', `create_time` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`greylist_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `mail_greylist` @@ -394,7 +392,7 @@ CREATE TABLE `mail_mailman_domain` ( `mm_user` varchar(50) NOT NULL default '', `mm_group` varchar(50) NOT NULL default '', PRIMARY KEY (`mailman_id`,`server_id`,`domain`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `mail_mailman_domain` @@ -413,7 +411,7 @@ CREATE TABLE `mail_traffic` ( `traffic` bigint(20) unsigned NOT NULL, PRIMARY KEY (`traffic_id`), KEY `mailuser_id` (`mailuser_id`,`month`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; +) ENGINE=MyISAM AUTO_INCREMENT=2 ; -- -- Daten für Tabelle `mail_traffic` @@ -441,7 +439,7 @@ CREATE TABLE `mail_transport` ( PRIMARY KEY (`transport_id`), KEY `server_id` (`server_id`,`transport`), KEY `server_id_2` (`server_id`,`domain`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `mail_transport` @@ -480,7 +478,7 @@ CREATE TABLE `mail_user` ( PRIMARY KEY (`mailuser_id`), KEY `server_id` (`server_id`,`email`), KEY `email_access` (`email`,`access`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `mail_user` @@ -509,7 +507,7 @@ CREATE TABLE `mail_user_filter` ( `target` varchar(255) default NULL, `active` varchar(255) NOT NULL default 'y', PRIMARY KEY (`filter_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -523,7 +521,7 @@ CREATE TABLE `remote_session` ( `remote_functions` text NOT NULL, `tstamp` int(10) unsigned NOT NULL, PRIMARY KEY (`remote_session`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM; -- -- Daten für Tabelle `remote_session` @@ -542,7 +540,7 @@ CREATE TABLE `remote_user` ( `remote_password` varchar(255) NOT NULL, `remote_functions` text NOT NULL, PRIMARY KEY (`remote_userid`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `remote_user` @@ -575,7 +573,7 @@ CREATE TABLE `server` ( `updated` tinyint(4) NOT NULL default '0', `active` tinyint(4) NOT NULL default '1', PRIMARY KEY (`server_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `server` @@ -598,7 +596,7 @@ CREATE TABLE `server_ip` ( `ip_address` varchar(15) default NULL, `virtualhost` char(1) NOT NULL default 'y', PRIMARY KEY (`server_ip_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `server_ip` @@ -625,7 +623,7 @@ CREATE TABLE `shell_user` ( `dir` varchar(255) default NULL, `chroot` varchar(255) NOT NULL, PRIMARY KEY (`shell_user_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1; +) ENGINE=MyISAM AUTO_INCREMENT=1; -- @@ -648,7 +646,7 @@ CREATE TABLE `software_package` ( `package_version` varchar(255) default NULL, PRIMARY KEY (`package_id`), UNIQUE KEY `package_name` (`package_name`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `software_package` @@ -673,7 +671,7 @@ CREATE TABLE `software_repo` ( `repo_password` varchar(30) default NULL, `active` varchar(255) NOT NULL default 'y', PRIMARY KEY (`software_repo_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `software_repo` @@ -701,7 +699,7 @@ CREATE TABLE `software_update` ( `v4` tinyint(4) NOT NULL default '0', `type` enum('full','update') NOT NULL default 'full', PRIMARY KEY (`software_update_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `software_update` @@ -721,7 +719,7 @@ CREATE TABLE `software_update_inst` ( `status` enum('none','installing','installed','deleting') NOT NULL default 'none', PRIMARY KEY (`software_update_inst_id`), UNIQUE KEY `software_update_id` (`software_update_id`,`package_name`,`server_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `software_update_inst` @@ -780,7 +778,7 @@ CREATE TABLE `spamfilter_policy` ( `message_size_limit` int(11) default NULL, `banned_rulenames` varchar(64) default NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ; +) ENGINE=MyISAM AUTO_INCREMENT=13 ; -- -- Daten für Tabelle `spamfilter_policy` @@ -815,7 +813,7 @@ CREATE TABLE `spamfilter_users` ( `local` char(1) default NULL, PRIMARY KEY (`id`), UNIQUE KEY `email` (`email`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `spamfilter_users` @@ -842,7 +840,7 @@ CREATE TABLE `spamfilter_wblist` ( `priority` int(11) NOT NULL, `active` enum('y','n') NOT NULL default 'y', PRIMARY KEY (`wblist_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `spamfilter_wblist` @@ -868,7 +866,7 @@ CREATE TABLE `support_message` ( `message` varchar(255) default NULL, `tstamp` int(11) NOT NULL default '1187707778', PRIMARY KEY (`support_message_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -886,7 +884,7 @@ CREATE TABLE `sys_datalog` ( `user` varchar(255) NOT NULL default '', `data` text NOT NULL, PRIMARY KEY (`datalog_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `sys_datalog` @@ -915,7 +913,7 @@ CREATE TABLE `sys_dbsync` ( `last_datalog_id` bigint(20) NOT NULL default '0', PRIMARY KEY (`id`), KEY `last_datalog_id` (`last_datalog_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `sys_dbsync` @@ -940,7 +938,7 @@ CREATE TABLE `sys_filesync` ( `wput_options` varchar(255) NOT NULL default '--timestamping --reupload --dont-continue', `active` int(11) NOT NULL default '1', PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `sys_filesync` @@ -959,7 +957,7 @@ CREATE TABLE `sys_group` ( `description` text NOT NULL, `client_id` int(11) NOT NULL default '0', PRIMARY KEY (`groupid`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; +) ENGINE=MyISAM AUTO_INCREMENT=4 ; -- -- Daten für Tabelle `sys_group` @@ -992,7 +990,7 @@ CREATE TABLE `sys_user` ( `default_group` int(11) NOT NULL default '0', `client_id` int(11) NOT NULL default '0', PRIMARY KEY (`userid`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; +) ENGINE=MyISAM AUTO_INCREMENT=3 ; -- -- Daten für Tabelle `sys_user` @@ -1045,7 +1043,7 @@ CREATE TABLE `web_domain` ( `apache_directives` text, `active` varchar(255) NOT NULL default 'y', PRIMARY KEY (`domain_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- @@ -1074,7 +1072,7 @@ CREATE TABLE `web_database` ( `remote_access` varchar(255) NOT NULL default 'y', `active` varchar(255) NOT NULL default 'y', PRIMARY KEY (`database_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten für Tabelle `web_database` @@ -1090,7 +1088,7 @@ CREATE TABLE `attempts_login` ( `ip` varchar(12) NOT NULL, `times` tinyint(1) NOT NULL default '1', `login_time` timestamp NOT NULL default '0000-00-00 00:00:00' -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM; -- @@ -1104,29 +1102,45 @@ CREATE TABLE `monitor_data` ( `data` mediumtext NOT NULL, `state` enum('no_state', 'unknown', 'ok', 'info', 'warning', 'critical', 'error') NOT NULL default 'unknown', PRIMARY KEY (`server_id`,`type`,`created`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - - - -# iso_country_list.sql -# -# This will create and then populate a MySQL table with a list of the names and -# ISO 3166 codes for countries in existence as of the date below. -# -# For updates to this file, see http://27.org/isocountrylist/ -# For more about ISO 3166, see http://www.iso.ch/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html -# -# Created by getisocountrylist.pl on Sun Nov 2 14:59:20 2003. -# Wm. Rhodes -# - -CREATE TABLE IF NOT EXISTS country ( - iso CHAR(2) NOT NULL PRIMARY KEY, - name VARCHAR(80) NOT NULL, - printable_name VARCHAR(80) NOT NULL, - iso3 CHAR(3), - numcode SMALLINT -); +) ENGINE=MyISAM; + + +-- +-- Tabellenstruktur für Tabelle `sys_config` +-- + +CREATE TABLE `sys_config` ( + `config_id` int(11) NOT NULL, + `group` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `value` varchar(255) NOT NULL +) ENGINE=MyISAM; + +INSERT INTO sys_config VALUES ('1','db','db_version','3.0.0.8'); + + +-- -------------------------------------------------------- + +-- +-- iso_country_list.sql +-- +-- This will create and then populate a MySQL table with a list of the names and +-- ISO 3166 codes for countries in existence as of the date below. +-- +-- For updates to this file, see http://27.org/isocountrylist/ +-- For more about ISO 3166, see http://www.iso.ch/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html +-- +-- Created by getisocountrylist.pl on Sun Nov 2 14:59:20 2003. +-- Wm. Rhodes +-- + +CREATE TABLE `country` ( + `iso` CHAR(2) NOT NULL PRIMARY KEY, + `name` VARCHAR(80) NOT NULL, + `printable_name` VARCHAR(80) NOT NULL, + `iso3` CHAR(3), + `numcode` SMALLINT +) ENGINE=MyISAM; INSERT INTO country VALUES ('AF','AFGHANISTAN','Afghanistan','AFG','004'); INSERT INTO country VALUES ('AL','ALBANIA','Albania','ALB','008'); @@ -1368,10 +1382,6 @@ INSERT INTO country VALUES ('YE','YEMEN','Yemen','YEM','887'); INSERT INTO country VALUES ('ZM','ZAMBIA','Zambia','ZMB','894'); INSERT INTO country VALUES ('ZW','ZIMBABWE','Zimbabwe','ZWE','716'); +-- -------------------------------------------------------- SET FOREIGN_KEY_CHECKS = 1; - - - - - diff --git a/install/tpl/config.inc.php.master b/install/tpl/config.inc.php.master index 077d1b50ed..0d624415b0 100644 --- a/install/tpl/config.inc.php.master +++ b/install/tpl/config.inc.php.master @@ -32,122 +32,95 @@ if( !empty($_SERVER['DOCUMENT_ROOT']) ) { Header("Pragma: no-cache"); Header("Cache-Control: no-store, no-cache, max-age=0, must-revalidate"); - Header("Content-Type: text/html"); + Header("Content-Type: text/html; charset=utf-8"); ini_set('register_globals',0); } -$conf["app_title"] = "ISPConfig"; -$conf["app_version"] = "3.0.0"; -$conf["modules_available"] = "admin,mail,sites,monitor,client,dns"; -$conf["interface_logout_url"] = ""; -//** Key paramaters +//** Application define('ISPC_APP_TITLE', 'ISPConfig'); -$conf['app_title'] = 'ISPConfig'; -define('ISPC_APP_VERSION', '3.0.0'); -$conf['app_version'] = '3.0.0'; -$conf['modules_available'] = 'admin,mail,sites,monitor,client,dns,help'; - -//** The main ROOT is the parent directory to this file, ie Interface/. NO trailing slashes. -define('ISPC_ROOT_PATH', realpath(dirname(__FILE__).'/../')); -define('ISPC_LIB_PATH', ISPC_ROOT_PATH.'/lib'); -define('ISPC_CLASS_PATH', ISPC_ROOT_PATH.'/lib/classes'); -define('ISPC_WEB_PATH', ISPC_ROOT_PATH.'/web'); -define('ISPC_THEMES_PATH', ISPC_ROOT_PATH.'/web/themes'); - -define('ISPC_WEB_TEMP_PATH', ISPC_WEB_PATH.'/temp'); // Path for downloads, accessible via browser -define('ISPC_CACHE_PATH', ISPC_ROOT_PATH.'/cache'); - -//** Interface settings -define('ISPC_INTERFACE_MODULES_ENABLED', 'mail,sites,dns,tools'); +define('ISPC_APP_VERSION', '3.0.8 beta'); +define('ISPC_APP_LINK', 'http://www.howtoforge.com/forums/showthread.php?t=26988'); -/* - Server variables -*/ - -$conf["server_id"] = "{server_id}"; +//** Database +$conf["db_type"] = 'mysql'; +$conf["db_host"] = '{mysql_server_host}'; +$conf["db_database"] = '{mysql_server_database}'; +$conf["db_user"] = '{mysql_server_ispconfig_user}'; +$conf["db_password"] = '{mysql_server_ispconfig_password}'; +$conf["db_charset"] = 'utf8'; // same charset as html-charset - (HTML --> MYSQL: "utf-8" --> "utf8", "iso-8859-1" --> "latin1") +define("DB_TYPE",$conf["db_type"]); +define("DB_HOST",$conf["db_host"]); +define("DB_DATABASE",$conf["db_database"]); +define("DB_USER",$conf["db_user"]); +define("DB_PASSWORD",$conf["db_password"]); +define("DB_CHARSET",$conf["db_charset"]); -/* - Database Settings -*/ -$conf["db_type"] = 'mysql'; -$conf["db_host"] = '{mysql_server_host}'; -$conf["db_database"] = '{mysql_server_database}'; -$conf["db_user"] = '{mysql_server_ispconfig_user}'; -$conf["db_password"] = '{mysql_server_ispconfig_password}'; +//** Paths +define('ISPC_ROOT_PATH', realpath(dirname(__FILE__).'/../')); // The main ROOT is the parent directory to this file, ie Interface/. NO trailing slashes. +define('ISPC_LIB_PATH', ISPC_ROOT_PATH.'/lib'); +define('ISPC_CLASS_PATH', ISPC_ROOT_PATH.'/lib/classes'); +define('ISPC_WEB_PATH', ISPC_ROOT_PATH.'/web'); +define('ISPC_THEMES_PATH', ISPC_ROOT_PATH.'/web/themes'); +define('ISPC_WEB_TEMP_PATH', ISPC_WEB_PATH.'/temp'); // Path for downloads, accessible via browser +define('ISPC_CACHE_PATH', ISPC_ROOT_PATH.'/cache'); +//** Paths (Do not change!) +$conf["rootpath"] = substr(dirname(__FILE__),0,-4); +$conf["fs_div"] = "/"; // File system divider, "\\" on windows and "/"" on linux and unix +$conf["classpath"] = $conf["rootpath"].$conf["fs_div"]."lib".$conf["fs_div"]."classes"; +$conf["temppath"] = $conf["rootpath"].$conf["fs_div"]."temp"; -/* - Path Settings (Do not change!) -*/ +define("FS_DIV",$conf["fs_div"]); +define("SERVER_ROOT",$conf["rootpath"]); +define("INCLUDE_ROOT",SERVER_ROOT.FS_DIV."lib"); +define("CLASSES_ROOT",INCLUDE_ROOT.FS_DIV."classes"); -$conf["rootpath"] = substr(dirname(__FILE__),0,-4); -$conf["fs_div"] = "/"; // File system divider, \\ on windows and / on linux and unix -$conf["classpath"] = $conf["rootpath"].$conf["fs_div"]."lib".$conf["fs_div"]."classes"; -$conf["temppath"] = $conf["rootpath"].$conf["fs_div"]."temp"; +//** Server +$conf['app_title'] = ISPC_APP_TITLE; +$conf['app_version'] = ISPC_APP_VERSION; +$conf['modules_available'] = 'admin,mail,sites,monitor,client,dns,help'; +$conf["server_id"] = "{server_id}"; -define("DIR_TRENNER",$conf["fs_div"]); -define("SERVER_ROOT",$conf["rootpath"]); -define("INCLUDE_ROOT",SERVER_ROOT.DIR_TRENNER."lib"); -define("CLASSES_ROOT",INCLUDE_ROOT.DIR_TRENNER."classes"); -define("DB_TYPE",$conf["db_type"]); -define("DB_HOST",$conf["db_host"]); -define("DB_DATABASE",$conf["db_database"]); -define("DB_USER",$conf["db_user"]); -define("DB_PASSWORD",$conf["db_password"]); +//** Interface +define('ISPC_INTERFACE_MODULES_ENABLED', 'mail,sites,dns,tools'); -/* - Logging -*/ -$conf["log_file"] = '/var/log/ispconfig/ispconfig.log'; -$conf["log_priority"] = {ispconfig_log_priority}; // 0 = Debug, 1 = Warning, 2 = Error +//** Logging +$conf["log_file"] = '/var/log/ispconfig/ispconfig.log'; +$conf["log_priority"] = {ispconfig_log_priority}; // 0 = Debug, 1 = Warning, 2 = Error -/* - Allow software package installations -*/ +//** Allow software package installations $conf['software_updates_enabled'] = false; -/* - Themes -*/ - -$conf["theme"] = 'default'; -$conf["html_content_encoding"] = 'text/html; charset=iso-8859-1'; -$conf["logo"] = 'themes/default/images/mydnsconfig_logo.gif'; - -/* - Default Language -*/ +//** Themes +$conf["theme"] = 'default'; +$conf["html_content_encoding"] = 'utf-8'; // example: utf-8, iso-8859-1, ... +$conf["logo"] = 'themes/default/images/ispc_logo.png'; -$conf["language"] = 'en'; -/* - Misc. -*/ +//** Default Language +$conf["language"] = 'en'; -$conf["interface_logout_url"] = ""; // example: http://www.domain.tld/ +//** Misc. +$conf["interface_logout_url"] = ""; // example: http://www.domain.tld/ -/* - Auto Load Modules -*/ -$conf["start_db"] = true; -$conf["start_session"] = true; +//** Auto Load Modules +$conf["start_db"] = true; +$conf["start_session"] = true; -/* - Constants -*/ +//** Constants define("LOGLEVEL_DEBUG",0); define("LOGLEVEL_WARN",1); define("LOGLEVEL_ERROR",2); diff --git a/install/tpl/server.ini.master b/install/tpl/server.ini.master index 559f5eeab9..4431669fdd 100644 --- a/install/tpl/server.ini.master +++ b/install/tpl/server.ini.master @@ -8,8 +8,8 @@ auto_network_configuration=n ip_address=192.168.0.105 netmask=255.255.255.0 gateway=192.168.0.1 -hostname=server1.example.com -nameservers=193.174.32.18,145.253.2.75 +hostname=server1.domain.tld +nameservers=192.168.0.1,192.168.0.2 [mail] module=postfix_mysql diff --git a/install/uninstall.php b/install/uninstall.php index 0aa488ce9c..000c6c2131 100644 --- a/install/uninstall.php +++ b/install/uninstall.php @@ -1,7 +1,7 @@ > Uninstall \n\n"; + require("/usr/local/ispconfig/server/lib/config.inc.php"); require("/usr/local/ispconfig/server/lib/app.inc.php"); diff --git a/install/update.php b/install/update.php index fe77547f6c..013a95874e 100644 --- a/install/update.php +++ b/install/update.php @@ -28,8 +28,12 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +/* + ISPConfig 3 updater. +*/ + +error_reporting(E_ALL|E_STRICT); -//** ISPConfig 3 installer. //** The banner on the command line echo "\n\n".str_repeat('-',80)."\n"; echo " _____ ___________ _____ __ _ @@ -43,14 +47,13 @@ echo " _____ ___________ _____ __ _ echo "\n".str_repeat('-',80)."\n"; echo "\n\n>> Update \n\n"; - //** Include the library with the basic installer functions require_once('lib/install.lib.php'); //** Include the base class of the installer class require_once('lib/installer_base.lib.php'); -//** Installer/updater logfile +//** Install logfile define('ISPC_LOG_FILE', '/var/log/ispconfig_install.log'); define('ISPC_INSTALL_ROOT', realpath(dirname(__FILE__).'/../')); @@ -82,6 +85,7 @@ unset($tmp_out); //** Set the mysql login information $conf["mysql"]["host"] = $conf_old["db_host"]; $conf["mysql"]["database"] = $conf_old["db_database"]; +$conf['mysql']['charset'] = 'utf8'; $conf["mysql"]["ispconfig_user"] = $conf_old["db_user"]; $conf["mysql"]["ispconfig_password"] = $conf_old["db_password"]; @@ -138,10 +142,10 @@ foreach($db_tables as $table) { //** load old data back into database if( !empty($conf["mysql"]["admin_password"]) ) { - system("mysql -h ".$conf['mysql']['host']." -u ".$conf['mysql']['admin_user']." -p".$conf['mysql']['admin_password']." ".$conf['mysql']['database']." < existing_db.sql"); + system("mysql --default-character-set=".$conf['mysql']['charset']." -h ".$conf['mysql']['host']." -u ".$conf['mysql']['admin_user']." -p".$conf['mysql']['admin_password']." ".$conf['mysql']['database']." < existing_db.sql"); } else { - system("mysql -h ".$conf['mysql']['host']." -u ".$conf['mysql']['admin_user']." ".$conf['mysql']['database']." < existing_db.sql"); + system("mysql --default-character-set=".$conf['mysql']['charset']." -h ".$conf['mysql']['host']." -u ".$conf['mysql']['admin_user']." ".$conf['mysql']['database']." < existing_db.sql"); } // create a backup copy of the ispconfig database in the root folder diff --git a/interface/lib/app.inc.php b/interface/lib/app.inc.php index 9d635ae2f4..ae5d9f45e0 100644 --- a/interface/lib/app.inc.php +++ b/interface/lib/app.inc.php @@ -100,14 +100,14 @@ class app { if($priority >= $this->_conf['log_priority']) { if (is_writable($this->_conf['log_file'])) { if (!$fp = fopen ($this->_conf['log_file'], 'a')) { - $this->error('Logfile konnte nicht ge�ffnet werden.'); + $this->error('Unable to open logfile.'); } if (!fwrite($fp, date('d.m.Y-H:i').' - '. $msg."\r\n")) { - $this->error('Schreiben in Logfile nicht m�glich.'); + $this->error('Unable to write to logfile.'); } fclose($fp); } else { - $this->error('Logfile ist nicht beschreibbar.'); + $this->error('Unable to write to logfile.'); } } } @@ -121,7 +121,7 @@ class app { $msg = ' Error - + @@ -161,15 +161,20 @@ class app { public function tpl_defaults() { - $this->tpl->setVar('theme', $_SESSION['s']['theme']); + $this->tpl->setVar('app_title', $this->_conf['app_title']); + $this->tpl->setVar('app_version', $this->_conf['app_version']); + $this->tpl->setVar('app_link', $this->_conf['app_link']); + $this->tpl->setVar('phpsessid', session_id()); + + $this->tpl->setVar('theme', $_SESSION['s']['theme']); $this->tpl->setVar('html_content_encoding', $this->_conf['html_content_encoding']); if(isset($this->_conf['logo']) && $this->_conf['logo'] != '' && @is_file($this->_conf['logo'])){ $this->tpl->setVar('logo', ''); } else { $this->tpl->setVar('logo', ' '); } - $this->tpl->setVar('app_title', $this->_conf['app_title']); + $this->tpl->setVar('delete_confirmation', $this->lng('delete_confirmation')); //print_r($_SESSION); if(isset($_SESSION['s']['module']['name'])) { @@ -181,7 +186,6 @@ class app { if(isset($_SESSION['s']['user']) && $this->auth->has_clients($_SESSION['s']['user']['userid'])) { $this->tpl->setVar('is_reseller', 1); } - $this->tpl->setVar('ISPC_APP_VERSION', ISPC_APP_VERSION); } } // end class diff --git a/interface/lib/classes/db_mysql.inc.php b/interface/lib/classes/db_mysql.inc.php index ec9a1f311c..6caf0c9374 100644 --- a/interface/lib/classes/db_mysql.inc.php +++ b/interface/lib/classes/db_mysql.inc.php @@ -37,18 +37,19 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. class db { - private $dbHost = ''; // hostname of the MySQL server - private $dbName = ''; // logical database name on that server - private $dbUser = ''; // database authorized user - private $dbPass = ''; // user's password - private $linkId = 0; // last result of mysql_connect() - private $queryId = 0; // last result of mysql_query() - private $record = array(); // last record fetched - private $autoCommit = 1; // Autocommit Transactions - private $currentRow; // current row number - private $errorNumber = 0; // last error number - public $errorMessage = ''; // last error message - private $errorLocation = '';// last error location + private $dbHost = ''; // hostname of the MySQL server + private $dbName = ''; // logical database name on that server + private $dbUser = ''; // database authorized user + private $dbPass = ''; // user's password + private $dbCharset = ""; // what charset comes and goes to mysql: utf8 / latin1 + private $linkId = 0; // last result of mysql_connect() + private $queryId = 0; // last result of mysql_query() + private $record = array(); // last record fetched + private $autoCommit = 1; // Autocommit Transactions + private $currentRow; // current row number + private $errorNumber = 0; // last error number + public $errorMessage = ''; // last error message + private $errorLocation = ''; // last error location public $show_error_messages = false; public function __construct() @@ -58,6 +59,7 @@ class db $this->dbName = $conf['db_database']; $this->dbUser = $conf['db_user']; $this->dbPass = $conf['db_password']; + $this->dbCharset = $conf['db_charset']; //$this->connect(); } @@ -81,6 +83,7 @@ class db $this->updateError('DB::connect()
mysql_connect'); return false; } + $this->queryId = @mysql_query('SET NAMES '.$this->dbCharset, $this->linkId); } return true; } diff --git a/interface/lib/config.inc.php b/interface/lib/config.inc.php deleted file mode 100644 index 184e1e09fb..0000000000 --- a/interface/lib/config.inc.php +++ /dev/null @@ -1,155 +0,0 @@ - \ No newline at end of file diff --git a/interface/lib/db_local.php.skel b/interface/lib/db_local.php.skel deleted file mode 100755 index 8f8ba35397..0000000000 --- a/interface/lib/db_local.php.skel +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/interface/web/admin/form/server_config.tform.php b/interface/web/admin/form/server_config.tform.php index 19bfb9a492..a40e47aa83 100644 --- a/interface/web/admin/form/server_config.tform.php +++ b/interface/web/admin/form/server_config.tform.php @@ -67,7 +67,7 @@ $form["tabs"]['server'] = array ( 'ip_address' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', - 'default' => '192.168.0.100', + 'default' => '192.168.0.105', 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', 'errmsg'=> 'ip_address_error_empty'), ), @@ -100,7 +100,7 @@ $form["tabs"]['server'] = array ( 'hostname' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', - 'default' => 'server1.example.com', + 'default' => 'server1.domain.tld', 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', 'errmsg'=> 'hostname_error_empty'), ), diff --git a/interface/web/dns/templates/dns_soa_edit.htm b/interface/web/dns/templates/dns_soa_edit.htm index 3221684b50..a421a475c5 100644 --- a/interface/web/dns/templates/dns_soa_edit.htm +++ b/interface/web/dns/templates/dns_soa_edit.htm @@ -22,15 +22,15 @@ - e.g. mydomain.com. + e.g. domain.tld - e.g. ns1.mydomain.com. + e.g. ns1.domain.tld - e.g. postmaster.mydomain.com. + e.g. webmaster.domain.tld diff --git a/interface/web/mail/form/spamfilter_config.tform.php b/interface/web/mail/form/spamfilter_config.tform.php index b3f42a9a43..3f5d582e23 100644 --- a/interface/web/mail/form/spamfilter_config.tform.php +++ b/interface/web/mail/form/spamfilter_config.tform.php @@ -61,7 +61,7 @@ $form["tabs"]['server'] = array ( 'ip_address' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', - 'default' => '192.168.0.100', + 'default' => '192.168.0.105', 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', 'errmsg'=> 'ip_address_error_empty'), ), @@ -94,7 +94,7 @@ $form["tabs"]['server'] = array ( 'hostname' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', - 'default' => 'server1.example.com', + 'default' => 'server1.domain.tld', 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', 'errmsg'=> 'hostname_error_empty'), ), diff --git a/interface/web/themes/default/templates/main.tpl.htm b/interface/web/themes/default/templates/main.tpl.htm index cf3790d30e..023ee7e379 100644 --- a/interface/web/themes/default/templates/main.tpl.htm +++ b/interface/web/themes/default/templates/main.tpl.htm @@ -2,8 +2,8 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -ISPConfig 3 - +<tmpl_var name="app_title"> <tmpl_var name="app_version"> +"/> @@ -62,7 +62,7 @@ + Powered by " target="_blank"> diff --git a/remoting_client/example.php b/remoting_client/example.php index 7d89cd40a6..89590348c2 100644 --- a/remoting_client/example.php +++ b/remoting_client/example.php @@ -29,7 +29,7 @@ try { /* //* Add a email domain $params = array( 'server_id' => 1, - 'domain' => 'test.com', + 'domain' => 'domain.tld', 'active' => 'y'); $client_id = 0; $domain_id = $client->mail_domain_add($session_id, $client_id, $params); @@ -38,7 +38,7 @@ try { /* //* Update email domain $params = array( 'server_id' => 1, - 'domain' => 'test.org', + 'domain' => 'domain.tld', 'active' => 'y'); //* ID of the client. 0 = the admin owns this record. $client_id = 0; diff --git a/server/ispconfig.log b/server/ispconfig.log deleted file mode 100644 index cfe1977365..0000000000 --- a/server/ispconfig.log +++ /dev/null @@ -1,853 +0,0 @@ -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'. diff --git a/server/lib/app.inc.php b/server/lib/app.inc.php index 62580db060..d045486b67 100644 --- a/server/lib/app.inc.php +++ b/server/lib/app.inc.php @@ -87,7 +87,7 @@ class app { if($priority >= $conf["log_priority"]) { //if (is_writable($conf["log_file"])) { if (!$fp = fopen ($conf["log_file"], "a")) { - die("Unable to open Logfile."); + die("Unable to open logfile."); } switch ($priority) { case 0: diff --git a/server/lib/classes/db_mysql.inc.php b/server/lib/classes/db_mysql.inc.php index f25153260b..0270821b9c 100644 --- a/server/lib/classes/db_mysql.inc.php +++ b/server/lib/classes/db_mysql.inc.php @@ -29,18 +29,19 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. class db { - var $dbHost = ""; // hostname of the MySQL server - var $dbName = ""; // logical database name on that server - var $dbUser = ""; // database authorized user - var $dbPass = ""; // user's password - var $linkId = 0; // last result of mysql_connect() - var $queryId = 0; // last result of mysql_query() - var $record = array(); // last record fetched - var $autoCommit = 1; // Autocommit Transactions - var $currentRow; // current row number - var $errorNumber = 0; // last error number - var $errorMessage = ""; // last error message - var $errorLocation = "";// last error location + var $dbHost = ""; // hostname of the MySQL server + var $dbName = ""; // logical database name on that server + var $dbUser = ""; // database authorized user + var $dbPass = ""; // user's password + var $dbCharset = ""; // what charset comes and goes to mysql: utf8 / latin1 + var $linkId = 0; // last result of mysql_connect() + var $queryId = 0; // last result of mysql_query() + var $record = array(); // last record fetched + var $autoCommit = 1; // Autocommit Transactions + var $currentRow; // current row number + var $errorNumber = 0; // last error number + var $errorMessage = ""; // last error message + var $errorLocation = ""; // last error location var $show_error_messages = false; // constructor @@ -52,6 +53,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. $this->dbName = $conf["db_database"]; $this->dbUser = $conf["db_user"]; $this->dbPass = $conf["db_password"]; + $this->dbCharset = $conf["db_charset"]; //$this->connect(); } @@ -78,6 +80,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. $this->updateError('DB::connect()
mysql_connect'); return false; } + $this->queryId = @mysql_query('SET NAMES '.$this->dbCharset, $this->linkId); } return true; } diff --git a/server/lib/config.inc.php b/server/lib/config.inc.php deleted file mode 100644 index 062a52b4ea..0000000000 --- a/server/lib/config.inc.php +++ /dev/null @@ -1,72 +0,0 @@ - \ No newline at end of file -- GitLab