Sicherheit dieses Mailformulars

Dj Mike

Mitglied
Hallo,
ich bin mir nich ganz sicher, ob ich mit diesem Post hier richtig bin. Ich habe ein Mailformular geschrieben, aber ich habe nun das Gefühl, dass es für Spam-Zwecke misbraucht wird. Ich hab es also schnell wieder aus dem Internet genommen.
Meine Frage: Kann mir jemand sagen, ob dieses Script eine Sicherheitslücke hat?
Script im Anhang!
Micha

[Edit by Dennis Wronka]Ich bin mal so frei und setz das Script der Einfachheit halber mit in den Beitrag.

PHP:
<?php
	// Settings
	$webmaster = "user@server.tld"; // Email to which the submitted form is sent
	$mailError = "Es ist ein Fehler aufgetreten. Falls der Fehler weiterhin auftritt, nehmen Sie bitte per <a href='kontakt.html'>Email</a> kontakt mit uns auf."; // General error message
	$redirect = "success.html"; // Automatic redirect to a specific page (absolute or relative path) after the success message (leave empty to disable)
	$submitOk = $_POST['submitOk']; // Variable that tells, if the form was submitted or not
	if(isset($submitOk)){ // If the form was submitted
		// Get variables from post
		// All slashes and code are being striped
		$name = isset($_POST['name']) ? stripslashes(strip_tags($_POST['name'])) : "";
		$firstName = isset($_POST['firstName']) ? stripslashes(strip_tags($_POST['firstName'])) : "";
		$street = isset($_POST['street']) ? stripslashes(strip_tags($_POST['street'])) : "";
		$nr = isset($_POST['nr']) ? stripslashes(strip_tags($_POST['nr'])) : "";
		$zip = isset($_POST['zip']) ? stripslashes(strip_tags($_POST['zip'])) : "";
		$city = isset($_POST['city']) ? stripslashes(strip_tags($_POST['city'])) : "";
		$phone = isset($_POST['phone']) ? stripslashes(strip_tags($_POST['phone'])) : "";
		$fax = isset($_POST['fax']) ? stripslashes(strip_tags($_POST['fax'])) : "";
		$mobile = isset($_POST['mobile']) ? stripslashes(strip_tags($_POST['mobile'])) : "";
		$mail = isset($_POST['mail']) ? stripslashes(strip_tags($_POST['mail'])) : "";
		$os = isset($_POST['os']) ? stripslashes(strip_tags($_POST['os'])) : "";
		$age = isset($_POST['age']) ? stripslashes(strip_tags($_POST['age'])) : "";
		$floppy = isset($_POST['floppy']) ? "Ja" : "Nein";
		$cd = isset($_POST['cd']) ? "Ja" : "Nein";
		$dvd = isset($_POST['dvd']) ? "Ja" : "Nein";
		$usb = isset($_POST['usb']) ? stripslashes(strip_tags($_POST['usb'])) : "Kein USB";
		$internet = isset($_POST['internet']) ? stripslashes(strip_tags($_POST['internet'])) : "Kein Internet";
		$description = stripslashes(strip_tags($_POST['description']));
		// Check variables for plausibility
		$error = array(); // Array, holding the errors
		$i = 0;
		// The check funktions
		function checkName($variable){
			if(preg_match("/^[a-zäöüÄÖÜß.`´'\-[:space:]]{3,}$/i",$variable))
				return true;
			else
				return false;
		}
		function checkNumber($variable){
			if(preg_match("/^[0-9a-z[:space:]]{1,}$/i",$variable))
				return true;
			else
				return false;
		}
		function checkZip($variable){
			if(preg_match("/^[0-9]{5}$/",$variable))
				return true;
			else
				return false;
		}
		function checkPhone($variable){
			if(preg_match("/^[0-9[:space:]\/\-]{3,}$/",$variable))
				return true;
			else
				return false;
		}
		function checkMail($variable){
			//Leading and following whitespaces are ignored
			$variable = trim($variable);
			//Email-address is set to lower case
			$variable = strtolower($variable);

			//List of signs which are illegal in name, subdomain and domain
			$illegalString = '\\\\(\\n)@';

			//Parts of the regular expression = name@subdomain.domain.toplevel
			$name      = '([^\\.'.$illegalString.'][^'.$illegalString.']?)+';
			$subdomain = '([^\\._'.$illegalString.']+\\.)?';
			$domain    = '[^\\.\\-_'.$illegalString.'][^\\._'.$illegalString.']*[^\\.\\-_'.$illegalString.']';
			$toplevel  = '([a-z.]{2,})';

			if(preg_match('/^'.$name.'[@]'.$subdomain.$domain.'\.'.$toplevel.'$/',$variable))
				return true;
			else
				return false;
		}
		function checkOs($variable){
			if(preg_match("/^((Windows (95|98|98 SE|ME|NT|2000|XP Home|XP Professional|Server 2003))|Linux|Mac OS|Anderes)$/",$variable))
				return true;
			else
				return false;
		}
		function checkAge($variable){
			if(preg_match("/^(neu|1 Jahr|[2-9] Jahre|10 Jahre|Älter als 10 Jahre)$/",$variable))
				return true;
			else
				return false;
		}
		function checkDrive($variable){
			if(preg_match("/^(Ja|Nein)$/",$variable))
				return true;
			else
				return false;
		}
		function checkUsb($variable){
			if(preg_match("/^(1.1|2.0|Kein USB)$/",$variable))
				return true;
			else
				return false;
		}
		function checkInternet($variable){
			if(preg_match("/^(Modem|ISDN|DSL|Kein Internet)$/",$variable))
				return true;
			else
				return false;
		}
		function checkDescription($variable){
			if(preg_match("/^[a-z0-9äÄöÖüÜß[:space:].,`´_:;!?'\"\&\+\/\(\)\-]{10,}$/i",$variable))
				return true;
			else
				return false;
		}
		// Calling the check funktions
		if(!checkName($name)){
			$error[$i] = "name";
			$i++;
		}
		if(!checkName($firstName)){
			$error[$i] = "firstName";
			$i++;
		}
		if(!checkName($street) && $street!=""){
			$error[$i] = "street";
			$i++;
		}
		if(!checkNumber($nr) && $nr!=""){
			$error[$i] = "nr";
			$i++;
		}
		if(!checkZip($zip) && $zip!=""){
			$error[$i] = "zip";
			$i++;
		}
		if(!checkName($city) && $city!=""){
			$error[$i] = "city";
			$i++;
		}
		if(!checkPhone($phone)){
			$error[$i] = "phone";
			$i++;
		}
		if(!checkPhone($fax) && $fax!=""){
			$error[$i] = "fax";
			$i++;
		}
		if(!checkPhone($mobile) && $mobile!=""){
			$error[$i] = "mobile";
			$i++;
		}
		if(!checkMail($mail) && $mail!=""){
			$error[$i] = "mail";
			$i++;
		}
		if(!checkOs($os)){
			$error[$i] = "os";
			$i++;
		}
		if(!checkAge($age)){
			$error[$i] = "age";
			$i++;
		}
		if(!checkDrive($floppy)){
			$error[$i] = "floppy";
			$i++;
		}
		if(!checkDrive($cd)){
			$error[$i] = "cd";
			$i++;
		}
		if(!checkDrive($dvd)){
			$error[$i] = "dvd";
			$i++;
		}
		if(!checkUsb($usb)){
			$error[$i] = "usb";
			$i++;
		}
		if(!checkInternet($internet)){
			$error[$i] = "internet";
			$i++;
		}
		if(!checkDescription($description)){
			$error[$i] = "description";
			$i++;
		}
		// If there where errors, reload the form
		if(count($error)){
			unset($submitOk);
			$isError = true;
		}
		else{ // Else, send the email
			// Create the email:
				$subj = "Anfrage von pccare-aachen.de"; // Subject of the message
				$sender = "$firstName $name <$mail>";
				$body = "
Name:			$firstName $name
Email:			$mail
Telefon:		$phone
Mobil:			$mobile
Fax:			$fax
Adresse:		$street $nr
			$zip $city

Betriebssystem:		$os
Alter des PC's:		$age
Diskette:		$floppy
CD:			$cd
DVD:			$dvd
USB:			$usb
Internet:		$internet

Problembeschreibung:
$description"; // Body of the message
			// Send email
			error_reporting(0); // Disable error reporting (Errors are recorded in a textfile (maillog.txt)
			if(!mail("$webmaster","$subj","$body","FROM: $sender\n")){
				//mailError
				$logfile = "maillog.txt";
				$logfileHandle = fopen($logfile, 'a') or die("$mailError<br/><a href='javascript:history.back();'>Zurück</a>");
				$date = getdate();
				$date = $date['mday'].".".$date['mon'].".".$date['year']." - ".$date['hours'].":".$date['minutes'].":".$date['seconds'];
				$errormsg = "Fehler beim Emailversenden:\n$date\n\n$body\n\n\n";
				fwrite($logfileHandle,$errormsg);
				fclose($logfileHandle);
				die("$mailError<br/><a href='javascript:history.back();'>Zurück</a>");
			}
			// Success
			if($redirect != ""){
				header("Location: $redirect");
			}
		}
	}
	if(!isset($submitOk)){ // If the form was not submitted (or there where errors) display the submit form
		?>
		<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
		<html>
			<head>
				<title>PCCare Computer Hilfe - Anfrage</title>
				<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
				<meta http-equiv="content-language" content="de">
				<meta http-equiv="msthemecompatible" content="no">
				<meta name="keywords" content="PCCare, PC-Care, PCare, PCCare.GbR, PC-Care.GbR, PCare.GbR, Jona Wernerus, Micha Rappaport, Programme, Einführung, Aachen, AC, Webseiten, Webseite, Homepage, Homepages, Gestaltung, Instandsetzung, Problembehebung, Internetauftritt, gestalten, instand setzen, Probleme beheben, designen, PC-Reparatur, Dienstleistung, Dienstleistungen, Internet, Computer, PC, Hilfe, Reperatur, Reparieren, Webdesign, Design, Hardware, Software, Netz, Netzwerk, Support, Unterstützung, Virus, Viren, HTML, Sicherheit, Computer Aachen, PC Aachen">
				<meta name="description" content="Wenn Sie Hilfe bei der Anschaffung, der Installation oder der Nutzung ihres PC benötigen, dann wenden sie sich einfach an aus. Wir helfen Ihnen auch gerne bei allen anderen Fragen, Problemen oder Aufgaben rund um den PC, z.B. erstellen wir ihnen auch gerne eine eigene Internetseite!">
				<meta name="distribution" content="global">
				<meta name="author" content="PCCare">
				<meta name="revisit-after" content="30 days">
				<meta name="robots" content="index,follow">
			</head>
			<body>
				<div id="content">
					<h3>Anfrage - Bitte füllen Sie das Kontaktformular möglichst vollständig aus</h3>
					<p>Unter <a href="kontakt.html">Kontakt</a> können Sie auch persönlich mit uns Kontakt aufnehmen.</p>
					<form id="anfrage" method="post" action="<?=$_SERVER['PHP_SELF']?>">
						<input type="hidden" name="submitOk" value="true">
						<div>
							<div>
								<h4>Persönliche Informationen, Kontaktdaten:</h4>
							<div>
								<span class="column01">Name*</span>
								<span class="column02"><input type="text" name="name" tabindex="1" id="name"<?php if($isError) echo " value=\"$name\""; ?>><img class="info" id="nameInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Buchstaben: a-z<br/>- Sonderzeichen: äöüß.\'´`<br/>- Leerschritte<br/>Mindestlänge: Drei Zeichen', this, event, '200px')"/></span>
								<span class="column03">Straße, Nr</span>
								<span class="column04"><input type="text" name="street" tabindex="3" id="street"<?php if($isError) echo " value=\"$street\""; ?>><img class="info" id="streetInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Buchstaben: a-z<br/>- Sonderzeichen: äöüß.\'<br/>- Leerschritte<br/>Mindestlänge: Drei Zeichen', this, event, '200px')"/></span>
								<span class="column05"><input type="text" name="nr" class="smallInput" tabindex="4" id="nr"<?php if($isError) echo " value=\"$nr\""; ?>><img class="info" id="nrInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Zahlen: 0-9<br/>- Alle Buchstaben: a-7<br/>- Leerschritte', this, event, '200px')"/></span>
							</div>
							<div>
								<span class="column01">Vorname*</span>
								<span class="column02"><input type="text" name="firstName" tabindex="2" id="firstName"<?php if($isError) echo " value=\"$firstName\""; ?>><img class="info" id="firstNameInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Buchstaben: a-z<br/>- Sonderzeichen: äöüß.\'<br/>- Leerschritte<br/>Mindestlänge: Drei Zeichen', this, event, '200px')"/></span>
								<span class="column03">Ort, Plz</span>
								<span class="column04"><input type="text" name="city" tabindex="5" id="city"<?php if($isError) echo " value=\"$city\""; ?>><img class="info" id="cityInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Buchstaben: a-z<br/>- Sonderzeichen: äöüß.\'<br/>- Leerschritte<br/>Mindestlänge: Drei Zeichen', this, event, '200px')"/></span>
								<span class="column05"><input type="text" name="zip" class="smallInput" tabindex="6" id="zip"<?php if($isError) echo " value=\"$zip\""; ?>><img class="info" id="zipInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Zahlen: 0-9<br/>- Länge muss fünf Zeichen sein', this, event, '200px')"/></span>
							</div>
							<div>
								<span class="column01">Tel*</span>
								<span class="column02"><input type="text" name="phone" tabindex="7" id="phone"<?php if($isError) echo " value=\"$phone\""; ?>><img class="info" id="phoneInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Zahlen: 0-9<br/>- Sonderzeichen: /-<br/>- Leerschritte', this, event, '200px')"/></span>
								<span class="column03">Handy</span>
								<span class="column04"><input type="text" name="mobile" tabindex="8" id="mobile"<?php if($isError) echo " value=\"$mobile\""; ?>><img class="info" id="mobileInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Zahlen: 0-9<br/>- Sonderzeichen: /-<br/>- Leerschritte', this, event, '200px')"/></span>
							</div>
							<div>
								<span class="column01">Fax</span>
								<span class="column02"><input type="text" name="fax" tabindex="9" id="fax"<?php if($isError) echo " value=\"$fax\""; ?>><img class="info" id="faxInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Zahlen: 0-9<br/>- Sonderzeichen: /-<br/>- Leerschritte', this, event, '200px')"/></span>
								<span class="column03">Email</span>
								<span class="column04"><input type="text" name="mail" tabindex="10" id="mail"<?php if($isError) echo " value=\"$mail\""; ?>><img class="info" id="mailInfo" src="images/info.gif" alt="!" onMouseover="showhint('Bitte eine gültige Emailadresse angeben', this, event, '200px')"/></span>
							</div>
						</div>
						<div>
							<h4 class="space">Informationen zu Ihrem Computer:</h4>
							<div>
								<span class="column01">
									<select size="1" name="os" tabindex="11" id="os">
										<option <?php if(!$isError || $os == "Betriebssystem*") echo "selected"; ?>>Betriebssystem*</option>
										<option <?php if($os == "Windows 95") echo "selected"; ?>>Windows 95</option>
										<option <?php if($os == "Windows 98") echo "selected"; ?>>Windows 98</option>
										<option <?php if($os == "Windows 98 SE") echo "selected"; ?>>Windows 98 SE</option>
										<option <?php if($os == "Windows ME") echo "selected"; ?>>Windows ME</option>
										<option <?php if($os == "Windows NT") echo "selected"; ?>>Windows NT</option>
										<option <?php if($os == "Windows 2000") echo "selected"; ?>>Windows 2000</option>
										<option <?php if($os == "Windows XP Home") echo "selected"; ?>>Windows XP Home</option>
										<option <?php if($os == "Windows XP Professional") echo "selected"; ?>>Windows XP Professional</option>
										<option <?php if($os == "Windows Server 2003") echo "selected"; ?>>Windows Server 2003</option>
										<option <?php if($os == "Linux") echo "selected"; ?>>Linux</option>
										<option <?php if($os == "Mac OS") echo "selected"; ?>>Mac OS</option>
										<option <?php if($os == "Anderes") echo "selected"; ?>>Anderes</option>
									</select>
									<img class="info" id="osInfo" src="images/info.gif" alt="!" onMouseover="showhint('Bitte einen Eintrag aus der Liste wählen', this, event, '100px')"/>
								</span>
								<span class="column04">
									<select size="1" name="age" tabindex="12" id="age">
										<option <?php if(!$isError || $age == "Alter des PC´s*") echo "selected"; ?>>Alter des PC´s*</option>
										<option <?php if($age == "neu") echo "selected"; ?>>neu</option>
										<option <?php if($age == "1 Jahr") echo "selected"; ?>>1 Jahr</option>
										<option <?php if($age == "2 Jahre") echo "selected"; ?>>2 Jahre</option>
										<option <?php if($age == "3 Jahre") echo "selected"; ?>>3 Jahre</option>
										<option <?php if($age == "4 Jahre") echo "selected"; ?>>4 Jahre</option>
										<option <?php if($age == "5 Jahre") echo "selected"; ?>>5 Jahre</option>
										<option <?php if($age == "6 Jahre") echo "selected"; ?>>6 Jahre</option>
										<option <?php if($age == "7 Jahre") echo "selected"; ?>>7 Jahre</option>
										<option <?php if($age == "8 Jahre") echo "selected"; ?>>8 Jahre</option>
										<option <?php if($age == "9 Jahre") echo "selected"; ?>>9 Jahre</option>
										<option <?php if($age == "10 Jahre") echo "selected"; ?>>10 Jahre</option>
										<option <?php if($age == "Älter als 10 Jahre") echo "selected"; ?>>Älter als 10 Jahre</option>
									</select>
									<img class="info" id="ageInfo" src="images/info.gif" alt="!" onMouseover="showhint('Bitte einen Eintrag aus der Liste wählen', this, event, '200px')"/>
								</span>
							</div>
							<div class="space">
								<span class="column01">Laufwerke*</span>
								<span class="column03">Internet</span>
							</div>
							<div>
								<span class="column01">
									<input class="noBorder" type="checkbox" name="floppy" value="true" tabindex="13" <?php if($floppy == "Ja") echo "checked"; ?>>Diskette
									<input class="noBorder" type="checkbox" name="cd" value="true" tabindex="14" <?php if($cd == "Ja") echo "checked"; ?>>CD
									<input class="noBorder" type="checkbox" name="dvd" value="true" tabindex="15" <?php if($dvd == "Ja") echo "checked"; ?>>DVD
								</span>
								<span class="column03">
									<input class="noBorder" type="radio" name="internet" value="Modem" tabindex="16" <?php if($internet == "Modem") echo "checked"; ?>>Modem
									<input class="noBorder" type="radio" name="internet" value="ISDN" tabindex="17" <?php if($internet == "ISDN") echo "checked"; ?>>ISDN
									<input class="noBorder" type="radio" name="internet" value="DSL" tabindex="18" <?php if($internet == "DSL") echo "checked"; ?>>DSL
								</span>
							</div>
							<div class="space">USB</div>
							<div>
								<input class="noBorder" type="radio" name="usb" value="1.1" tabindex="19" <?php if($usb == "1.1") echo "checked"; ?>>1.1
								<input class="noBorder" type="radio" name="usb" value="2.0" tabindex="20" <?php if($usb == "2.0") echo "checked"; ?>>2.0
							</div>
							<div class="space">Problem- / Auftragsbeschreibung*&nbsp;&nbsp;<img class="info" id="descriptionInfo" src="images/info.gif" alt="!" onMouseover="showhint('Nur folgende Zeichen sind erlaubt:<br/>- Alle Buchstaben: a-z<br/>- Alle Zahlen: 0-9<br/>- Sonderzeichen: äöüß.,:;!?\'´`/()+-_<br/>- Leerschritte<br/>- Anführungszeichen<br/>Mindestlänge: 10 Zeichen', this, event, '250px')"/></div>
							<div><textarea name="description" rows="10" cols="50" tabindex="21" id="description"><?php if($isError) echo stripslashes($description); ?></textarea></div>
						</div>
						<p class="small">Die Felder mit * müssen ausgefüllt sein!<br />
						Ihre persönlichen Daten werden vertraulich behandelt und nicht
						an Dritte weitergegeben!</p>
						<div><input type="submit" value="Absenden" tabindex="22"><input type="button" value="Zurücksetzen" tabindex="23" onClick="location='<?=$_SERVER['PHP_SELF']?>'"></div>
					</form>
				</div>
				<?php
					if($isError){
						print "<script type='text/javascript'>";
						for($i=0; $i<count($error); $i++){
							print "document.getElementById('".$error[$i]."').style.border = '1px solid red';";
							print "document.getElementById('".$error[$i]."Info').style.visibility = 'visible';";
						}
						print "</script>";
					}
				?>
			</body>
		</html>
		<?php
	}
?>
 

Anhänge

Es waere dazu auch nicht uninteressant mal ein oder zwei der Mails zu sehen die darueber verschickt wurden, halt welche von den Spam-Mails, keine normalen. Natuerlich inklusive aller Header.

Weiterhin faellt mir mal bei kurzem Durchgucken des Codes auf, dass Du mitten im Wust Funktionen deklarierst. Das ist zwar nicht falsch, aber meiner Meinung nach doch sehr unsauber da die Funktionen bei Bedarf nicht sehr einfach zu finden sind, und auch der Lesefluss gestoert wird wenn man einfach mal den Code durchlesen will um zu gucken was da passiert.
 
Hallo!
Dj Mike hat gesagt.:
.....dass es für Spam-Zwecke misbraucht wird.....
Bekommst Du den Spam oder andere?
Im ersteren Fall würde ich z.b. mal über "Captcha" nachdenken.
Im zweiteren Fall solltest Du mal kontrollieren ob Dein Mailserver als Relay missbraucht werden kann..... aber auch dann solltest Du zusätzlich über Captcha nachdenken.

Abgesehen davon, funktioniert
PHP:
<input type="button" value="Zurücksetzen" tabindex="23" onClick="location='<?=$_SERVER['PHP_SELF']?>'">
nur bei aktiviertem JavaScript.
Nehme statt dessen lieber
PHP:
<input type="reset" value="Zurücksetzen" tabindex="23">
Funktioniert auch bei deaktiviertem JavaScript..... und die Seite muss nicht neu geladen werden.

Gruss Dr Dau
 
Hallo,
danke für die Hilfe schon einmal. Ob andere Spam kriegen weiß ich nicht, ich habe aber Spam über das Formular erhalten. Ich habe leider grad keine Mail zur hand, da sie immer automatisch gelöscht werden. Sobald nochmal eine kommt, werde ich sie hier posten.
@Dennis Wronka: Danke für den Hinweis, die Funktionen auszulagern
@DrDau:Was bitte ist "Captcha"? Wie kann ich überprüfen, ob der Mailserver als Relay missbraucht wird?
Gruß,
Micha
 
Dj Mike hat gesagt.:
[...] Was bitte ist "Captcha"? [...]
Ein Captcha dient zur Überprüfung, ob es sich bei dem User um einen Mensch oder eine Maschine handelt und soll verhindern, daß Programme (wie z.B. Bots) Gästebücher, Kontakt-Formulare u.ä. Interaktionen einer Seite mißbrauchen.
 
Hallo,
ich hatte das Mailformular nun für einige Zeit von der Seite genommen. Nun habe ich trotzdem eine Spammail erhalten, es scheint wohl doch nicht an dem Formular zu liegen, sondern daran, dass ein Spammer an meine Adresse gekommen ist.
Hier der Quelltext der zwei Mails, die ich erhalten habe:
Die erste:
Code:
From - Fri Sep 08 16:59:53 2006
X-Account-Key: account15
X-UIDL: 448884f700000026
X-Mozilla-Status: 0001
X-Mozilla-Status2: 00000000
Return-Path: <rls@educationthailetter.com.orion.rootbash.de>
Received: from F2 ([58.64.105.148])
	by orion.rootbash.de (8.12.11.20060308/8.12.11) with SMTP id k881WO2v017709
	for <info@pccare-aachen.de>; Fri, 8 Sep 2006 03:32:27 +0200
Message-ID: <1719078975.20050864564568@abv.bg>
From: rls <rls@educationthailetter.com.orion.rootbash.de>
To: info@pccare-aachen.de
Subject: =?windows-874?q?=E0=C3=D5=C2=B9=C0=D2=C9=D2=CD=D1=A7=A1=C4=C9=BF=C3=D5_=A1=D1=BA=CA=B6=D2=BA=D1=B9=CA=CD=B9=C0=D2=C9=D2=CD=D1=A7=A1=C4=C9_=B7=D5=E8=C3=D1=BA=C3=CD=A7=E2=B4=C2=A1=C3=D0=B7=C3=C7=A7=CF?=
Date: Thu, 24 Jan 2002 17:15:05 -1200
X-Mailer: AbvMail 1.0
Content-Transfer-Encoding: 7bit
MIME-Version: 1.0
Content-Type: multipart/related; boundary="41aa1fec-4f37-47e7-a4b9-b7422c3c8f02"
Reply-To: rls <rls@educationthailetter.com.orion.rootbash.de>
Status:   

This is a multi-part message in MIME format
--41aa1fec-4f37-47e7-a4b9-b7422c3c8f02
Content-Type: text/html; charset=windows-874
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Newsletter - Recovery Language School</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3D=
windows-874">
<meta name=3D"title" content=3D"Study English at Recovery Language School">
<meta name=3D"description" content=3D"Study English with us, Recovery =
Language School, Business English Language Institutions in Bangkok , Thailand =
, 
Business English Courses for Business,  =CA=B6=D2=BA=D1=B9=CA=CD=B9=C0=D2=C9=
=D2=CD=D1=A7=A1=C4=C9 , =E2=C3=A7=E0=C3=D5=C2=B9=CA=CD=B9=C0=D2=C9=D2 , =CA=B6=
=D2=BA=D1=B9=CA=CD=B9=C0=D2=C9=D2 , =CA=CD=B9=CD=D1=A7=A1=C4=C9 , =E0=C3=D5=C2=
=B9=CD=D1=A7=A1=C4=C9 , =C0=D2=C9=D2=CD=D1=A7=A1=C4=C9 , =E0=C3=D5=C2=B9=C0=D2=
=C9=D2 , =E0=C3=D5=C2=B9=C0=D2=C9=D2=CD=D1=A7=A1=C4=C9">
<meta name=3D"keywords"  content=3D"Free trial, Auditing the class, Free =
Study, Free Test, Test English, Trial Course, Free English Free Learning, =
Pre-study, 
Learn Free, =B7=B4=C5=CD=A7=E0=C3=D5=C2=B9, =B7=B4=C5=CD=A7=E0=C3=D5=C2=B9=BF=
=C3=D5, =E0=C3=D5=C2=B9=BF=C3=D5, =B7=B4=C5=CD=A7=E0=C3=D5=C2=B9=C0=D2=C9=D2, =
=B7=B4=C5=CD=A7=E0=C3=D5=C2=B9=CD=D1=A7=A1=C4=C9, =B7=B4=C5=CD=A7=E0=C3=D5=C2=
=B9=C0=D2=C9=D2=CD=D1=A7=A1=C4=C9, =B7=B4=C5=CD=A7=E0=C3=D5=C2=B9=C0=D2=C9=D2=
=CD=D1=A7=A1=C4=C9=BF=C3=D5,  =BF=D1=A7=E1=B9=C7=A1=D2=C3=CA=CD=B9">
<link href=3D"text.css" rel=3D"stylesheet" type=3D"text/css">
<link href=3D"text.css.bak" rel=3D"stylesheet" type=3D"text/css">

<style type=3D"text/css">
<!--
..style7 {font-family: Arial, Helvetica, sans-serif; font-size: x-small; }
..style8 {font-family: Arial, Helvetica, sans-serif; font-size: x-small; =
font-weight: bold; }
body {
	background-color: #FFFFFF;
}
..style11 {font-size: x-small}
..style12 {
	color: #FFFFFF;
	font-size: x-large;
	font-weight: bold;
}
..style16 {color: #FFFFFF}
..style17 {font-size: medium; font-weight: bold; color: #FFFFFF; }
..style18 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFFFFF;
	font-weight: bold;
}
a:link {
	color: #B30000;
}
a:visited {
	color: #B30000;
}
a:hover {
	color: #B30000;
}
a:active {
	color: #B30000;
}
..style28 {color: #FFFFFF; font-size: x-large; }
..style30 {color: #008F00+}
..style31 {color: #008F00}
..style36 {
	color: #FFFFFF;
	font-size: large;
	font-family: tahoma;
}
..style38 {
	color: #B30000;
	font-weight: bold;
}
..style40 {color: #B30000; font-size: small; }
..style13 {font-size: 15px}
-->
</style>
</head>

<body leftmargin=3D"0" topmargin=3D"0" marginwidth=3D"0" marginheight=3D"0">
<table width=3D"100%" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">
  <tr> 
    <td valign=3D"top"><div align=3D"center" class=3D"style11">
      <p>=CB=D2=A1=CB=B9=E9=D2=B9=D5=E9=E4=C1=E8=E1=CA=B4=A7 <a href=3D=
"http://www.tec2005.com/template_mail/template_09/template_09.htm">=A1=C3=D8=
=B3=D2=A4=C5=D4=A1=B7=D5=E8=B9=D5=E8</a><br>
        If you can not read   this, <a href=3D=
"http://www.tec2005.com/template_mail/template_09/template_09.htm">please =
click here!</a>      </div>
      <table width=3D"800" border=3D"1" align=3D"center" cellpadding=3D"0" =
cellspacing=3D"0" bordercolor=3D"#008F00" bgcolor=3D"#F4F4F4">
        <tr> 
          <td width=3D"684" valign=3D"top"><table width=3D"800" border=3D"0" =
align=3D"center" cellpadding=3D"0" cellspacing=3D"0">
              <tr>
                <td align=3D"center" valign=3D"top" bgcolor=3D"#008F00" =
><span class=3D"style36"><strong>=E0=AA=D7=E8=CD=CB=C3=D7=CD=E4=C1=E8... =BE=
=D9=B4-=E0=A2=D5=C2=B9=CD=D1=A7=A1=C4=C9=E4=B4=E9  =E3=B9 1 =E0=B4=D7=CD=B9 =

</strong><br>
                =B7=E9=D2=BE=D4=CA=D9=A8=B9=EC=B4=E9=C7=C2=B5=D1=C7=A4=D8=B3=
=E0=CD=A7=E4=B4=E9=E0=C5=C2</span></td>
              </tr>
              <tr>
                <td valign=3D"top" bgcolor=3D"#B30000"><div align=3D"center" =
class=3D"style16">&nbsp;</div></td>
              </tr>
              <tr>
                <td valign=3D"top"><img src=3D=
"http://www.tec2005.com/template_mail/template_09/image/001.gif" width=3D=
"800" height=3D"350" border=3D"0" usemap=3D"#Map" class=3D"style18"></td>
              </tr>
              <tr>
                <td valign=3D"top" bgcolor=3D"#B30000">&nbsp;</td>
              </tr>
              <tr>
                <td valign=3D"top" bgcolor=3D"#008F00"><p class=3D=
"style8"><span class=3D"style16">&nbsp;=A4=D8=B3=A1=D3=C5=D1=A7=BB=C3=D0=CA=BA=
=BB=D1=AD=CB=D2=E0=CB=C5=E8=D2=B9=D5=E9=CD=C2=D9=E8 =E3=AA=E8=CB=C3=D7=CD=E4=
=C1=E8?</span></p>                  </td>
              </tr>
              <tr>
                <td valign=3D"top"><ul class=3D"style7">
                  <li>=E0=A1=D4=B4=A4=C7=D2=C1=BB=C3=D0=CB=C1=E8=D2=E4=C1=E8=
=C1=D1=E8=B9=E3=A8 =B7=D5=E8=B5=E9=CD=A7=B5=D4=B4=B5=E8=CD=A7=D2=B9=A1=D1=BA=
=AA=D2=C7=B5=E8=D2=A7=AA=D2=B5=D4 Present =A7=D2=B9  =E0=A2=D5=C2=B9=A8=B4=CB=
=C1=D2=C2 =E1=C5=D0=E0=A2=D5=C2=B9=C3=D2=C2=A7=D2=B9=E0=BB=E7=B9=C0=D2=C9=D2=
=CD=D1=A7=A1=C4=C9</li>
                  <li>=E0=A1=D4=B4=A4=C7=D2=C1=B7=E9=CD=E1=B7=E9=E4=C1=E8=A1=
=C5=E9=D2=CA=C1=D1=A4=C3=A7=D2=B9  =C3=D9=CA=D6=A1=CA=D1=BA=CA=B9=E4=C1=E8=C3=
=D9=E9=A8=D0=E0=C3=D4=E8=C1=B5=E9=B9=CD=C2=E8=D2=A7=E4=C3=B4=D5  =CD=C2=D2=A1=
=E0=C3=D4=E8=C1=B5=E9=B9=E0=C3=D5=C2=B9=CA=B9=B7=B9=D2=E0=C5=C2=E1=B5=E8=BE=D7=
=E9=B9=B0=D2=B9=E4=C1=E8=E1=B9=E8=B9=BE=CD</li>
                  <li>=BE=D9=B4=CA=D7=E8=CD=CA=D2=C3=E4=C1=E8=E4=B4=E9 =E0=C3=
=D5=C2=B9=C1=D2=B5=D1=E9=A7=CB=C5=D2=C2=E1=CB=E8=A7=B5=D1=E9=A7=E1=B5=E8=E0=B4=
=E7=A1 =B9=D1=BA 10 =BB=D5  =E4=C1=E8=C7=E8=D2=A8=D0=E0=BB=E7=B9 Grammar =B7=
=D1=E9=A7=CB=C1=B4=B7=D8=A1=A1=AF=A1=D2=C3=E3=AA=E9=E1=B5=E8=C2=D1=A7=E0=C3=D5=
=C2=A7=A4=D3=BE=D9=B4=CA=D7=E8=CD=CA=D2=C3=E4=C1=E8=E4=B4=E9</li>
                  <li>=E4=C1=E8=E4=B4=E9=C3=D1=BA=A1=D2=C3=BB=D9=BE=D7=E9=B9=
=B0=D2=B9=CD=C2=E8=D2=A7=E0=BB=E7=B9=A2=D1=E9=B9=B5=CD=B9 </li>
                  </ul>                
                  <p align=3D"center"><span class=3D"style7"><span class=3D=
"style30"><span class=3D"style40">=E0=C3=D2=E0=A2=E9=D2=E3=A8=A4=C7=D2=C1=C3=
=D9=E9=CA=D6=A1=A2=CD=A7=A4=D8=B3  =E1=C5=D0=BE=C3=E9=CD=C1=B7=D5=E8=A8=D0=E1=
=A1=E9=BB=D1=AD=CB=D2=E3=CB=E9=A4=D8=B3 =B4=E9=C7=C2=C7=D4=B8=D5=A1=D2=C3=CA=
=CD=B9=B7=D5=E8=E0=A2=E9=D2=E3=A8=A7=E8=D2=C2</span> <br>
                        <span class=3D"style40">=A4=D8=B3=A8=D0=E1=BB=C5=A1=E3=
=A8=A1=D1=BA=A1=D2=C3=BE=D1=B2=B9=D2=CD=C2=E8=D2=A7=C3=C7=B4=E0=C3=E7=C7 =C0=
=D2=C2=E3=B9 1 =E0=B4=D7=CD=B9=E0=B7=E8=D2=B9=D1=E9=B9 !</span> <br>
                        <span class=3D"style40">WITHIN 1 MONTH, you can write =

&amp; speak  effectively</span></span><span class=3D"style31"> =A0=
</span></span></p></td>
              </tr>
              <tr>
                <td valign=3D"top" bgcolor=3D"#008F00"><span class=3D=
"style18">&nbsp;&nbsp;=CA=B6=D2=B9=B7=D5=E8=E0=C3=D5=C2=B9</span></td>
              </tr>
              <tr>
                <td valign=3D"top"><ul>
                  <li><span class=3D"style7">1016 =CD=D2=A4=D2=C3=C8=C3=D5=E0=
=BF=D7=E8=CD=A7=BF=D8=E9=A7 =AA=D1=E9=B9 7 =B6=B9=B9=BE=C3=D0=C3=D2=C1 4 =E1=
=A2=C7=A7=CA=D5=C5=C1 =E0=A2=B5=BA=D2=A7=C3=D1=A1 =A1=C3=D8=A7=E0=B7=BE=C1=CB=
=D2=B9=A4=C3 10500<br>
                  </span></li>
                </ul></td>
              </tr>
              <tr>
                <td valign=3D"top" bgcolor=3D"#008F00"><span class=3D=
"style18"> &nbsp; =E1=BC=B9=B7=D5=E8</span></td>
              </tr>
              <tr>
                <td align=3D"left" valign=3D"top" bgcolor=3D"#FFFFFF"><div =
align=3D"center"><img src=3D=
"http://www.tec2005.com/template_mail/template_09/image/map.jpg" width=3D=
"485" height=3D"236" border=3D"0"></div></td>
              </tr>
              <tr>
                <td valign=3D"top" bgcolor=3D"#008F00"><p class=3D=
"style18">&nbsp;=A2=E9=CD=C1=D9=C5=A1=D2=C3=E0=B4=D4=B9=B7=D2=A7</p>          =
      </td>
              </tr>
              <tr>
                <td valign=3D"top"><ul>
                  <li class=3D"style7"> =C3=B6=E2=B4=C2=CA=D2=C3=BB=C3=D0=A8=
=D3=B7=D2=A7 <br>
                    =CA=D2=C2 
                    4, 13, 14, 17, 22, 45, 46, 47, 50, 62, 67, 74, 76, 109, =
115, 149, 507, 544, =BB=CD.=BE. 17 </li>
                  <li class=3D"style7"> =C3=B6=E4=BF=BF=E9=D2=E3=B5=E9=B4=D4=
=B9 <br>
                      <span class=3D"style38">=CA=B6=D2=B9=D5=C5=D8=C1=BE=D4=
=B9</span>=D5 =CD=CD=A1=BB=C3=D0=B5=D9 2 =A8=D2=A1=B9=D1=E9=B9=A2=E9=D2=C1=B6=
=B9=B9=B7=D5=E8=E1=C2=A1=CA=D2=B7=C3 =E1=C5=D0=E0=B4=D4=B9=B5=C3=A7=B5=D2=C1 =
=B6.=BE=C3=D0=C3=D2=C1 4 =C1=D2=BB=C3=D0=C1=D2=B3 50 =E0=C1=B5=C3 =A8=D0=E0=CB=
=E7=B9=CD=D2=A4=D2=C3=C8=C3=D5=E0=BF=D7=E8=CD=A7=BF=D8=E9=A7=CD=C2=D9=E8=B7=D2=
=A7=AB=E9=D2=C2=C1=D7=CD (=A4=D8=B3=A8=D0=E0=CB=E7=B9=E2=AA=C7=EC=C3=D9=C1=C3=
=B6=C2=B9=B5=EC Mazda =CD=C2=D9=E8=B4=E9=D2=B9=C5=E8=D2=A7) =E3=CB=E9=A2=D6=E9=
=B9=C1=D2=B7=D5=E8=AA=D1=E9=B9 7 =A1=E7=A8=D0=B6=D6=A7=CA=B6=D2=BA=D1=B9=CA=CD=
=B9=C0=D2=C9=D2 Recovery =A4=C3=D1=BA </li>
                  <li class=3D"style7"> =C3=B6=E4=BF=BF=E9=D2 BTS <br>
                      <span class=3D"style38">=CA=B6=D2=B9=D5=C3=D2=AA=B4=D3=
=C3</span>=D4 =E0=C1=D7=E8=CD=C5=A7=A8=D2=A1=CA=B6=D2=B9=D5=C3=D2=AA=B4=D3=C3=
=D4 ( =BD=D1=E8=A7=E0=B4=D5=C2=C7=A1=D1=BA=CA=C7=B9=C5=D8=C1=CF ) =A4=D8=B3=CA=
=D2=C1=D2=C3=B6=A2=D6=E9=B9=C3=B6=E2=B4=C2=CA=D2=C3=BB=C3=D0=A8=D3=B7=D2=A7 =
=CA=D2=C2 14 =CB=C3=D7=CD 74 =C3=B6=A8=D0=C7=D4=E8=A7=B5=C3=A7=C1=D2=A8=B9=B6=
=D6=A7=E1=C2=A1=CA=D5=C5=C1 =A8=D2=A1=B9=D1=E9=B9=E0=C1=D7=E8=CD=C3=B6=E0=C5=
=D5=E9=C2=C7=AB=E9=D2=C2=E3=CB=E9=A4=D8=B3 =C5=A7=B7=D5=E8=BB=E9=D2=C2=CB=B9=
=E9=D2=CA=C7=B9=C5=D8=C1=BE=D4=B9=D5 =E1=C5=D0=A2=E9=D2=C1=CA=D0=BE=D2=B9=C5=
=CD=C2=C1=D2=C2=D1=A7=CD=D2=A4=D2=C3=C8=C3=D5=E0=BF=D7=E8=CD=A7=BF=D8=E9=A7 =
(=A4=D8=B3=A8=D0=E0=CB=E7=B9=E2=AA=C7=EC=C3=D9=C1=C3=B6=C2=B9=B5=EC Mazda =CD=
=C2=D9=E8=B4=E9=D2=B9=C5=E8=D2=A7) =E3=CB=E9=A2=D6=E9=B9=C1=D2=B7=D5=E8=AA=D1=
=E9=B9 7 =A1=E7=A8=D0=B6=D6=A7=CA=B6=D2=BA=D1=B9=CA=CD=B9=C0=D2=C9=D2 =
Recovery =A4=C3=D1=BA <br>
                      <span class=3D"style38">=CA=B6=D2=B9=D5=C8=D2=C5=D2=E1=
=B4=A7</span> =B7=D5=E8=CA=B6=D2=B9=D5=B9=D5=E9=A8=D0=E3=A1=C5=E9=A1=D1=BA=CD=
=D2=A4=D2=C3=C8=C3=D5=E0=BF=D7=E8=CD=A7=BF=D8=E9=A7=C1=D2=A1=A1=C7=E8=D2 =A4=
=D8=B3=CA=D2=C1=D2=C3=B6=B5=E8=CD=C3=B6=E2=B4=C2=CA=D2=C3=BB=C3=D0=A8=D3=B7=D2=
=A7=E4=B4=E9 =CA=D2=C2 76, 115 =E1=C5=D0 544 (=E1=B5=E8=C3=B6=A8=D0=B5=D4=B4=
=A1=C7=E8=D2=B7=D2=A7=C3=D2=AA=B4=D3=C3=D4) =E2=B4=C2=C1=D2 =C5=A7=B7=D5=E8=BB=
=E9=D2=C2=CB=B9=E9=D2=CA=C7=B9=C5=D8=C1=BE=D4=B9=D5 =E1=C5=D0=A2=E9=D2=C1=CA=
=D0=BE=D2=B9=C5=CD=C2=C1=D2=B7=D5=E8=CD=D2=A4=D2=C3 (=A4=D8=B3=A8=D0=E0=CB=E7=
=B9=E2=AA=C7=EC=C3=D9=C1=C3=B6=C2=B9=B5=EC Mazda =CD=C2=D9=E8=B4=E9=D2=B9=C5=
=E8=D2=A7) =E3=CB=E9=A2=D6=E9=B9=C1=D2=B7=D5=E8=AA=D1=E9=B9 7 =A1=E7=A8=D0=B6=
=D6=A7=CA=B6=D2=BA=D1=B9=CA=CD=B9=C0=D2=C9=D2 Recovery =A4=C3=D1=BA</li>
                  </ul>                </td>
              </tr>
              <tr>
                <td valign=3D"top"><table width=3D"100%" border=3D"0" =
cellpadding=3D"0" cellspacing=3D"0" class=3D"style28">
                  <tr>
                    <td colspan=3D"4" bgcolor=3D"#008F00" class=3D=
"style18">&nbsp;=BA=C3=C3=C2=D2=A1=D2=C8=A1=D2=C3=E0=C3=D5=C2=B9=A8=C3=D4=A7=

</td>
                    </tr>
                  <tr>
                    <td><img src=3D=
"http://www.tec2005.com/template_mail/template_09/image/04.gif" width=3D"200" =
height=3D"172"></td>
                    <td><img src=3D=
"http://www.tec2005.com/template_mail/template_09/image/pic2.jpg" width=3D=
"200" height=3D"172"></td>
                    <td><img src=3D=
"http://www.tec2005.com/template_mail/template_09/image/pic3.jpg" width=3D=
"200" height=3D"172"></td>
                    <td><img src=3D=
"http://www.tec2005.com/template_mail/template_09/image/03.gif" width=3D"200" =
height=3D"172"></td>
                  </tr>
                  <tr>
                    <td colspan=3D"4" bgcolor=3D"#B30000"><div align=3D=
"center" class=3D"style17">=CA=CD=BA=B6=D2=C1=A2=E9=CD=C1=D9=C5=E0=BE=D4=E8=C1=
=E0=B5=D4=C1=E1=C5=D0=CA=D3=C3=CD=A7=B7=D5=E8=B9=D1=E8=A7=E4=B4=E9=B7=D5=E8  =
Call Center<br>  
                      (=B4=E8=C7=B9=C3=D1=BA=A8=D3=B9=C7=B9=A8=D3=A1=D1=B4=
)</div></td>
                  </tr>
                  <tr>
                    <td colspan=3D"4" align=3D"center" bgcolor=3D=
"#B30000"><span class=3D"style12">=E2=B7=C3. 0-2633-8308</span></td>
                  </tr>
                  <tr>
                    <td height=3D"40" colspan=3D"4" bgcolor=3D"#008F00"><div =
align=3D"center" class=3D"style28"><span class=3D"style17">=CA=D3=C3=CD=A7=B7=
=D5=E8=B9=D1=E8=A7=CD=CD=B9=E4=C5=B9=EC <a href=3D=
"http://www.tec2005.com/guest_mail.php">=A4=C5=D4=A1=B7=D5=E8=B9=D5=E8=

</a></span> </div></td>
                  </tr>
                </table>                  </td>
              </tr>
            </table>          </td>
        </tr>
      </table>
      <div align=3D"center" class=3D"style11"><span class=3D"style11">=CB=D2=
=A1=B7=E8=D2=B9=E4=C1=E8=B5=E9=CD=A7=A1=D2=C3=C3=D1=BA=A2=E8=D2=C7=CA=D2=C3=E3=
=B9=A4=C3=D1=E9=A7=B5=E8=CD=E4=BB&nbsp;</span><a href=3D=
"http://www.tec2005.com/unsubscribe_t.php">=A1=C3=D8=B3=D2=A4=C5=D4=A1=B7=D5=
=E8=B9=D5=E8=E0=BE=D7=E8=CD=C2=A1=E0=C5=D4=A1</a><br>
      To unsubscribe our Newsletter, <a href=3D=
"http://www.tec2005.com/unsubscribe.php">Unsubscribe here</a></div></td>
  </tr>

</table>

<map name=3D"Map">
  <area shape=3D"circle" coords=3D"424,45,35" href=3D=
"http://www.tec2005.com/guest_mail.php">
<area shape=3D"circle" coords=3D"433,159,0" href=3D"#"><area shape=3D"rect" =
coords=3D"565,254,773,325" href=3D"http://www.tec2005.com/guest_mail.php">
<area shape=3D"rect" coords=3D"349,90,776,135" href=3D=
"http://www.tec2005.com/guest_mail.php">
<area shape=3D"rect" coords=3D"474,9,777,80" href=3D=
"http://www.tec2005.com/guest_mail.php">
<area shape=3D"poly" coords=3D"10,178,279,121,317,293,45,348" href=3D=
"http://www.tec2005.com/guest_mail.php">
</map>
</body>
</html>

--41aa1fec-4f37-47e7-a4b9-b7422c3c8f02--

Und die zweite:
Code:
From - Fri Sep 08 16:59:57 2006
X-Account-Key: account15
X-UIDL: 448884f700000027
X-Mozilla-Status: 0001
X-Mozilla-Status2: 10000000
Return-Path: <MAILER-DAEMON@orion.rootbash.de>
Received: from localhost (localhost)
	by orion.rootbash.de (8.12.11.20060308/8.12.11) id k881WUcX017719;
	Fri, 8 Sep 2006 03:32:30 +0200
Date: Fri, 8 Sep 2006 03:32:30 +0200
From: Mail Delivery Subsystem <MAILER-DAEMON@orion.rootbash.de>
Message-Id: <200609080132.k881WUcX017719@orion.rootbash.de>
To: <info@pccare-aachen.de>
To: postmaster@orion.rootbash.de
MIME-Version: 1.0
Content-Type: multipart/report; report-type=delivery-status;
	boundary="k881WUcX017719.1157679150/orion.rootbash.de"
Content-Transfer-Encoding: 8bit
Subject: Returned mail: see transcript for details
Auto-Submitted: auto-generated (failure)
Status:   

This is a MIME-encapsulated message

--k881WUcX017719.1157679150/orion.rootbash.de

The original message was received at Fri, 8 Sep 2006 03:32:30 +0200
from localhost [127.0.0.1]

   ----- The following addresses had permanent fatal errors -----
<rls@educationthailetter.com.orion.rootbash.de>
    (reason: 553 5.3.5 system config error)

   ----- Transcript of session follows -----
553 5.3.5 educationthailetter.com.orion.rootbash.de. config error: mail loops back to me (MX problem?)
554 5.3.5 Local configuration error

--k881WUcX017719.1157679150/orion.rootbash.de
Content-Type: message/delivery-status

Reporting-MTA: dns; orion.rootbash.de
Received-From-MTA: DNS; localhost
Arrival-Date: Fri, 8 Sep 2006 03:32:30 +0200

Final-Recipient: RFC822; rls@educationthailetter.com.orion.rootbash.de
Action: failed
Status: 5.3.5
Diagnostic-Code: SMTP; 553 5.3.5 system config error
Last-Attempt-Date: Fri, 8 Sep 2006 03:32:30 +0200

--k881WUcX017719.1157679150/orion.rootbash.de
Content-Type: text/rfc822-headers
Content-Transfer-Encoding: 8bit

Return-Path: <info@pccare-aachen.de>
Received: from orion.rootbash.de (localhost [127.0.0.1])
	by orion.rootbash.de (8.12.11.20060308/8.12.11) with ESMTP id k881WUcX017717
	for <rls@educationthailetter.com.orion.rootbash.de>; Fri, 8 Sep 2006 03:32:30 +0200
Received: (from mail@localhost)
	by orion.rootbash.de (8.12.11.20060308/8.12.11/Submit) id k881WTUf017715;
	Fri, 8 Sep 2006 03:32:30 +0200
Date: Fri, 8 Sep 2006 03:32:30 +0200
X-Authentication-Warning: orion.rootbash.de: mail set sender to info@pccare-aachen.de using -f
From: "PCCare" <info@pccare-aachen.de>
To: rls <rls@educationthailetter.com.orion.rootbash.de>
Subject: Re: =?windows-874?q?=E0=C3=D5=C2=B9=C0=D2=C9=D2=CD=D1=A7=A1=C4=C9=BF=C3=D5_=A1=D1=BA=CA=B6=D2=BA=D1=B9=CA=CD=B9=C0=D2=C9=D2=CD=D1=A7=A1=C4=C9_=B7=D5=E8=C3=D1=BA=C3=CD=A7=E2=B4=C2=A1=C3=D0=B7=C3=C7=A7=CF?=
X-Mailer: Confixx Autoresponder
Precedence: junk
Message-ID: <1719078975.20050864564568@abv.bg>

--k881WUcX017719.1157679150/orion.rootbash.de--
 
Hallo,

hat niemand eine Idee? Da ich das Mailformular deaktiviert hatte, lag es ja scheinbar nicht daran. Aber da ich eine Email vom Mailer Daemon erhalten habe, scheint die Mail ja doch über meinen Benutzernamen auf diesem Server versendet worden zu sein. Gibt es eine Möglichkeit, zu überprüfen, ob das der Fall ist, und wie kann man das verhindern?
Das Mailformular hab ich jetzt nochmal überarbeitet und auch ein Captcha eingebunden.

Gruß,
Micha
 
Zurück