Fix for bug 554789 Loose of attachements when using the html addressbook
[squirrelmail.git] / functions / smtp.php
CommitLineData
59177427 1<?php
2ba13803 2
35586184 3/**
4 * smtp.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This contains all the functions needed to send messages through
10 * an smtp server or sendmail.
11 *
12 * $Id$
13 */
b8ea4ed6 14
35586184 15require_once('../functions/addressbook.php');
16require_once('../functions/plugin.php');
3392dc86 17require_once('../functions/prefs.php');
35586184 18
19global $username, $popuser, $domain;
465db5d7 20
a1e937bb 21/* This should most probably go to some initialization... */
e25c2bd3 22if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
23 $popuser = $usernamedata[1];
24 $domain = $usernamedata[2];
25 unset($usernamedata);
26} else {
27 $popuser = $username;
28}
a1e937bb 29/* We need domain for smtp */
30if (!$domain) {
e25c2bd3 31 $domain = getenv('HOSTNAME');
a1e937bb 32}
e25c2bd3 33
a1e937bb 34/* Returns true only if this message is multipart */
dd7766e0 35function isMultipart ($session) {
e25c2bd3 36 global $attachments;
7622a204 37
38 foreach ($attachments as $info) {
a3fbf5a4 39 if ($info['session'] == $session) {
40 return true;
41 }
a1e937bb 42 }
7622a204 43 return false;
e25c2bd3 44}
45
a1e937bb 46/* looks up aliases in the addressbook and expands them to
47 * the full address.
48 *
49 * Adds @$domain if it wasn't in the address book and if it
50 * doesn't have an @ symbol in it
51 */
e25c2bd3 52function expandAddrs ($array) {
53 global $domain;
54
a1e937bb 55 /* don't show errors -- kinda critical that we don't see
56 * them here since the redirect won't work if we do show them
57 */
68444892 58 $abook = addressbook_init(false, true);
e25c2bd3 59 for ($i=0; $i < count($array); $i++) {
60 $result = $abook->lookup($array[$i]);
61 $ret = "";
62 if (isset($result['email'])) {
a4102fd7 63 if (isset($result['name'])) {
e25c2bd3 64 $ret = '"'.$result['name'].'" ';
a4102fd7 65 }
66 $ret .= '<'.$result['email'].'>';
67 $array[$i] = $ret;
e25c2bd3 68 }
69 else
a1e937bb 70 {
71 if (strpos($array[$i], '@') === false) {
72 $array[$i] .= '@' . $domain;
e25c2bd3 73 }
a1e937bb 74 $array[$i] = '<' . $array[$i] . '>';
75 }
e25c2bd3 76 }
77 return $array;
78}
93555af8 79
93555af8 80
a1e937bb 81/* looks up aliases in the addressbook and expands them to
82 * the RFC 821 valid RCPT address. ie <user@example.com>
83 * Adds @$domain if it wasn't in the address book and if it
84 * doesn't have an @ symbol in it
85 */
e25c2bd3 86function expandRcptAddrs ($array) {
87 global $domain;
88
a1e937bb 89 /* don't show errors -- kinda critical that we don't see
90 * them here since the redirect won't work if we do show them
91 */
68444892 92 $abook = addressbook_init(false, true);
e25c2bd3 93 for ($i=0; $i < count($array); $i++) {
94 $result = $abook->lookup($array[$i]);
95 $ret = "";
96 if (isset($result['email'])) {
93555af8 97 $ret = '<'.$result['email'].'>';
98 $array[$i] = $ret;
e25c2bd3 99 }
100 else {
a1e937bb 101 if (strpos($array[$i], '@') === false) {
e25c2bd3 102 $array[$i] .= '@' . $domain;
a1e937bb 103 }
93555af8 104 $array[$i] = '<' . $array[$i] . '>';
e25c2bd3 105 }
106 }
107 return $array;
108}
93555af8 109
4ba45d11 110
77b88425 111/* Attach the files that are due to be attached
a1e937bb 112 */
721a6cac 113function attachFiles ($fp, $session, $rn="\r\n") {
e25c2bd3 114 global $attachments, $attachment_dir, $username;
77b88425 115
e25c2bd3 116 $length = 0;
77b88425 117
e25c2bd3 118 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
dd7766e0 119 if (isMultipart($session)) {
e25c2bd3 120 foreach ($attachments as $info) {
a3fbf5a4 121 if ($info['session'] == $session) {
122 if (isset($info['type'])) {
123 $filetype = $info['type'];
124 }
125 else {
126 $filetype = 'application/octet-stream';
127 }
128
129 $header = '--' . mimeBoundary() . "$rn";
130 if ( isset($info['remotefilename'])
131 && $info['remotefilename'] != '') {
132 $header .= "Content-Type: $filetype; name=\"" .
133 $info['remotefilename'] . "\"$rn";
134 $header .= "Content-Disposition: attachment; filename=\""
135 . $info['remotefilename'] . "\"$rn";
136 } else {
30e08236 137 $header .= "Content-Type: $filetype$rn";
a3fbf5a4 138 }
77b88425 139
a3fbf5a4 140
141 /* Use 'rb' for NT systems -- read binary
142 * Unix doesn't care -- everything's binary! :-)
143 */
144
145 $filename = $hashed_attachment_dir . '/'
146 . $info['localfilename'];
147 $file = fopen ($filename, 'rb');
148 if (substr($filetype, 0, 5) == 'text/' ||
149 substr($filetype, 0, 8) == 'message/' ) {
150 $header .= "$rn";
3186c0c0 151 if ($fp) fputs ($fp, $header);
a3fbf5a4 152 $length += strlen($header);
153 while ($tmp = fgets($file, 4096)) {
154 $tmp = str_replace("\r\n", "\n", $tmp);
155 $tmp = str_replace("\r", "\n", $tmp);
156 if ($rn == "\r\n"){
157 $tmp = str_replace("\n", "\r\n", $tmp);
158 }
159 /**
160 * Check if the last line has newline ($rn) in it
161 * and append if it doesn't.
162 */
163 if (feof($fp) && !strstr($tmp, "$rn")){
164 $tmp .= "$rn";
165 }
3186c0c0 166 if ($fp) fputs($fp, $tmp);
a3fbf5a4 167 $length += strlen($tmp);
168 }
169 } else {
170 $header .= "Content-Transfer-Encoding: base64"
171 . "$rn" . "$rn";
3186c0c0 172 if ($fp) fputs ($fp, $header);
a3fbf5a4 173 $length += strlen($header);
174 while ($tmp = fread($file, 570)) {
175 $encoded = chunk_split(base64_encode($tmp));
176 $length += strlen($encoded);
3186c0c0 177 if ($fp) fputs ($fp, $encoded);
a1e937bb 178 }
e25c2bd3 179 }
a3fbf5a4 180 fclose ($file);
e25c2bd3 181 }
e25c2bd3 182 }
183 }
184 return $length;
185}
186
a1e937bb 187/* Delete files that are uploaded for attaching
188 */
dd7766e0 189function deleteAttachments($session) {
190 global $username, $attachments, $attachment_dir;
e25c2bd3 191 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
dd7766e0 192
193 $rem_attachments = array();
194 foreach ($attachments as $info) {
a3fbf5a4 195 if ($info['session'] == $session) {
dd7766e0 196 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
197 if (file_exists($attached_file)) {
a3fbf5a4 198 unlink($attached_file);
dd7766e0 199 }
a3fbf5a4 200 } else {
201 $rem_attachments[] = $info;
202 }
dd7766e0 203 }
204 $attachments = $rem_attachments;
e25c2bd3 205}
a7d75834 206
a1e937bb 207/* Return a nice MIME-boundary
208 */
e25c2bd3 209function mimeBoundary () {
210 static $mimeBoundaryString;
77b88425 211
212 if ( !isset( $mimeBoundaryString ) ||
213 $mimeBoundaryString == '') {
214 $mimeBoundaryString = '----=_' . date( 'YmdHis' ) . '_' .
a3fbf5a4 215 mt_rand( 10000, 99999 );
e25c2bd3 216 }
77b88425 217
e25c2bd3 218 return $mimeBoundaryString;
219}
7b67334e 220
e25c2bd3 221/* Time offset for correct timezone */
222function timezone () {
223 global $invert_time;
224
225 $diff_second = date('Z');
a1e937bb 226 if ($invert_time) {
e25c2bd3 227 $diff_second = - $diff_second;
a1e937bb 228 }
229 if ($diff_second > 0) {
e25c2bd3 230 $sign = '+';
a1e937bb 231 }
232 else {
e25c2bd3 233 $sign = '-';
a1e937bb 234 }
235
e25c2bd3 236 $diff_second = abs($diff_second);
237
238 $diff_hour = floor ($diff_second / 3600);
239 $diff_minute = floor (($diff_second-3600*$diff_hour) / 60);
240
241 $zonename = '('.strftime('%Z').')';
a3fbf5a4 242 $result = sprintf ("%s%02d%02d %s", $sign, $diff_hour, $diff_minute,
243 $zonename);
e25c2bd3 244 return ($result);
245}
246
247/* Print all the needed RFC822 headers */
721a6cac 248function write822Header ($fp, $t, $c, $b, $subject, $more_headers, $session, $rn="\r\n") {
e25c2bd3 249 global $REMOTE_ADDR, $SERVER_NAME, $REMOTE_PORT;
250 global $data_dir, $username, $popuser, $domain, $version, $useSendmail;
251 global $default_charset, $HTTP_VIA, $HTTP_X_FORWARDED_FOR;
252 global $REMOTE_HOST, $identity;
721a6cac 253
a1e937bb 254 /* Storing the header to make sure the header is the same
255 * everytime the header is printed.
256 */
3186c0c0 257 static $header, $headerlength, $headerrn;
e25c2bd3 258
259 if ($header == '') {
3186c0c0 260 $headerrn = $rn;
e25c2bd3 261 $to = expandAddrs(parseAddrs($t));
262 $cc = expandAddrs(parseAddrs($c));
263 $bcc = expandAddrs(parseAddrs($b));
264 if (isset($identity) && $identity != 'default') {
265 $reply_to = getPref($data_dir, $username, 'reply_to' . $identity);
266 $from = getPref($data_dir, $username, 'full_name' . $identity);
e1225604 267 $from_addr = getFrom();
e25c2bd3 268 } else {
aaf9abef 269 $reply_to = getPref($data_dir, $username, 'reply_to');
270 $from = getPref($data_dir, $username, 'full_name');
e1225604 271 $from_addr = getFrom();
a1e937bb 272 }
e25c2bd3 273
274 $to_list = getLineOfAddrs($to);
275 $cc_list = getLineOfAddrs($cc);
276 $bcc_list = getLineOfAddrs($bcc);
277
278 /* Encoding 8-bit characters and making from line */
279 $subject = encodeHeader($subject);
a1e937bb 280 if ($from == '') {
7b67334e 281 $from = "<$from_addr>";
a1e937bb 282 }
283 else {
ec9f1c41 284 $from = '"' . encodeHeader($from) . "\" <$from_addr>";
a1e937bb 285 }
e25c2bd3 286
287 /* This creates an RFC 822 date */
288 $date = date("D, j M Y H:i:s ", mktime()) . timezone();
289
290 /* Create a message-id */
291 $message_id = '<' . $REMOTE_PORT . '.' . $REMOTE_ADDR . '.';
292 $message_id .= time() . '.squirrel@' . $SERVER_NAME .'>';
293
294 /* Make an RFC822 Received: line */
a1e937bb 295 if (isset($REMOTE_HOST)) {
8a2848f0 296 $received_from = "$REMOTE_HOST ([$REMOTE_ADDR])";
a1e937bb 297 }
298 else {
8a2848f0 299 $received_from = $REMOTE_ADDR;
a1e937bb 300 }
77b88425 301
e25c2bd3 302 if (isset($HTTP_VIA) || isset ($HTTP_X_FORWARDED_FOR)) {
a1e937bb 303 if ($HTTP_X_FORWARDED_FOR == '') {
e25c2bd3 304 $HTTP_X_FORWARDED_FOR = 'unknown';
a1e937bb 305 }
9949206d 306 $received_from .= " (proxying for $HTTP_X_FORWARDED_FOR)";
7e235a1a 307 }
308
a3fbf5a4 309 $header = "Received: from $received_from" . $rn;
310 $header .= " (SquirrelMail authenticated user $username)" . $rn;
311 $header .= " by $SERVER_NAME with HTTP;" . $rn;
312 $header .= " $date" . $rn;
7e235a1a 313
e25c2bd3 314 /* Insert the rest of the header fields */
a3fbf5a4 315 $header .= "Message-ID: $message_id" . $rn;
316 $header .= "Date: $date" . $rn;
317 $header .= "Subject: $subject" . $rn;
318 $header .= "From: $from" . $rn;
319 $header .= "To: $to_list" . $rn; // Who it's TO
7e235a1a 320
604e2c03 321 if (isset($more_headers["Content-Type"])) {
7e235a1a 322 $contentType = $more_headers["Content-Type"];
323 unset($more_headers["Content-Type"]);
324 }
604e2c03 325 else {
dd7766e0 326 if (isMultipart($session)) {
7e235a1a 327 $contentType = "multipart/mixed;";
604e2c03 328 }
329 else {
7e235a1a 330 if ($default_charset != '') {
331 $contentType = 'text/plain; charset='.$default_charset;
332 }
333 else {
334 $contentType = 'text/plain;';
335 }
336 }
77b88425 337 }
7e235a1a 338
339 /* Insert headers from the $more_headers array */
340 if(is_array($more_headers)) {
e25c2bd3 341 reset($more_headers);
342 while(list($h_name, $h_val) = each($more_headers)) {
721a6cac 343 if ($h_name == 'References') {
344 $h_val = str_replace(' ', "$rn ", $h_val);
345 }
a3fbf5a4 346 $header .= sprintf("%s: %s%s", $h_name, $h_val, $rn);
e25c2bd3 347 }
348 }
7e235a1a 349
e25c2bd3 350 if ($cc_list) {
a3fbf5a4 351 $header .= "Cc: $cc_list" . $rn; // Who the CCs are
e25c2bd3 352 }
7e235a1a 353
a1e937bb 354 if ($reply_to != '') {
a3fbf5a4 355 $header .= "Reply-To: $reply_to" . $rn;
a1e937bb 356 }
7e235a1a 357
e25c2bd3 358 if ($useSendmail) {
7b67334e 359 if ($bcc_list) {
e25c2bd3 360 // BCCs is removed from header by sendmail
a3fbf5a4 361 $header .= "Bcc: $bcc_list" . $rn;
7b67334e 362 }
e25c2bd3 363 }
7e235a1a 364
a3fbf5a4 365 /* Identify SquirrelMail */
366 $header .= "X-Mailer: SquirrelMail (version $version)" . $rn;
77b88425 367
a1e937bb 368 /* Do the MIME-stuff */
a3fbf5a4 369 $header .= "MIME-Version: 1.0" . $rn;
7e235a1a 370
dd7766e0 371 if (isMultipart($session)) {
604e2c03 372 $header .= 'Content-Type: '.$contentType.' boundary="';
373 $header .= mimeBoundary();
a3fbf5a4 374 $header .= "\"$rn";
e25c2bd3 375 } else {
a3fbf5a4 376 $header .= 'Content-Type: ' . $contentType . $rn;
377 $header .= "Content-Transfer-Encoding: 8bit" . $rn;
e25c2bd3 378 }
a3fbf5a4 379 $header .= $rn; // One blank line to separate header and body
e25c2bd3 380
381 $headerlength = strlen($header);
382 }
3186c0c0 383
384 if ($headerrn != $rn) {
385 $header = str_replace($headerrn, $rn, $header);
386 $headerlength = strlen($header);
387 $headerrn = $rn;
388 }
e25c2bd3 389
a1e937bb 390 /* Write the header */
3186c0c0 391 if ($fp) fputs ($fp, $header);
e25c2bd3 392
393 return $headerlength;
394}
17ce8467 395
a1e937bb 396/* Send the body
397 */
721a6cac 398function writeBody ($fp, $passedBody, $session, $rn="\r\n") {
e25c2bd3 399 global $default_charset;
a3fbf5a4 400
e25c2bd3 401 $attachmentlength = 0;
402
dd7766e0 403 if (isMultipart($session)) {
a3fbf5a4 404 $body = '--'.mimeBoundary() . $rn;
e25c2bd3 405
a1e937bb 406 if ($default_charset != "") {
a3fbf5a4 407 $body .= "Content-Type: text/plain; charset=$default_charset".$rn;
a1e937bb 408 }
409 else {
a3fbf5a4 410 $body .= "Content-Type: text/plain" . $rn;
a1e937bb 411 }
e25c2bd3 412
a3fbf5a4 413 $body .= "Content-Transfer-Encoding: 8bit" . $rn . $rn;
414 $body .= $passedBody . $rn . $rn;
3186c0c0 415 if ($fp) fputs ($fp, $body);
e25c2bd3 416
721a6cac 417 $attachmentlength = attachFiles($fp, $session, $rn);
e25c2bd3 418
a1e937bb 419 if (!isset($postbody)) {
420 $postbody = "";
421 }
a3fbf5a4 422 $postbody .= $rn . "--" . mimeBoundary() . "--" . $rn . $rn;
3186c0c0 423 if ($fp) fputs ($fp, $postbody);
e25c2bd3 424 } else {
a3fbf5a4 425 $body = $passedBody . $rn;
3186c0c0 426 if ($fp) fputs ($fp, $body);
a3fbf5a4 427 $postbody = $rn;
3186c0c0 428 if ($fp) fputs ($fp, $postbody);
e25c2bd3 429 }
7e235a1a 430
e25c2bd3 431 return (strlen($body) + strlen($postbody) + $attachmentlength);
432}
17ce8467 433
a1e937bb 434/* Send mail using the sendmail command
435 */
dd7766e0 436function sendSendmail($t, $c, $b, $subject, $body, $more_headers, $session) {
e25c2bd3 437 global $sendmail_path, $popuser, $username, $domain;
438
a1e937bb 439 /* Build envelope sender address. Make sure it doesn't contain
440 * spaces or other "weird" chars that would allow a user to
441 * exploit the shell/pipe it is used in.
442 */
e1225604 443 $envelopefrom = getFrom();
e25c2bd3 444 $envelopefrom = ereg_replace("[[:blank:]]",'', $envelopefrom);
445 $envelopefrom = ereg_replace("[[:space:]]",'', $envelopefrom);
446 $envelopefrom = ereg_replace("[[:cntrl:]]",'', $envelopefrom);
447
a3fbf5a4 448 /**
449 * open pipe to sendmail or qmail-inject
450 * (qmail-inject doesn't accept -t param)
451 */
e25c2bd3 452 if (strstr($sendmail_path, "qmail-inject")) {
453 $fp = popen (escapeshellcmd("$sendmail_path -f$envelopefrom"), "w");
454 } else {
455 $fp = popen (escapeshellcmd("$sendmail_path -t -f$envelopefrom"), "w");
456 }
457
a3fbf5a4 458 $headerlength = write822Header ($fp, $t, $c, $b, $subject,
721a6cac 459 $more_headers, $session, "\n");
460 $bodylength = writeBody($fp, $body, $session, "\n");
e25c2bd3 461
462 pclose($fp);
e1225604 463
e25c2bd3 464 return ($headerlength + $bodylength);
465}
466
467function smtpReadData($smtpConnection) {
468 $read = fgets($smtpConnection, 1024);
469 $counter = 0;
470 while ($read) {
471 echo $read . '<BR>';
472 $data[$counter] = $read;
473 $read = fgets($smtpConnection, 1024);
474 $counter++;
475 }
476}
477
dd7766e0 478function sendSMTP($t, $c, $b, $subject, $body, $more_headers, $session) {
e25c2bd3 479 global $username, $popuser, $domain, $version, $smtpServerAddress,
480 $smtpPort, $data_dir, $color, $use_authenticated_smtp, $identity,
481 $key, $onetimepad;
482
483 $to = expandRcptAddrs(parseAddrs($t));
484 $cc = expandRcptAddrs(parseAddrs($c));
485 $bcc = expandRcptAddrs(parseAddrs($b));
a1e937bb 486 if (isset($identity) && $identity != 'default') {
a3fbf5a4 487 $from_addr = getPref($data_dir, $username,
488 'email_address' . $identity);
a1e937bb 489 }
490 else {
e25c2bd3 491 $from_addr = getPref($data_dir, $username, 'email_address');
a1e937bb 492 }
e25c2bd3 493
a1e937bb 494 if (!$from_addr) {
e25c2bd3 495 $from_addr = "$popuser@$domain";
a1e937bb 496 }
2044f95a 497
498 /* POP3 BEFORE SMTP CODE HERE */
499 global $pop_before_smtp;
500 if (isset($pop_before_smtp) && $pop_before_smtp === true) {
501 if (!isset($pop_port)) {
502 $pop_port = 110;
503 }
504 if (!isset($pop_server)) {
505 $pop_server = $smtpServerAddress; /* usually the same host! */
506 }
507 $popConnection = fsockopen($pop_server, $pop_port, $err_no, $err_str);
508 if (!$popConnection) {
509 error_log("Error connecting to POP Server ($pop_server:$pop_port)"
510 . " $err_no : $err_str");
511 } else {
512 $tmp = fgets($popConnection, 1024); /* banner */
513 if (!eregi("^\+OK", $tmp, $regs)) {
514 return(0);
515 }
516 fputs($popConnection, "USER $username\r\n");
517 $tmp = fgets($popConnection, 1024);
518 if (!eregi("^\+OK", $tmp, $regs)) {
519 return(0);
520 }
521 fputs($popConnection, 'PASS ' . OneTimePadDecrypt($key, $onetimepad) . "\r\n");
522 $tmp = fgets($popConnection, 1024);
523 if (!eregi("^\+OK", $tmp, $regs)) {
524 return(0);
525 }
526 fputs($popConnection, "QUIT\r\n"); /* log off */
527 fclose($popConnection);
528 }
529 }
e25c2bd3 530
a3fbf5a4 531 $smtpConnection = fsockopen($smtpServerAddress, $smtpPort,
532 $errorNumber, $errorString);
e25c2bd3 533 if (!$smtpConnection) {
534 echo 'Error connecting to SMTP Server.<br>';
535 echo "$errorNumber : $errorString<br>";
536 exit;
537 }
538 $tmp = fgets($smtpConnection, 1024);
14c62c12 539 if (errorCheck($tmp, $smtpConnection)!=5) {
540 return(0);
541 }
e25c2bd3 542
543 $to_list = getLineOfAddrs($to);
544 $cc_list = getLineOfAddrs($cc);
545
a1e937bb 546 /* Lets introduce ourselves */
a3fbf5a4 547 if (! isset ($use_authenticated_smtp)
548 || $use_authenticated_smtp == false) {
e25c2bd3 549 fputs($smtpConnection, "HELO $domain\r\n");
550 $tmp = fgets($smtpConnection, 1024);
551 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
552 } else {
553 fputs($smtpConnection, "EHLO $domain\r\n");
554 $tmp = fgets($smtpConnection, 1024);
555 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
556
557 fputs($smtpConnection, "AUTH LOGIN\r\n");
558 $tmp = fgets($smtpConnection, 1024);
a1e937bb 559 if (errorCheck($tmp, $smtpConnection)!=5) {
560 return(0);
561 }
77b88425 562
e25c2bd3 563 fputs($smtpConnection, base64_encode ($username) . "\r\n");
564 $tmp = fgets($smtpConnection, 1024);
a1e937bb 565 if (errorCheck($tmp, $smtpConnection)!=5) {
566 return(0);
567 }
e25c2bd3 568
a3fbf5a4 569 fputs($smtpConnection, base64_encode
570 (OneTimePadDecrypt($key, $onetimepad)) . "\r\n");
e25c2bd3 571 $tmp = fgets($smtpConnection, 1024);
a1e937bb 572 if (errorCheck($tmp, $smtpConnection)!=5) {
573 return(0);
574 }
e25c2bd3 575 }
576
a1e937bb 577 /* Ok, who is sending the message? */
e25c2bd3 578 fputs($smtpConnection, "MAIL FROM: <$from_addr>\r\n");
579 $tmp = fgets($smtpConnection, 1024);
a1e937bb 580 if (errorCheck($tmp, $smtpConnection)!=5) {
581 return(0);
582 }
e25c2bd3 583
a1e937bb 584 /* send who the recipients are */
e25c2bd3 585 for ($i = 0; $i < count($to); $i++) {
586 fputs($smtpConnection, "RCPT TO: $to[$i]\r\n");
587 $tmp = fgets($smtpConnection, 1024);
a1e937bb 588 if (errorCheck($tmp, $smtpConnection)!=5) {
589 return(0);
590 }
e25c2bd3 591 }
592 for ($i = 0; $i < count($cc); $i++) {
593 fputs($smtpConnection, "RCPT TO: $cc[$i]\r\n");
594 $tmp = fgets($smtpConnection, 1024);
a1e937bb 595 if (errorCheck($tmp, $smtpConnection)!=5) {
596 return(0);
597 }
e25c2bd3 598 }
599 for ($i = 0; $i < count($bcc); $i++) {
600 fputs($smtpConnection, "RCPT TO: $bcc[$i]\r\n");
601 $tmp = fgets($smtpConnection, 1024);
77b88425 602 if (errorCheck($tmp, $smtpConnection)!=5) {
a1e937bb 603 return(0);
604 }
e25c2bd3 605 }
77b88425 606
a1e937bb 607 /* Lets start sending the actual message */
e25c2bd3 608 fputs($smtpConnection, "DATA\r\n");
609 $tmp = fgets($smtpConnection, 1024);
a1e937bb 610 if (errorCheck($tmp, $smtpConnection)!=5) {
611 return(0);
612 }
77b88425 613
a1e937bb 614 /* Send the message */
a3fbf5a4 615 $headerlength = write822Header ($smtpConnection, $t, $c, $b,
616 $subject, $more_headers, $session);
dd7766e0 617 $bodylength = writeBody($smtpConnection, $body, $session);
e25c2bd3 618
a1e937bb 619 fputs($smtpConnection, ".\r\n"); /* end the DATA part */
e25c2bd3 620 $tmp = fgets($smtpConnection, 1024);
621 $num = errorCheck($tmp, $smtpConnection, true);
622 if ($num != 250) {
e25c2bd3 623 return(0);
624 }
625
a1e937bb 626 fputs($smtpConnection, "QUIT\r\n"); /* log off */
e25c2bd3 627
628 fclose($smtpConnection);
629
630 return ($headerlength + $bodylength);
631}
60994e13 632
60994e13 633
e25c2bd3 634function errorCheck($line, $smtpConnection, $verbose = false) {
8f8f3a4e 635 global $color, $compose_new_win;
e25c2bd3 636
a1e937bb 637 /* Read new lines on a multiline response */
e25c2bd3 638 $lines = $line;
639 while(ereg("^[0-9]+-", $line)) {
640 $line = fgets($smtpConnection, 1024);
641 $lines .= $line;
642 }
643
a1e937bb 644 /* Status: 0 = fatal
645 * 5 = ok
646 */
e25c2bd3 647 $err_num = substr($line, 0, strpos($line, " "));
648 switch ($err_num) {
649 case 500: $message = 'Syntax error; command not recognized';
650 $status = 0;
651 break;
652 case 501: $message = 'Syntax error in parameters or arguments';
653 $status = 0;
654 break;
655 case 502: $message = 'Command not implemented';
656 $status = 0;
657 break;
658 case 503: $message = 'Bad sequence of commands';
659 $status = 0;
660 break;
661 case 504: $message = 'Command parameter not implemented';
662 $status = 0;
a1e937bb 663 break;
e25c2bd3 664
665 case 211: $message = 'System status, or system help reply';
666 $status = 5;
667 break;
668 case 214: $message = 'Help message';
669 $status = 5;
670 break;
671
e25c2bd3 672 case 220: $message = 'Service ready';
673 $status = 5;
674 break;
675 case 221: $message = 'Service closing transmission channel';
676 $status = 5;
677 break;
a1e937bb 678
e25c2bd3 679 case 421: $message = 'Service not available, closing chanel';
680 $status = 0;
681 break;
682
a1e937bb 683 case 235: return(5);
684 break;
e25c2bd3 685 case 250: $message = 'Requested mail action okay, completed';
686 $status = 5;
687 break;
688 case 251: $message = 'User not local; will forward';
689 $status = 5;
690 break;
691 case 334: return(5); break;
692 case 450: $message = 'Requested mail action not taken: mailbox unavailable';
693 $status = 0;
694 break;
695 case 550: $message = 'Requested action not taken: mailbox unavailable';
696 $status = 0;
697 break;
698 case 451: $message = 'Requested action aborted: error in processing';
699 $status = 0;
700 break;
701 case 551: $message = 'User not local; please try forwarding';
702 $status = 0;
703 break;
704 case 452: $message = 'Requested action not taken: insufficient system storage';
705 $status = 0;
706 break;
707 case 552: $message = 'Requested mail action aborted: exceeding storage allocation';
708 $status = 0;
709 break;
710 case 553: $message = 'Requested action not taken: mailbox name not allowed';
711 $status = 0;
712 break;
713 case 354: $message = 'Start mail input; end with .';
714 $status = 5;
715 break;
716 case 554: $message = 'Transaction failed';
717 $status = 0;
718 break;
719 default: $message = 'Unknown response: '. nl2br(htmlspecialchars($lines));
720 $status = 0;
721 $error_num = '001';
722 break;
723 }
7e235a1a 724
e25c2bd3 725 if ($status == 0) {
726 include_once('../functions/page_header.php');
8f8f3a4e 727 if ($compose_new_win == '1') {
728 compose_Header($color, 'None');
729 }
7e235a1a 730 else {
8f8f3a4e 731 displayPageHeader($color, 'None');
732 }
e25c2bd3 733 include_once('../functions/display_messages.php');
734 $lines = nl2br(htmlspecialchars($lines));
735 $msg = $message . "<br>\nServer replied: $lines";
736 plain_error_message($msg, $color);
737 }
738 if (! $verbose) return $status;
739 return $err_num;
740}
741
67c2f5ea 742/* create new reference header per rfc2822 */
743
744function calculate_references($refs, $inreplyto, $old_reply_to) {
721a6cac 745
67c2f5ea 746 $refer = "";
747 for ($i=1;$i<count($refs[0]);$i++) {
748 if (!empty($refs[0][$i])) {
749 if (preg_match("/^References:(.+)$/", $refs[0][$i], $regs)) {
750 $refer = trim($regs[1]);
751 }
752 else {
753 $refer .= ' ' . trim($refs[0][$i]);
754 }
755 }
756 }
757 $refer = trim($refer);
758 if (strlen($refer) > 2) {
759 $refer .= ' ' . $inreplyto;
760 }
761 else {
762 if (!empty($old_reply_to)) {
763 $refer .= $old_reply_to . ' ' . $inreplyto;
764 }
765 else {
766 $refer .= $inreplyto;
2044f95a 767 }
67c2f5ea 768 }
769 trim($refer);
67c2f5ea 770 return $refer;
771}
772
a3fbf5a4 773function sendMessage($t, $c, $b, $subject, $body, $reply_id, $MDN,
774 $prio = 3, $session) {
77b88425 775 global $useSendmail, $msg_id, $is_reply, $mailbox, $onetimepad,
a3fbf5a4 776 $data_dir, $username, $domain, $key, $version, $sent_folder,
777 $imapServerAddress, $imapPort, $default_use_priority, $more_headers,
778 $request_mdn, $request_dr;
77b88425 779
e25c2bd3 780 $more_headers = Array();
781
77b88425 782 do_hook('smtp_send');
783
a3fbf5a4 784 $imap_stream = sqimap_login($username, $key, $imapServerAddress,
785 $imapPort, 1);
77b88425 786
e25c2bd3 787 if (isset($reply_id) && $reply_id) {
788 sqimap_mailbox_select ($imap_stream, $mailbox);
789 sqimap_messages_flag ($imap_stream, $reply_id, $reply_id, 'Answered');
77b88425 790
791 /* Insert In-Reply-To and References headers if the
a1e937bb 792 * message-id of the message we reply to is set (longer than "<>")
793 * The References header should really be the old Referenced header
67c2f5ea 794 * with the message ID appended, and now it is (jmunro)
a1e937bb 795 */
41336c5f 796 $sid = sqimap_session_id();
797 $query = "$sid FETCH $reply_id (BODY.PEEK[HEADER.FIELDS (Message-Id In-Reply-To)])\r\n";
798 fputs ($imap_stream, $query);
721a6cac 799 $read = sqimap_read_data($imap_stream, $sid, true, $response, $message);
41336c5f 800 $message_id = '';
801 $in_reply_to = '';
721a6cac 802
803 foreach ($read as $r) {
41336c5f 804 if (preg_match("/^message-id:(.*)/iA", $r, $regs)) {
805 $message_id = trim($regs[1]);
806 }
807 if (preg_match("/^in-reply-to:(.*)/iA", $r, $regs)) {
808 $in_reply_to = trim($regs[1]);
809 }
41336c5f 810 }
721a6cac 811
41336c5f 812 if(strlen($message_id) > 2) {
67c2f5ea 813 $refs = get_reference_header ($imap_stream, $reply_id);
41336c5f 814 $inreplyto = $message_id;
815 $old_reply_to = $in_reply_to;
67c2f5ea 816 $refer = calculate_references ($refs, $inreplyto, $old_reply_to);
817 $more_headers['In-Reply-To'] = $inreplyto;
818 $more_headers['References'] = $refer;
e25c2bd3 819 }
41336c5f 820
e25c2bd3 821 }
822 if ($default_use_priority) {
823 $more_headers = array_merge($more_headers, createPriorityHeaders($prio));
824 }
77b88425 825
604e2c03 826 $requestRecipt = 0;
827 if (isset($request_dr)) {
828 $requestRecipt += 1;
829 }
830 if (isset($request_mdn)) {
831 $requestRecipt += 2;
832 }
833 if ( $requestRecipt > 0) {
834 $more_headers = array_merge($more_headers, createReceiptHeaders($requestRecipt));
835 }
836
a1e937bb 837 /* In order to remove the problem of users not able to create
838 * messages with "." on a blank line, RFC821 has made provision
839 * in section 4.5.2 (Transparency).
840 */
e25c2bd3 841 $body = ereg_replace("\n\\.", "\n..", $body);
842 $body = ereg_replace("^\\.", "..", $body);
77b88425 843
a1e937bb 844 /* this is to catch all plain \n instances and
845 * replace them with \r\n. All newlines were converted
846 * into just \n inside the compose.php file.
a3fbf5a4 847 * But only if delimiter is, in fact, \r\n.
a1e937bb 848 */
604e2c03 849
850 if ($MDN) {
851 $more_headers["Content-Type"] = "multipart/report; ".
852 "report-type=disposition-notification;";
853 }
77b88425 854
e25c2bd3 855 if ($useSendmail) {
a3fbf5a4 856 $length = sendSendmail($t, $c, $b, $subject, $body, $more_headers,
857 $session);
3186c0c0 858 $body = ereg_replace("\n", "\r\n", $body);
e25c2bd3 859 } else {
721a6cac 860 $body = ereg_replace("\n", "\r\n", $body);
a3fbf5a4 861 $length = sendSMTP($t, $c, $b, $subject, $body, $more_headers,
862 $session);
e25c2bd3 863 }
e25c2bd3 864 if (sqimap_mailbox_exists ($imap_stream, $sent_folder)) {
3186c0c0 865 $headerlength = write822Header (FALSE, $t, $c, $b, $subject, $more_headers, $session, "\r\n");
866 $bodylength = writeBody(FALSE, $body, $session, "\r\n");
867 $length = $headerlength + $bodylength;
868
e25c2bd3 869 sqimap_append ($imap_stream, $sent_folder, $length);
a3fbf5a4 870 write822Header ($imap_stream, $t, $c, $b, $subject, $more_headers,
871 $session);
dd7766e0 872 writeBody ($imap_stream, $body, $session);
e25c2bd3 873 sqimap_append_done ($imap_stream);
874 }
875 sqimap_logout($imap_stream);
a1e937bb 876 /* Delete the files uploaded for attaching (if any).
877 * only if $length != 0 (if there was no error)
878 */
77b88425 879 if ($length) {
dd7766e0 880 ClearAttachments($session);
77b88425 881 }
882
e25c2bd3 883 return $length;
884}
d1b8b679 885
e25c2bd3 886function createPriorityHeaders($prio) {
887 $prio_headers = Array();
77b88425 888 $prio_headers['X-Priority'] = $prio;
889
e25c2bd3 890 switch($prio) {
77b88425 891 case 1: $prio_headers['Importance'] = 'High';
892 $prio_headers['X-MSMail-Priority'] = 'High';
e25c2bd3 893 break;
77b88425 894
895 case 3: $prio_headers['Importance'] = 'Normal';
896 $prio_headers['X-MSMail-Priority'] = 'Normal';
e25c2bd3 897 break;
77b88425 898
e25c2bd3 899 case 5:
77b88425 900 $prio_headers['Importance'] = 'Low';
901 $prio_headers['X-MSMail-Priority'] = 'Low';
e25c2bd3 902 break;
903 }
904 return $prio_headers;
905}
020abcf3 906
604e2c03 907function createReceiptHeaders($receipt) {
0804c276 908
a250d021 909 GLOBAL $data_dir, $username, $identity, $popuser, $domain;
0804c276 910
911 $receipt_headers = Array();
7aaa1434 912 if (isset($identity) && $identity != 'default') {
913 $from = getPref($data_dir, $username, 'full_name' . $identity);
914 $from_addr = getPref($data_dir, $username, 'email_address' . $identity);
915 } else {
916 $from = getPref($data_dir, $username, 'full_name');
917 $from_addr = getPref($data_dir, $username, 'email_address');
918 }
919 if ($from_addr == '') {
920 $from_addr = $popuser.'@'.$domain;
921 }
0804c276 922
923 if ($from == '') {
924 $from = "<$from_addr>";
925 }
926 else {
927 $from = '"' . encodeHeader($from) . "\" <$from_addr>";
928 }
929
930 /* On Delivery */
931 if ( $receipt == 1
932 || $receipt == 3 ) {
933 $receipt_headers["Return-Receipt-To"] = $from;
934 }
935 /* On Read */
936 if ($receipt == 2
937 || $receipt == 3 ) {
938 /* Pegasus Mail */
939 $receipt_headers["X-Confirm-Reading-To"] = $from;
940 /* RFC 2298 */
941 $receipt_headers["Disposition-Notification-To"] = $from;
942 }
943 return $receipt_headers;
944}
604e2c03 945
e1225604 946/* Figure out what the 'From:' address is
947 */
948
949function getFrom() {
950 global $username, $popuser, $domain, $data_dir, $identity;
951 if (isset($identity) && $identity != 'default') {
952 $from_addr = getPref($data_dir, $username,
953 'email_address' . $identity);
954 }
955 else {
956 $from_addr = getPref($data_dir, $username, 'email_address');
957 }
958
959 if (!$from_addr) {
960 $from_addr = "$popuser@$domain";
961 }
962 return $from_addr;
963}
964
604e2c03 965
020abcf3 966?>