diff --git a/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt b/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt
index 0954a0ec644a0587df0ba80a33f4f65d8ef38121..138f8816a438a26b75ccf93a47e8953df43d7988 100644
--- a/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt
+++ b/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt
@@ -186,6 +186,17 @@ vi /etc/init.d/mydns
 #               Based upon skeleton 1.9.4 by Miquel van Smoorenburg
 #               <miquels@cistron.nl> and Ian Murdock <imurdock@gnu.ai.mit.edu>.
 #
+### BEGIN INIT INFO
+# Provides:          MyDNS
+# Required-Start:    $syslog
+# Should-Start:
+# Required-Stop:
+# Should-Stop:
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: MyDNS Server
+# Description:       MyDNS DNS Server
+### END INIT INFO
 
 set -e
 
diff --git a/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt b/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt
index 267089f6a2b0d5367aa31bac97b6509dd48c2432..b9010cbbd39c7bcd82a53fc691cfc5a1fba212c9 100644
--- a/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt
+++ b/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt
@@ -203,6 +203,17 @@ vi /etc/init.d/mydns
 #               Based upon skeleton 1.9.4 by Miquel van Smoorenburg
 #               <miquels@cistron.nl> and Ian Murdock <imurdock@gnu.ai.mit.edu>.
 #
+### BEGIN INIT INFO
+# Provides:          MyDNS
+# Required-Start:    $syslog
+# Should-Start:
+# Required-Stop:
+# Should-Stop:
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: MyDNS Server
+# Description:       MyDNS DNS Server
+### END INIT INFO
 
 set -e
 
diff --git a/docs/INSTALL_UBUNTU_8.10.txt b/docs/INSTALL_UBUNTU_8.10.txt
index f6896ea86c3d0411dfefafe8b89da0ef84a40ff7..0980dc9b20cddc2e880a8fd46c400eaa37c00d32 100644
--- a/docs/INSTALL_UBUNTU_8.10.txt
+++ b/docs/INSTALL_UBUNTU_8.10.txt
@@ -169,6 +169,17 @@ and enter the following lines (between the "---"-lines):
 #               Based upon skeleton 1.9.4 by Miquel van Smoorenburg
 #               <miquels@cistron.nl> and Ian Murdock <imurdock@gnu.ai.mit.edu>.
 #
+### BEGIN INIT INFO
+# Provides:          MyDNS
+# Required-Start:    $syslog
+# Should-Start:
+# Required-Stop:
+# Should-Stop:
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: MyDNS Server
+# Description:       MyDNS DNS Server
+### END INIT INFO
 
 set -e
 
diff --git a/install/apps/bastille-firewall b/install/apps/bastille-firewall
index 2f701ec92a86970634e84504b85fbd94326f82c4..86da005ac7375ed58bfb6c08fe6ea5ef624eae2c 100644
--- a/install/apps/bastille-firewall
+++ b/install/apps/bastille-firewall
@@ -41,9 +41,23 @@
 #
 # ** As of 0.99-beta1, this script merely kicks off the real script,
 #    either /sbin/bastille-ipchains or /sbin/bastille-netfilter
-
+#
 # Default is to use the 'ipchains' script, which will load the
 # ipchains compatibility module if you're using a 2.4 kernel
+#
+### BEGIN INIT INFO
+# Provides:          Bastille-Firewall
+# Required-Start:    $syslog
+# Should-Start:
+# Required-Stop:
+# Should-Stop:
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: Bastille Firewall
+# Description:       Bastille Firewall for iptables and ipchains
+### END INIT INFO
+
+
 REALSCRIPT=/sbin/bastille-ipchains
 PATH=/sbin:/bin:/usr/sbin:/usr/bin
 
diff --git a/interface/web/dns/dns_wizard.php b/interface/web/dns/dns_wizard.php
index 3808e673e9a40396342983c1ae8347dccc1fadee..31d704d963f721e475a79f1c092de1d44a042aae 100644
--- a/interface/web/dns/dns_wizard.php
+++ b/interface/web/dns/dns_wizard.php
@@ -138,10 +138,10 @@ if($_POST['create'] == 1) {
 	if(isset($_POST['ns2']) && $_POST['ns2'] == '') $error .= $app->lng('error_ns2_empty').'<br />';
 	if(isset($_POST['email']) && $_POST['email'] == '') $error .= $app->lng('error_email_empty').'<br />';
 	
-	if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['domain'])) $error .= $app->lng('error_domain_regex').'<br />';
-	if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns1'])) $error .= $app->lng('error_ns1_regex').'<br />';
-	if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns2'])) $error .= $app->lng('error_ns2_regex').'<br />';
-	if(!preg_match('/^\w+[\w.-]*\w+@\w+[\w.-]*\w+\.[a-z]{2,10}$/i',$_POST['email'])) $error .= $app->lng('error_email_regex').'<br />';
+	if(isset($_POST['domain']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['domain'])) $error .= $app->lng('error_domain_regex').'<br />';
+	if(isset($_POST['ns1']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns1'])) $error .= $app->lng('error_ns1_regex').'<br />';
+	if(isset($_POST['ns2']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns2'])) $error .= $app->lng('error_ns2_regex').'<br />';
+	if(isset($_POST['email']) && !preg_match('/^\w+[\w.-]*\w+@\w+[\w.-]*\w+\.[a-z]{2,10}$/i',$_POST['email'])) $error .= $app->lng('error_email_regex').'<br />';
 	
 	// make sure that the record belongs to the clinet group and not the admin group when a dmin inserts it
 	if($_SESSION["s"]["user"]["typ"] == 'admin' && isset($_POST['client_group_id'])) {