Index: trunk/wb/install/save.php
===================================================================
--- trunk/wb/install/save.php	(revision 401)
+++ trunk/wb/install/save.php	(revision 402)
@@ -266,7 +266,7 @@
 // End admin user details code
 
 // Get the SMTP server settings and check if valid
-$smtp_server_used = "xxx.yourdomain.com";
+$smtp_server_used = "mail.example.com";
 if(isset($_POST['outgoing_mails']) AND $_POST['outgoing_mails']=="smtp") {
 	if($_POST['smtp_server'] == "" || $_POST['smtp_server'] == "xxx.yourdomain.com") {
 		set_error('Please define the SMTP host (Step 7) of your domain or choose option PHP mail().');
@@ -276,7 +276,7 @@
 }
 
 // Create SMTP server output string for the config.php file
-if($smtp_server_used == "xxx.yourdomain.com") {
+if($smtp_server_used == "mail.example.com") {
 	$smtp_server_used = "// define('WBMAILER_SMTP_HOST', '" .$smtp_server_used ."');\n";
 } else {
 	$smtp_server_used = "define('WBMAILER_SMTP_HOST', '" .$smtp_server_used ."');\n";
@@ -299,7 +299,7 @@
 "define('ADMIN_PATH', WB_PATH.'/admin');\n".
 "define('ADMIN_URL', '$wb_url/admin');\n".
 "\n".
-"// some mail provider like GMX do not deliver mails send via PHP mail() function as SMTP authentification is missing\n".
+"// some mail provider do not deliver mails send via PHP mail() function as SMTP authentification is missing\n".
 "// in that case activate SMTP for outgoing mails: un-comment next line and specify SMTP host of your domain\n".
 $smtp_server_used.
 "\n".
Index: trunk/wb/install/index.php
===================================================================
--- trunk/wb/install/index.php	(revision 401)
+++ trunk/wb/install/index.php	(revision 402)
@@ -360,15 +360,19 @@
 			</td>
 			<td id="caption_smtp_server" colspan="2" style="color: <?php if(!isset($_SESSION['outgoing_mails']) OR $_SESSION['outgoing_mails'] == 'php') { echo '#FFF'; } else { echo '#666'; } ?>;">SMTP host:</td>
 			<td>
-				<input type="text" tabindex="20" id="smtp_server" name="smtp_server" style="display: <?php if(!isset($_SESSION['outgoing_mails']) OR $_SESSION['outgoing_mails'] == 'php') { echo 'none'; } else { echo 'block'; } ?>;" value="<?php if(isset($_SESSION['smtp_server'])) { echo $_SESSION['smtp_server']; } else { echo 'xxx.yourdomain.com'; } ?>" />
+				<input type="text" tabindex="20" id="smtp_server" name="smtp_server" style="display: <?php if(!isset($_SESSION['outgoing_mails']) OR $_SESSION['outgoing_mails'] == 'php') { echo 'none'; } else { echo 'block'; } ?>;" value="<?php if(isset($_SESSION['smtp_server'])) { echo $_SESSION['smtp_server']; } else { echo 'mail.example.com'; } ?>" />
 			</td>
 		</tr>
 		<tr>
 			<td colspan="5">
-				<strong>Note:</strong><br \>Some mail provider (like GMX) do not deliver mails not send via SMTP to prevent spamming.
-				To enable SMTP for all mails send out by Website Baker, you need to know the SMTP host of your domain.<br \>
-				If you are not sure about the settings, or you do not know the SMTP host of your domain, stay with the default setting PHP mail(). You can change the settings
-				later by modifying one entry in the config.php file.
+				<div style="border: 1px solid #CCC; background-color: #EEE; padding: 5px;">
+				<strong> Please Note:</strong>
+				<br \>
+				Some service providers do not support sending mail via PHP.
+				If your provider requires you to use SMTP for sending mail, you must know the SMTP host address.
+				If you are not sure about these settings, or you do not know the SMTP host of your domain, use the default "PHP mail()" setting.
+				You can change the settings	later if needed.
+				</div>
 			</td>
 		</tr>
 		<tr>
