|
@@ -22,7 +22,6 @@
|
|
|
$to = parseAddrs($t);
|
|
|
$cc = parseAddrs($c);
|
|
|
$bcc = parseAddrs($b);
|
|
|
- $body = stripslashes($body);
|
|
|
$from_addr = "$username@$domain";
|
|
|
$reply_to = getPref($data_dir, $username, "reply_to");
|
|
|
$from = getPref($data_dir, $username, "full_name");
|
|
@@ -76,7 +75,6 @@
|
|
|
$tmp = nl2br(htmlspecialchars(fgets($smtpConnection, 1024)));
|
|
|
errorCheck($tmp);
|
|
|
|
|
|
- $subject = stripslashes($subject);
|
|
|
fputs($smtpConnection, "Subject: $subject\n"); // Subject
|
|
|
fputs($smtpConnection, "From: $from\n"); // Subject
|
|
|
fputs($smtpConnection, "To: $to_list\n"); // Who it's TO
|
|
@@ -90,7 +88,6 @@
|
|
|
if ($reply_to != "")
|
|
|
fputs($smtpConnection, "Reply-To: $reply_to\n");
|
|
|
|
|
|
- $body = stripslashes($body);
|
|
|
fputs($smtpConnection, "$body\n"); // send the body of the message
|
|
|
|
|
|
fputs($smtpConnection, ".\n"); // end the DATA part
|