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