* All incoming form values now have stripslashes() ran on them automatically
[squirrelmail.git] / functions / smtp.php
CommitLineData
59177427 1<?php
b8ea4ed6 2 /** smtp.php
3 **
4 ** This contains all the functions needed to send messages through
36fa79c8 5 ** an smtp server or sendmail.
245a6892 6 **
7 ** $Id$
b8ea4ed6 8 **/
9
d068c0ec 10 $smtp_php = true;
465db5d7 11
31afdefb 12 // This should most probably go to some initialization...
13 if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
14 $popuser = $usernamedata[1];
15 $domain = $usernamedata[2];
16 unset($usernamedata);
17 } else {
18 $popuser = $username;
19 }
20 // We need domain for smtp
21 if (!$domain)
ec9f1c41 22 $domain = getenv('HOSTNAME');
31afdefb 23
df15de21 24 // Returns true only if this message is multipart
25 function isMultipart () {
4ba45d11 26 global $attachments;
27
28 if (count($attachments)>0)
29 return true;
30 else
31 return false;
df15de21 32 }
33
34 // Attach the files that are due to be attached
4ba45d11 35 function attachFiles ($fp) {
c3c37167 36 global $attachments, $attachment_dir;
4ba45d11 37
7b67334e 38 $length = 0;
39
a7d75834 40 if (isMultipart()) {
41 reset($attachments);
42 while (list($localname, $remotename) = each($attachments)) {
43 // This is to make sure noone is giving a filename in another
44 // directory
ec9f1c41 45 $localname = ereg_replace ("\\/", '', $localname);
a7d75834 46
ec9f1c41 47 $fileinfo = fopen ($attachment_dir.$localname.'.info', 'r');
a7d75834 48 $filetype = fgets ($fileinfo, 8192);
49 fclose ($fileinfo);
50 $filetype = trim ($filetype);
ec9f1c41 51 if ($filetype=='')
52 $filetype = 'application/octet-stream';
a7d75834 53
ec9f1c41 54 $header = '--'.mimeBoundary()."\r\n";
b09153de 55 $header .= "Content-Type: $filetype;name=\"$remotename\"\r\n";
a7d75834 56 $header .= "Content-Disposition: attachment; filename=\"$remotename\"\r\n";
57 $header .= "Content-Transfer-Encoding: base64\r\n\r\n";
58 fputs ($fp, $header);
59 $length += strlen($header);
60
ec9f1c41 61 $file = fopen ($attachment_dir.$localname, 'r');
a7d75834 62 while ($tmp = fread($file, 570)) {
63 $encoded = chunk_split(base64_encode($tmp));
64 $length += strlen($encoded);
65 fputs ($fp, $encoded);
66 }
67 fclose ($file);
7b67334e 68 }
4ba45d11 69 }
7b67334e 70
71 return $length;
df15de21 72 }
73
a7d75834 74 // Delete files that are uploaded for attaching
75 function deleteAttachments() {
76 global $attachments, $attachment_dir;
77
78 if (isMultipart()) {
79 reset($attachments);
80 while (list($localname, $remotename) = each($attachments)) {
81 if (!ereg ("\\/", $localname)) {
82 unlink ($attachment_dir.$localname);
ec9f1c41 83 unlink ($attachment_dir.$localname.'.info');
a7d75834 84 }
85 }
86 }
87 }
88
df15de21 89 // Return a nice MIME-boundary
90 function mimeBoundary () {
7b67334e 91 static $mimeBoundaryString;
df15de21 92
93 if ($mimeBoundaryString == "") {
1899535f 94 $mimeBoundaryString = GenerateRandomString(70, '\'()+,-./:=?_', 7);
465db5d7 95 }
df15de21 96
97 return $mimeBoundaryString;
465db5d7 98 }
99
24397423 100 /* Time offset for correct timezone */
101 function timezone () {
b0d1b51e 102 global $invert_time;
103
ec9f1c41 104 $diff_second = date('Z');
d47b2518 105 if ($invert_time)
106 $diff_second = - $diff_second;
24397423 107 if ($diff_second > 0)
ec9f1c41 108 $sign = '+';
24397423 109 else
ec9f1c41 110 $sign = '-';
24397423 111
112 $diff_second = abs($diff_second);
113
114 $diff_hour = floor ($diff_second / 3600);
115 $diff_minute = floor (($diff_second-3600*$diff_hour) / 60);
116
ec9f1c41 117 $zonename = '('.strftime('%Z').')';
24397423 118 $result = sprintf ("%s%02d%02d %s", $sign, $diff_hour, $diff_minute, $zonename);
119 return ($result);
120 }
121
df15de21 122 /* Print all the needed RFC822 headers */
60994e13 123 function write822Header ($fp, $t, $c, $b, $subject, $more_headers) {
a7d75834 124 global $REMOTE_ADDR, $SERVER_NAME, $REMOTE_PORT;
31afdefb 125 global $data_dir, $username, $popuser, $domain, $version, $useSendmail;
9949206d 126 global $default_charset, $HTTP_VIA, $HTTP_X_FORWARDED_FOR;
a5363806 127 global $REMOTE_HOST;
465db5d7 128
7b67334e 129 // Storing the header to make sure the header is the same
130 // everytime the header is printed.
131 static $header, $headerlength;
132
ec9f1c41 133 if ($header == '') {
7b67334e 134 $to = parseAddrs($t);
135 $cc = parseAddrs($c);
136 $bcc = parseAddrs($b);
ec9f1c41 137 $reply_to = getPref($data_dir, $username, 'reply_to');
138 $from = getPref($data_dir, $username, 'full_name');
139 $from_addr = getPref($data_dir, $username, 'email_address');
31afdefb 140
ec9f1c41 141 if ($from_addr == '')
142 $from_addr = $popuser.'@'.$domain;
7b67334e 143
144 $to_list = getLineOfAddrs($to);
145 $cc_list = getLineOfAddrs($cc);
146 $bcc_list = getLineOfAddrs($bcc);
8ae331c2 147
78e230b7 148 /* Encoding 8-bit characters and making from line */
d51894be 149 $subject = encodeHeader($subject);
ec9f1c41 150 if ($from == '')
7b67334e 151 $from = "<$from_addr>";
152 else
ec9f1c41 153 $from = '"' . encodeHeader($from) . "\" <$from_addr>";
7b67334e 154
a7d75834 155 /* This creates an RFC 822 date */
7b67334e 156 $date = date("D, j M Y H:i:s ", mktime()) . timezone();
a7d75834 157
158 /* Create a message-id */
ec9f1c41 159 $message_id = '<' . $REMOTE_PORT . '.' . $REMOTE_ADDR . '.';
160 $message_id .= time() . '.squirrel@' . $SERVER_NAME .'>';
7b67334e 161
162 /* Make an RFC822 Received: line */
a5363806 163 if (isset($REMOTE_HOST))
8a2848f0 164 $received_from = "$REMOTE_HOST ([$REMOTE_ADDR])";
a5363806 165 else
8a2848f0 166 $received_from = $REMOTE_ADDR;
a5363806 167
9949206d 168 if (isset($HTTP_VIA) || isset ($HTTP_X_FORWARDED_FOR)) {
ec9f1c41 169 if ($HTTP_X_FORWARDED_FOR == '')
170 $HTTP_X_FORWARDED_FOR = 'unknown';
9949206d 171 $received_from .= " (proxying for $HTTP_X_FORWARDED_FOR)";
172 }
a5363806 173
8a2848f0 174 $header = "Received: from $received_from\r\n";
175 $header .= " (SquirrelMail authenticated user $username)\r\n";
176 $header .= " by $SERVER_NAME with HTTP;\r\n";
177 $header .= " $date\r\n";
7b67334e 178
a7d75834 179 /* Insert the rest of the header fields */
180 $header .= "Message-ID: $message_id\r\n";
7b67334e 181 $header .= "Date: $date\r\n";
182 $header .= "Subject: $subject\r\n";
183 $header .= "From: $from\r\n";
184 $header .= "To: $to_list \r\n"; // Who it's TO
60994e13 185
186 /* Insert headers from the $more_headers array */
187 if(is_array($more_headers)) {
188 reset($more_headers);
189 while(list($h_name, $h_val) = each($more_headers)) {
190 $header .= sprintf("%s: %s\r\n", $h_name, $h_val);
191 }
192 }
193
7b67334e 194 if ($cc_list) {
195 $header .= "Cc: $cc_list\r\n"; // Who the CCs are
df15de21 196 }
7b67334e 197
ec9f1c41 198 if ($reply_to != '')
7b67334e 199 $header .= "Reply-To: $reply_to\r\n";
200
201 if ($useSendmail) {
202 if ($bcc_list) {
203 // BCCs is removed from header by sendmail
204 $header .= "Bcc: $bcc_list\r\n";
205 }
206 }
207
208 $header .= "X-Mailer: SquirrelMail (version $version)\r\n"; // Identify SquirrelMail
209
210 // Do the MIME-stuff
f8308f16 211 $header .= "MIME-Version: 1.0\r\n";
7b67334e 212
213 if (isMultipart()) {
ec9f1c41 214 $header .= 'Content-Type: multipart/mixed; boundary="';
7b67334e 215 $header .= mimeBoundary();
216 $header .= "\"\r\n";
217 } else {
ec9f1c41 218 if ($default_charset != '')
17ce8467 219 $header .= "Content-Type: text/plain; charset=$default_charset\r\n";
220 else
221 $header .= "Content-Type: text/plain;\r\n";
7b67334e 222 $header .= "Content-Transfer-Encoding: 8bit\r\n";
223 }
224 $header .= "\r\n"; // One blank line to separate header and body
df15de21 225
7b67334e 226 $headerlength = strlen($header);
227 }
228
229 // Write the header
230 fputs ($fp, $header);
df15de21 231
7b67334e 232 return $headerlength;
233 }
df15de21 234
7b67334e 235 // Send the body
236 function writeBody ($fp, $passedBody) {
17ce8467 237 global $default_charset;
238
7b67334e 239 $attachmentlength = 0;
240
df15de21 241 if (isMultipart()) {
ec9f1c41 242 $body = '--'.mimeBoundary()."\r\n";
17ce8467 243
244 if ($default_charset != "")
245 $body .= "Content-Type: text/plain; charset=$default_charset\r\n";
246 else
247 $body .= "Content-Type: text/plain\r\n";
248
7b67334e 249 $body .= "Content-Transfer-Encoding: 8bit\r\n\r\n";
d51894be 250 $body .= $passedBody . "\r\n\r\n";
7b67334e 251 fputs ($fp, $body);
252
6441f7c6 253 $attachmentlength = attachFiles($fp);
7b67334e 254
f8cfeb5c 255 if (!isset($postbody)) $postbody = "";
7b67334e 256 $postbody .= "\r\n--".mimeBoundary()."--\r\n\r\n";
257 fputs ($fp, $postbody);
df15de21 258 } else {
d51894be 259 $body = $passedBody . "\r\n";
7b67334e 260 fputs ($fp, $body);
261 $postbody = "\r\n";
262 fputs ($fp, $postbody);
df15de21 263 }
df15de21 264
7b67334e 265 return (strlen($body) + strlen($postbody) + $attachmentlength);
c99c5b31 266 }
465db5d7 267
c99c5b31 268 // Send mail using the sendmail command
60994e13 269 function sendSendmail($t, $c, $b, $subject, $body, $more_headers) {
31afdefb 270 global $sendmail_path, $popuser, $username, $domain;
7b67334e 271
6ebf8b30 272 // Build envelope sender address. Make sure it doesn't contain
273 // spaces or other "weird" chars that would allow a user to
274 // exploit the shell/pipe it is used in.
31afdefb 275 $envelopefrom = "$popuser@$domain";
ec9f1c41 276 $envelopefrom = ereg_replace("[[:blank:]]",'', $envelopefrom);
277 $envelopefrom = ereg_replace("[[:space:]]",'', $envelopefrom);
278 $envelopefrom = ereg_replace("[[:cntrl:]]",'', $envelopefrom);
6ebf8b30 279
c99c5b31 280 // open pipe to sendmail
ec9f1c41 281 $fp = popen (escapeshellcmd("$sendmail_path -t -f$envelopefrom"), 'w');
c99c5b31 282
60994e13 283 $headerlength = write822Header ($fp, $t, $c, $b, $subject, $more_headers);
7b67334e 284 $bodylength = writeBody($fp, $body);
465db5d7 285
286 pclose($fp);
7b67334e 287
0775b17f 288 return ($headerlength + $bodylength);
465db5d7 289 }
290
b8ea4ed6 291 function smtpReadData($smtpConnection) {
292 $read = fgets($smtpConnection, 1024);
293 $counter = 0;
294 while ($read) {
ec9f1c41 295 echo $read . '<BR>';
b8ea4ed6 296 $data[$counter] = $read;
297 $read = fgets($smtpConnection, 1024);
298 $counter++;
299 }
300 }
301
60994e13 302 function sendSMTP($t, $c, $b, $subject, $body, $more_headers) {
31afdefb 303 global $username, $popuser, $domain, $version, $smtpServerAddress, $smtpPort,
28010579 304 $data_dir, $color;
7831268e 305
40ee9452 306 $to = parseAddrs($t);
307 $cc = parseAddrs($c);
308 $bcc = parseAddrs($b);
ec9f1c41 309 $from_addr = getPref($data_dir, $username, 'email_address');
356d7825 310
31afdefb 311 if (!$from_addr)
312 $from_addr = "$popuser@$domain";
d3cdb279 313
c175e2e4 314 $smtpConnection = fsockopen($smtpServerAddress, $smtpPort, $errorNumber, $errorString);
b8ea4ed6 315 if (!$smtpConnection) {
ec9f1c41 316 echo 'Error connecting to SMTP Server.<br>';
b8ea4ed6 317 echo "$errorNumber : $errorString<br>";
318 exit;
319 }
f8a9394d 320 $tmp = fgets($smtpConnection, 1024);
321 errorCheck($tmp, $smtpConnection);
b8ea4ed6 322
40ee9452 323 $to_list = getLineOfAddrs($to);
324 $cc_list = getLineOfAddrs($cc);
325
326 /** Lets introduce ourselves */
3379d740 327 fputs($smtpConnection, "HELO $domain\r\n");
f8a9394d 328 $tmp = fgets($smtpConnection, 1024);
329 errorCheck($tmp, $smtpConnection);
7831268e 330
40ee9452 331 /** Ok, who is sending the message? */
3379d740 332 fputs($smtpConnection, "MAIL FROM:<$from_addr>\r\n");
f8a9394d 333 $tmp = fgets($smtpConnection, 1024);
334 errorCheck($tmp, $smtpConnection);
b8ea4ed6 335
40ee9452 336 /** send who the recipients are */
337 for ($i = 0; $i < count($to); $i++) {
3379d740 338 fputs($smtpConnection, "RCPT TO:<$to[$i]>\r\n");
f8a9394d 339 $tmp = fgets($smtpConnection, 1024);
340 errorCheck($tmp, $smtpConnection);
40ee9452 341 }
342 for ($i = 0; $i < count($cc); $i++) {
3379d740 343 fputs($smtpConnection, "RCPT TO:<$cc[$i]>\r\n");
f8a9394d 344 $tmp = fgets($smtpConnection, 1024);
345 errorCheck($tmp, $smtpConnection);
40ee9452 346 }
347 for ($i = 0; $i < count($bcc); $i++) {
3379d740 348 fputs($smtpConnection, "RCPT TO:<$bcc[$i]>\r\n");
f8a9394d 349 $tmp = fgets($smtpConnection, 1024);
350 errorCheck($tmp, $smtpConnection);
40ee9452 351 }
b8ea4ed6 352
40ee9452 353 /** Lets start sending the actual message */
3379d740 354 fputs($smtpConnection, "DATA\r\n");
f8a9394d 355 $tmp = fgets($smtpConnection, 1024);
356 errorCheck($tmp, $smtpConnection);
7831268e 357
7b67334e 358 // Send the message
60994e13 359 $headerlength = write822Header ($smtpConnection, $t, $c, $b, $subject, $more_headers);
7b67334e 360 $bodylength = writeBody($smtpConnection, $body);
7831268e 361
3379d740 362 fputs($smtpConnection, ".\r\n"); // end the DATA part
f8a9394d 363 $tmp = fgets($smtpConnection, 1024);
364 $num = errorCheck($tmp, $smtpConnection);
3021b626 365 if ($num != 250) {
f8a9394d 366 $tmp = nl2br(htmlspecialchars($tmp));
28010579 367 echo "ERROR<BR>Message not sent!<BR>Reason given: $tmp<BR></BODY></HTML>";
3021b626 368 }
d3cdb279 369
3379d740 370 fputs($smtpConnection, "QUIT\r\n"); // log off
78509c54 371
372 fclose($smtpConnection);
7b67334e 373
374 return ($headerlength + $bodylength);
b8ea4ed6 375 }
3021b626 376
377
f8a9394d 378 function errorCheck($line, $smtpConnection) {
776c7431 379 global $page_header_php;
28010579 380 global $color;
776c7431 381 if (!isset($page_header_php)) {
ec9f1c41 382 include '../functions/page_header.php';
776c7431 383 }
384
f8a9394d 385 // Read new lines on a multiline response
386 $lines = $line;
387 while(ereg("^[0-9]+-", $line)) {
388 $line = fgets($smtpConnection, 1024);
389 $lines .= $line;
390 }
391
3021b626 392 // Status: 0 = fatal
393 // 5 = ok
394
395 $err_num = substr($line, 0, strpos($line, " "));
396 switch ($err_num) {
ec9f1c41 397 case 500: $message = 'Syntax error; command not recognized';
3021b626 398 $status = 0;
399 break;
ec9f1c41 400 case 501: $message = 'Syntax error in parameters or arguments';
3021b626 401 $status = 0;
402 break;
ec9f1c41 403 case 502: $message = 'Command not implemented';
3021b626 404 $status = 0;
405 break;
ec9f1c41 406 case 503: $message = 'Bad sequence of commands';
3021b626 407 $status = 0;
408 break;
ec9f1c41 409 case 504: $message = 'Command parameter not implemented';
3021b626 410 $status = 0;
411 break;
412
413
ec9f1c41 414 case 211: $message = 'System status, or system help reply';
3021b626 415 $status = 5;
416 break;
ec9f1c41 417 case 214: $message = 'Help message';
3021b626 418 $status = 5;
419 break;
420
421
ec9f1c41 422 case 220: $message = 'Service ready';
3021b626 423 $status = 5;
424 break;
ec9f1c41 425 case 221: $message = 'Service closing transmission channel';
3021b626 426 $status = 5;
427 break;
ec9f1c41 428 case 421: $message = 'Service not available, closing chanel';
3021b626 429 $status = 0;
430 break;
431
432
ec9f1c41 433 case 250: $message = 'Requested mail action okay, completed';
3021b626 434 $status = 5;
435 break;
ec9f1c41 436 case 251: $message = 'User not local; will forward';
3021b626 437 $status = 5;
438 break;
ec9f1c41 439 case 450: $message = 'Requested mail action not taken: mailbox unavailable';
3021b626 440 $status = 0;
441 break;
ec9f1c41 442 case 550: $message = 'Requested action not taken: mailbox unavailable';
3021b626 443 $status = 0;
444 break;
ec9f1c41 445 case 451: $message = 'Requested action aborted: error in processing';
3021b626 446 $status = 0;
447 break;
ec9f1c41 448 case 551: $message = 'User not local; please try forwarding';
3021b626 449 $status = 0;
450 break;
ec9f1c41 451 case 452: $message = 'Requested action not taken: insufficient system storage';
3021b626 452 $status = 0;
453 break;
ec9f1c41 454 case 552: $message = 'Requested mail action aborted: exceeding storage allocation';
3021b626 455 $status = 0;
456 break;
ec9f1c41 457 case 553: $message = 'Requested action not taken: mailbox name not allowed';
3021b626 458 $status = 0;
459 break;
ec9f1c41 460 case 354: $message = 'Start mail input; end with .';
3021b626 461 $status = 5;
462 break;
ec9f1c41 463 case 554: $message = 'Transaction failed';
3021b626 464 $status = 0;
465 break;
434666c7 466 default: $message = 'Unknown response: '. nl2br(htmlspecialchars($lines));
3021b626 467 $status = 0;
ec9f1c41 468 $error_num = '001';
3021b626 469 break;
470 }
471
472 if ($status == 0) {
ec9f1c41 473 displayPageHeader($color, 'None');
474 echo '<TT>';
776c7431 475 echo "<br><b><font color=\"$color[1]\">ERROR</font></b><br><br>";
3021b626 476 echo "&nbsp;&nbsp;&nbsp;<B>Error Number: </B>$err_num<BR>";
477 echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Reason: </B>$message<BR>";
f8a9394d 478 $lines = nl2br(htmlspecialchars($lines));
479 echo "<B>Server Response: </B>$lines<BR>";
ec9f1c41 480 echo '<BR>MAIL NOT SENT';
481 echo '</TT></BODY></HTML>';
3021b626 482 exit;
483 }
484 return $err_num;
485 }
df15de21 486
966286ae 487 function sendMessage($t, $c, $b, $subject, $body, $reply_id) {
488 global $useSendmail, $msg_id, $is_reply, $mailbox;
6441f7c6 489 global $data_dir, $username, $domain, $key, $version, $sent_folder, $imapServerAddress, $imapPort;
60994e13 490 $more_headers = Array();
d1b8b679 491
966286ae 492 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 1);
60994e13 493
fdc35433 494 // The trim() is a workaround for RedHat's PHP 4.0.4pl1-3
495 // Possibly is there to make Konq work.
1d82ead6 496 if ($reply_id = trim($reply_id)) {
966286ae 497 sqimap_mailbox_select ($imap_stream, $mailbox);
ec9f1c41 498 sqimap_messages_flag ($imap_stream, $reply_id, $reply_id, 'Answered');
60994e13 499
c95df380 500 // Insert In-Reply-To and References headers if the
501 // message-id of the message we reply to is set (longer than "<>")
502 // The References header should really be the old Referenced header
503 // with the message ID appended, but it can be only the message ID too.
504 $hdr = sqimap_get_small_header ($imap_stream, $reply_id, false);
505 if(strlen($hdr->message_id) > 2) {
ec9f1c41 506 $more_headers['In-Reply-To'] = $hdr->message_id;
507 $more_headers['References'] = $hdr->message_id;
c95df380 508 }
966286ae 509 }
8ae331c2 510
af8eba43 511 // In order to remove the problem of users not able to create
512 // messages with "." on a blank line, RFC821 has made provision
513 // in section 4.5.2 (Transparency).
146e0c45 514 $body = ereg_replace("\n\\.", "\n..", $body);
515 $body = ereg_replace("^\\.", "..", $body);
af8eba43 516
8ae331c2 517 // this is to catch all plain \n instances and
518 // replace them with \r\n.
519 $body = ereg_replace("\r\n", "\n", $body);
520 $body = ereg_replace("\n", "\r\n", $body);
3a8c414d 521
8ae331c2 522 if ($useSendmail) {
60994e13 523 $length = sendSendmail($t, $c, $b, $subject, $body, $more_headers);
df15de21 524 } else {
60994e13 525 $length = sendSMTP($t, $c, $b, $subject, $body, $more_headers);
df15de21 526 }
d1b8b679 527
fdc35433 528 // The trim() is a workaround for RedHat's PHP 4.0.4pl1-3
529 // Possibly is there to make Konq work.
1d82ead6 530 $sent_folder = trim($sent_folder);
2966f172 531 if (sqimap_mailbox_exists ($imap_stream, $sent_folder)) {
532 sqimap_append ($imap_stream, $sent_folder, $length);
60994e13 533 write822Header ($imap_stream, $t, $c, $b, $subject, $more_headers);
8ae331c2 534 writeBody ($imap_stream, $body);
2966f172 535 sqimap_append_done ($imap_stream);
8ae331c2 536 }
537 sqimap_logout($imap_stream);
a7d75834 538 // Delete the files uploaded for attaching (if any).
539 deleteAttachments();
df15de21 540 }
8ae331c2 541
434666c7 542?>