diff --git a/INSTALL_UBUNTU.txt b/INSTALL_UBUNTU.txt
index 9c1657752532fbf4d3e39f30f7cbaffb0b16d38f..b160864c9d4a84cd50fc20437b0d130ec9c74ca0 100644
--- a/INSTALL_UBUNTU.txt
+++ b/INSTALL_UBUNTU.txt
@@ -44,16 +44,14 @@ a2enmod rewrite
 
 4) Install pure-ftpd and quota
 
-apt-get install pure-ftpd-common pure-ftpd-mysql quota quotatool
-
-Edit the file /etc/default/pure-ftpd-common
+First we have to make sure that the capability module is loaded in the kernel
 
-vi /etc/default/pure-ftpd-common
+modprobe capability
+echo 'capability' >> /etc/modules
 
-and change the start mode from inetd to standalone. Then execute:
-
-/etc/init.d/openbsd-inetd restart
+Then we install pureftpd and quota.
 
+apt-get install pure-ftpd-common pure-ftpd-mysql quota quotatool
 
 5) Install mydns
 
diff --git a/install/lib/install.lib.php b/install/lib/install.lib.php
index 923f0943a7f90210ed2de22e162b915091f0a051..7e81b6d617959c092fda62d290e4af54b27bd82a 100644
--- a/install/lib/install.lib.php
+++ b/install/lib/install.lib.php
@@ -66,11 +66,11 @@ function get_distname() {
 	
 		if(trim(file_get_contents('/etc/debian_version')) == '4.0') {
 			$distname = 'debian40';
-			swriteln('Operating System: Debian 4.0 or compatible');
+			swriteln("Operating System: Debian 4.0 or compatible\n");
 		}
 		if(trim(file_get_contents('/etc/debian_version')) == 'lenny/sid') {
 			$distname = 'debian40';
-			swriteln('Operating System: Debian Lenny/Sid or compatible');
+			swriteln("Operating System: Debian Lenny/Sid or compatible\n");
 		}
 	}
 	
diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php
index fcb8c85cc36510ec6577a381df0071bef028364e..22d8ab41b606b43093fe91f6a8dedcf087c5995e 100644
--- a/install/lib/installer_base.lib.php
+++ b/install/lib/installer_base.lib.php
@@ -488,6 +488,8 @@ class installer_base {
 	public function configure_getmail()
     {
 		$config_dir = $this->conf['getmail']['config_dir'];
+		
+		if(!is_dir($config_dir)) exec("mkdir -p ".escapeshellcmd($config_dir));
 
 		$command = "useradd -d $config_dir getmail";
 		caselog($command.' &> /dev/null', __FILE__, __LINE__, "EXECUTED: $command", "Failed to execute the command $command");
diff --git a/install/sql/ispconfig3.sql b/install/sql/ispconfig3.sql
index 17cb382d8e34ef9bc9d383134c38ae0ec8512a70..04cb3c99ded8b2e0e9085a11a430d8bfd4d2951a 100644
--- a/install/sql/ispconfig3.sql
+++ b/install/sql/ispconfig3.sql
@@ -814,7 +814,7 @@ CREATE TABLE `sys_user` (
 -- Daten für Tabelle `sys_user`
 -- 
 
-INSERT INTO `sys_user` (`userid`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `username`, `passwort`, `modules`, `startmodule`, `app_theme`, `typ`, `active`, `language`, `groups`, `default_group`, `client_id`) VALUES (1, 1, 0, 'riud', 'riud', '', 'admin', '21232f297a57a5a743894a0e4a801fc3', 'admin,client,mail,monitor,sites', 'mail', 'default', 'admin', 1, 'en', '1,2', 1, 0);
+INSERT INTO `sys_user` (`userid`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `username`, `passwort`, `modules`, `startmodule`, `app_theme`, `typ`, `active`, `language`, `groups`, `default_group`, `client_id`) VALUES (1, 1, 0, 'riud', 'riud', '', 'admin', '21232f297a57a5a743894a0e4a801fc3', 'admin,client,mail,monitor,sites,dns', 'mail', 'default', 'admin', 1, 'en', '1,2', 1, 0);
 
 -- --------------------------------------------------------