Tylerisation
[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 */
e25c2bd3 35function isMultipart () {
36 global $attachments;
37
a1e937bb 38 if (count($attachments)>0) {
e25c2bd3 39 return true;
a1e937bb 40 }
41 else {
e25c2bd3 42 return false;
a1e937bb 43 }
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 */
e25c2bd3 58 $abook = addressbook_init(false);
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 */
e25c2bd3 92 $abook = addressbook_init(false);
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 */
e25c2bd3 113function attachFiles ($fp) {
114 global $attachments, $attachment_dir, $username;
77b88425 115
e25c2bd3 116 $length = 0;
77b88425 117
e25c2bd3 118 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
119 if (isMultipart()) {
120 foreach ($attachments as $info) {
a1e937bb 121 if (isset($info['type'])) {
e25c2bd3 122 $filetype = $info['type'];
a1e937bb 123 }
124 else {
e25c2bd3 125 $filetype = 'application/octet-stream';
a1e937bb 126 }
77b88425 127
128 $header = '--' . mimeBoundary() . "\r\n";
129 if ( isset($info['remotefilename']) && $info['remotefilename'] != '') {
130 $header .= "Content-Type: $filetype; name=\"" .
131 $info['remotefilename'] . "\"\r\n";
132 $header .= "Content-Disposition: attachment; filename=\"" .
133 $info['remotefilename'] . "\"\r\n";
134 } else {
135 $header .= "Content-Type: $filetype;\r\n";
136 }
137
138
139 /* Use 'rb' for NT systems -- read binary
140 * Unix doesn't care -- everything's binary! :-)
a1e937bb 141 */
77b88425 142
3392dc86 143 $filename = $hashed_attachment_dir . '/' . $info['localfilename'];
144 $file = fopen ($filename, 'rb');
e25c2bd3 145 if (substr($filetype, 0, 5) == 'text/' ||
604e2c03 146 substr($filetype, 0, 8) == 'message/' ) {
e25c2bd3 147 $header .= "\r\n";
148 fputs ($fp, $header);
149 $length += strlen($header);
150 while ($tmp = fgets($file, 4096)) {
151 $tmp = str_replace("\r\n", "\n", $tmp);
152 $tmp = str_replace("\r", "\n", $tmp);
153 $tmp = str_replace("\n", "\r\n", $tmp);
a1e937bb 154 if (feof($fp) && substr($tmp, -2) != "\r\n") {
e25c2bd3 155 $tmp .= "\r\n";
a1e937bb 156 }
e25c2bd3 157 fputs($fp, $tmp);
158 $length += strlen($tmp);
159 }
160 } else {
161 $header .= "Content-Transfer-Encoding: base64\r\n\r\n";
162 fputs ($fp, $header);
163 $length += strlen($header);
164 while ($tmp = fread($file, 570)) {
165 $encoded = chunk_split(base64_encode($tmp));
166 $length += strlen($encoded);
167 fputs ($fp, $encoded);
168 }
169 }
a7d75834 170 fclose ($file);
e25c2bd3 171 }
172 }
173 return $length;
174}
175
a1e937bb 176/* Delete files that are uploaded for attaching
177 */
e25c2bd3 178function deleteAttachments() {
179 global $attachments, $attachment_dir;
180
181 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
182 if (isMultipart()) {
183 reset($attachments);
184 while (list($localname, $remotename) = each($attachments)) {
a7d75834 185 if (!ereg ("\\/", $localname)) {
e25c2bd3 186 $filename = $hashed_attachment_dir . '/' . $localname;
187 unlink ($filename);
188 unlink ("$filename.info");
a7d75834 189 }
e25c2bd3 190 }
191 }
192}
a7d75834 193
a1e937bb 194/* Return a nice MIME-boundary
195 */
e25c2bd3 196function mimeBoundary () {
197 static $mimeBoundaryString;
77b88425 198
199 if ( !isset( $mimeBoundaryString ) ||
200 $mimeBoundaryString == '') {
201 $mimeBoundaryString = '----=_' . date( 'YmdHis' ) . '_' .
202 mt_rand( 10000, 99999 );
e25c2bd3 203 }
77b88425 204
e25c2bd3 205 return $mimeBoundaryString;
206}
7b67334e 207
e25c2bd3 208/* Time offset for correct timezone */
209function timezone () {
210 global $invert_time;
211
212 $diff_second = date('Z');
a1e937bb 213 if ($invert_time) {
e25c2bd3 214 $diff_second = - $diff_second;
a1e937bb 215 }
216 if ($diff_second > 0) {
e25c2bd3 217 $sign = '+';
a1e937bb 218 }
219 else {
e25c2bd3 220 $sign = '-';
a1e937bb 221 }
222
e25c2bd3 223 $diff_second = abs($diff_second);
224
225 $diff_hour = floor ($diff_second / 3600);
226 $diff_minute = floor (($diff_second-3600*$diff_hour) / 60);
227
228 $zonename = '('.strftime('%Z').')';
229 $result = sprintf ("%s%02d%02d %s", $sign, $diff_hour, $diff_minute, $zonename);
230 return ($result);
231}
232
233/* Print all the needed RFC822 headers */
604e2c03 234function write822Header ($fp, $t, $c, $b, $subject, $more_headers) {
e25c2bd3 235 global $REMOTE_ADDR, $SERVER_NAME, $REMOTE_PORT;
236 global $data_dir, $username, $popuser, $domain, $version, $useSendmail;
237 global $default_charset, $HTTP_VIA, $HTTP_X_FORWARDED_FOR;
238 global $REMOTE_HOST, $identity;
239
a1e937bb 240 /* Storing the header to make sure the header is the same
241 * everytime the header is printed.
242 */
e25c2bd3 243 static $header, $headerlength;
244
245 if ($header == '') {
246 $to = expandAddrs(parseAddrs($t));
247 $cc = expandAddrs(parseAddrs($c));
248 $bcc = expandAddrs(parseAddrs($b));
249 if (isset($identity) && $identity != 'default') {
250 $reply_to = getPref($data_dir, $username, 'reply_to' . $identity);
251 $from = getPref($data_dir, $username, 'full_name' . $identity);
252 $from_addr = getPref($data_dir, $username, 'email_address' . $identity);
253 } else {
aaf9abef 254 $reply_to = getPref($data_dir, $username, 'reply_to');
255 $from = getPref($data_dir, $username, 'full_name');
256 $from_addr = getPref($data_dir, $username, 'email_address');
e25c2bd3 257 }
258
a1e937bb 259 if ($from_addr == '') {
ec9f1c41 260 $from_addr = $popuser.'@'.$domain;
a1e937bb 261 }
e25c2bd3 262
263 $to_list = getLineOfAddrs($to);
264 $cc_list = getLineOfAddrs($cc);
265 $bcc_list = getLineOfAddrs($bcc);
266
267 /* Encoding 8-bit characters and making from line */
268 $subject = encodeHeader($subject);
a1e937bb 269 if ($from == '') {
7b67334e 270 $from = "<$from_addr>";
a1e937bb 271 }
272 else {
ec9f1c41 273 $from = '"' . encodeHeader($from) . "\" <$from_addr>";
a1e937bb 274 }
e25c2bd3 275
276 /* This creates an RFC 822 date */
277 $date = date("D, j M Y H:i:s ", mktime()) . timezone();
278
279 /* Create a message-id */
280 $message_id = '<' . $REMOTE_PORT . '.' . $REMOTE_ADDR . '.';
281 $message_id .= time() . '.squirrel@' . $SERVER_NAME .'>';
282
283 /* Make an RFC822 Received: line */
a1e937bb 284 if (isset($REMOTE_HOST)) {
8a2848f0 285 $received_from = "$REMOTE_HOST ([$REMOTE_ADDR])";
a1e937bb 286 }
287 else {
8a2848f0 288 $received_from = $REMOTE_ADDR;
a1e937bb 289 }
77b88425 290
e25c2bd3 291 if (isset($HTTP_VIA) || isset ($HTTP_X_FORWARDED_FOR)) {
a1e937bb 292 if ($HTTP_X_FORWARDED_FOR == '') {
e25c2bd3 293 $HTTP_X_FORWARDED_FOR = 'unknown';
a1e937bb 294 }
9949206d 295 $received_from .= " (proxying for $HTTP_X_FORWARDED_FOR)";
e25c2bd3 296 }
297
fcb2237d 298 $header = "Received: from $received_from\r\n";
299 $header .= " (SquirrelMail authenticated user $username)\r\n";
300 $header .= " by $SERVER_NAME with HTTP;\r\n";
e25c2bd3 301 $header .= " $date\r\n";
302
303 /* Insert the rest of the header fields */
304 $header .= "Message-ID: $message_id\r\n";
305 $header .= "Date: $date\r\n";
306 $header .= "Subject: $subject\r\n";
307 $header .= "From: $from\r\n";
308 $header .= "To: $to_list\r\n"; // Who it's TO
309
604e2c03 310 if (isset($more_headers["Content-Type"])) {
311 $contentType = $more_headers["Content-Type"];
312 unset($more_headers["Content-Type"]);
313 }
314 else {
315 if (isMultipart()) {
316 $contentType = "multipart/mixed;";
317 }
318 else {
319 if ($default_charset != '') {
320 $contentType = 'text/plain; charset='.$default_charset;
321 }
322 else {
323 $contentType = 'text/plain;';
324 }
325 }
77b88425 326 }
604e2c03 327
328 /* Insert headers from the $more_headers array */
329 if(is_array($more_headers)) {
e25c2bd3 330 reset($more_headers);
331 while(list($h_name, $h_val) = each($more_headers)) {
332 $header .= sprintf("%s: %s\r\n", $h_name, $h_val);
333 }
334 }
335
336 if ($cc_list) {
7b67334e 337 $header .= "Cc: $cc_list\r\n"; // Who the CCs are
e25c2bd3 338 }
339
a1e937bb 340 if ($reply_to != '') {
7b67334e 341 $header .= "Reply-To: $reply_to\r\n";
a1e937bb 342 }
e25c2bd3 343
344 if ($useSendmail) {
7b67334e 345 if ($bcc_list) {
e25c2bd3 346 // BCCs is removed from header by sendmail
347 $header .= "Bcc: $bcc_list\r\n";
7b67334e 348 }
e25c2bd3 349 }
350
a1e937bb 351 $header .= "X-Mailer: SquirrelMail (version $version)\r\n"; /* Identify SquirrelMail */
77b88425 352
a1e937bb 353 /* Do the MIME-stuff */
e25c2bd3 354 $header .= "MIME-Version: 1.0\r\n";
355
356 if (isMultipart()) {
604e2c03 357 $header .= 'Content-Type: '.$contentType.' boundary="';
358 $header .= mimeBoundary();
359 $header .= "\"\r\n";
e25c2bd3 360 } else {
604e2c03 361 $header .= 'Content-Type: '.$contentType."\r\n";
7b67334e 362 $header .= "Content-Transfer-Encoding: 8bit\r\n";
e25c2bd3 363 }
364 $header .= "\r\n"; // One blank line to separate header and body
365
366 $headerlength = strlen($header);
367 }
368
a1e937bb 369 /* Write the header */
e25c2bd3 370 fputs ($fp, $header);
371
372 return $headerlength;
373}
17ce8467 374
a1e937bb 375/* Send the body
376 */
e25c2bd3 377function writeBody ($fp, $passedBody) {
378 global $default_charset;
379
380 $attachmentlength = 0;
381
382 if (isMultipart()) {
383 $body = '--'.mimeBoundary()."\r\n";
384
a1e937bb 385 if ($default_charset != "") {
17ce8467 386 $body .= "Content-Type: text/plain; charset=$default_charset\r\n";
a1e937bb 387 }
388 else {
17ce8467 389 $body .= "Content-Type: text/plain\r\n";
a1e937bb 390 }
e25c2bd3 391
392 $body .= "Content-Transfer-Encoding: 8bit\r\n\r\n";
393 $body .= $passedBody . "\r\n\r\n";
394 fputs ($fp, $body);
395
396 $attachmentlength = attachFiles($fp);
397
a1e937bb 398 if (!isset($postbody)) {
399 $postbody = "";
400 }
e25c2bd3 401 $postbody .= "\r\n--".mimeBoundary()."--\r\n\r\n";
402 fputs ($fp, $postbody);
403 } else {
404 $body = $passedBody . "\r\n";
405 fputs ($fp, $body);
406 $postbody = "\r\n";
407 fputs ($fp, $postbody);
408 }
409
410 return (strlen($body) + strlen($postbody) + $attachmentlength);
411}
17ce8467 412
a1e937bb 413/* Send mail using the sendmail command
414 */
604e2c03 415function sendSendmail($t, $c, $b, $subject, $body, $more_headers) {
e25c2bd3 416 global $sendmail_path, $popuser, $username, $domain;
417
a1e937bb 418 /* Build envelope sender address. Make sure it doesn't contain
419 * spaces or other "weird" chars that would allow a user to
420 * exploit the shell/pipe it is used in.
421 */
e25c2bd3 422 $envelopefrom = "$popuser@$domain";
423 $envelopefrom = ereg_replace("[[:blank:]]",'', $envelopefrom);
424 $envelopefrom = ereg_replace("[[:space:]]",'', $envelopefrom);
425 $envelopefrom = ereg_replace("[[:cntrl:]]",'', $envelopefrom);
426
a1e937bb 427 /* open pipe to sendmail or qmail-inject (qmail-inject doesn't accept -t param) */
e25c2bd3 428 if (strstr($sendmail_path, "qmail-inject")) {
429 $fp = popen (escapeshellcmd("$sendmail_path -f$envelopefrom"), "w");
430 } else {
431 $fp = popen (escapeshellcmd("$sendmail_path -t -f$envelopefrom"), "w");
432 }
433
604e2c03 434 $headerlength = write822Header ($fp, $t, $c, $b, $subject, $more_headers);
e25c2bd3 435 $bodylength = writeBody($fp, $body);
436
437 pclose($fp);
438
439 return ($headerlength + $bodylength);
440}
441
442function smtpReadData($smtpConnection) {
443 $read = fgets($smtpConnection, 1024);
444 $counter = 0;
445 while ($read) {
446 echo $read . '<BR>';
447 $data[$counter] = $read;
448 $read = fgets($smtpConnection, 1024);
449 $counter++;
450 }
451}
452
604e2c03 453function sendSMTP($t, $c, $b, $subject, $body, $more_headers) {
e25c2bd3 454 global $username, $popuser, $domain, $version, $smtpServerAddress,
455 $smtpPort, $data_dir, $color, $use_authenticated_smtp, $identity,
456 $key, $onetimepad;
457
458 $to = expandRcptAddrs(parseAddrs($t));
459 $cc = expandRcptAddrs(parseAddrs($c));
460 $bcc = expandRcptAddrs(parseAddrs($b));
a1e937bb 461 if (isset($identity) && $identity != 'default') {
e25c2bd3 462 $from_addr = getPref($data_dir, $username, 'email_address' . $identity);
a1e937bb 463 }
464 else {
e25c2bd3 465 $from_addr = getPref($data_dir, $username, 'email_address');
a1e937bb 466 }
e25c2bd3 467
a1e937bb 468 if (!$from_addr) {
e25c2bd3 469 $from_addr = "$popuser@$domain";
a1e937bb 470 }
e25c2bd3 471
472 $smtpConnection = fsockopen($smtpServerAddress, $smtpPort, $errorNumber, $errorString);
473 if (!$smtpConnection) {
474 echo 'Error connecting to SMTP Server.<br>';
475 echo "$errorNumber : $errorString<br>";
476 exit;
477 }
478 $tmp = fgets($smtpConnection, 1024);
14c62c12 479 if (errorCheck($tmp, $smtpConnection)!=5) {
480 return(0);
481 }
e25c2bd3 482
483 $to_list = getLineOfAddrs($to);
484 $cc_list = getLineOfAddrs($cc);
485
a1e937bb 486 /* Lets introduce ourselves */
e25c2bd3 487 if (! isset ($use_authenticated_smtp) || $use_authenticated_smtp == false) {
488 fputs($smtpConnection, "HELO $domain\r\n");
489 $tmp = fgets($smtpConnection, 1024);
490 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
491 } else {
492 fputs($smtpConnection, "EHLO $domain\r\n");
493 $tmp = fgets($smtpConnection, 1024);
494 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
495
496 fputs($smtpConnection, "AUTH LOGIN\r\n");
497 $tmp = fgets($smtpConnection, 1024);
a1e937bb 498 if (errorCheck($tmp, $smtpConnection)!=5) {
499 return(0);
500 }
77b88425 501
e25c2bd3 502 fputs($smtpConnection, base64_encode ($username) . "\r\n");
503 $tmp = fgets($smtpConnection, 1024);
a1e937bb 504 if (errorCheck($tmp, $smtpConnection)!=5) {
505 return(0);
506 }
e25c2bd3 507
508 fputs($smtpConnection, base64_encode (OneTimePadDecrypt($key, $onetimepad)) . "\r\n");
509 $tmp = fgets($smtpConnection, 1024);
a1e937bb 510 if (errorCheck($tmp, $smtpConnection)!=5) {
511 return(0);
512 }
e25c2bd3 513 }
514
a1e937bb 515 /* Ok, who is sending the message? */
e25c2bd3 516 fputs($smtpConnection, "MAIL FROM: <$from_addr>\r\n");
517 $tmp = fgets($smtpConnection, 1024);
a1e937bb 518 if (errorCheck($tmp, $smtpConnection)!=5) {
519 return(0);
520 }
e25c2bd3 521
a1e937bb 522 /* send who the recipients are */
e25c2bd3 523 for ($i = 0; $i < count($to); $i++) {
524 fputs($smtpConnection, "RCPT TO: $to[$i]\r\n");
525 $tmp = fgets($smtpConnection, 1024);
a1e937bb 526 if (errorCheck($tmp, $smtpConnection)!=5) {
527 return(0);
528 }
e25c2bd3 529 }
530 for ($i = 0; $i < count($cc); $i++) {
531 fputs($smtpConnection, "RCPT TO: $cc[$i]\r\n");
532 $tmp = fgets($smtpConnection, 1024);
a1e937bb 533 if (errorCheck($tmp, $smtpConnection)!=5) {
534 return(0);
535 }
e25c2bd3 536 }
537 for ($i = 0; $i < count($bcc); $i++) {
538 fputs($smtpConnection, "RCPT TO: $bcc[$i]\r\n");
539 $tmp = fgets($smtpConnection, 1024);
77b88425 540 if (errorCheck($tmp, $smtpConnection)!=5) {
a1e937bb 541 return(0);
542 }
e25c2bd3 543 }
77b88425 544
a1e937bb 545 /* Lets start sending the actual message */
e25c2bd3 546 fputs($smtpConnection, "DATA\r\n");
547 $tmp = fgets($smtpConnection, 1024);
a1e937bb 548 if (errorCheck($tmp, $smtpConnection)!=5) {
549 return(0);
550 }
77b88425 551
a1e937bb 552 /* Send the message */
604e2c03 553 $headerlength = write822Header ($smtpConnection, $t, $c, $b, $subject, $more_headers);
e25c2bd3 554 $bodylength = writeBody($smtpConnection, $body);
555
a1e937bb 556 fputs($smtpConnection, ".\r\n"); /* end the DATA part */
e25c2bd3 557 $tmp = fgets($smtpConnection, 1024);
558 $num = errorCheck($tmp, $smtpConnection, true);
559 if ($num != 250) {
560 $tmp = nl2br(htmlspecialchars($tmp));
561 displayPageHeader($color, 'None');
562 include_once('../functions/display_messages.php');
563 $msg = "Message not sent!<br>\nReason given: $tmp";
564 plain_error_message($msg, $color);
565 return(0);
566 }
567
a1e937bb 568 fputs($smtpConnection, "QUIT\r\n"); /* log off */
e25c2bd3 569
570 fclose($smtpConnection);
571
572 return ($headerlength + $bodylength);
573}
60994e13 574
60994e13 575
e25c2bd3 576function errorCheck($line, $smtpConnection, $verbose = false) {
577 global $color;
578
a1e937bb 579 /* Read new lines on a multiline response */
e25c2bd3 580 $lines = $line;
581 while(ereg("^[0-9]+-", $line)) {
582 $line = fgets($smtpConnection, 1024);
583 $lines .= $line;
584 }
585
a1e937bb 586 /* Status: 0 = fatal
587 * 5 = ok
588 */
e25c2bd3 589 $err_num = substr($line, 0, strpos($line, " "));
590 switch ($err_num) {
591 case 500: $message = 'Syntax error; command not recognized';
592 $status = 0;
593 break;
594 case 501: $message = 'Syntax error in parameters or arguments';
595 $status = 0;
596 break;
597 case 502: $message = 'Command not implemented';
598 $status = 0;
599 break;
600 case 503: $message = 'Bad sequence of commands';
601 $status = 0;
602 break;
603 case 504: $message = 'Command parameter not implemented';
604 $status = 0;
a1e937bb 605 break;
e25c2bd3 606
607 case 211: $message = 'System status, or system help reply';
608 $status = 5;
609 break;
610 case 214: $message = 'Help message';
611 $status = 5;
612 break;
613
e25c2bd3 614 case 220: $message = 'Service ready';
615 $status = 5;
616 break;
617 case 221: $message = 'Service closing transmission channel';
618 $status = 5;
619 break;
a1e937bb 620
e25c2bd3 621 case 421: $message = 'Service not available, closing chanel';
622 $status = 0;
623 break;
624
a1e937bb 625 case 235: return(5);
626 break;
e25c2bd3 627 case 250: $message = 'Requested mail action okay, completed';
628 $status = 5;
629 break;
630 case 251: $message = 'User not local; will forward';
631 $status = 5;
632 break;
633 case 334: return(5); break;
634 case 450: $message = 'Requested mail action not taken: mailbox unavailable';
635 $status = 0;
636 break;
637 case 550: $message = 'Requested action not taken: mailbox unavailable';
638 $status = 0;
639 break;
640 case 451: $message = 'Requested action aborted: error in processing';
641 $status = 0;
642 break;
643 case 551: $message = 'User not local; please try forwarding';
644 $status = 0;
645 break;
646 case 452: $message = 'Requested action not taken: insufficient system storage';
647 $status = 0;
648 break;
649 case 552: $message = 'Requested mail action aborted: exceeding storage allocation';
650 $status = 0;
651 break;
652 case 553: $message = 'Requested action not taken: mailbox name not allowed';
653 $status = 0;
654 break;
655 case 354: $message = 'Start mail input; end with .';
656 $status = 5;
657 break;
658 case 554: $message = 'Transaction failed';
659 $status = 0;
660 break;
661 default: $message = 'Unknown response: '. nl2br(htmlspecialchars($lines));
662 $status = 0;
663 $error_num = '001';
664 break;
665 }
666
667 if ($status == 0) {
668 include_once('../functions/page_header.php');
669 displayPageHeader($color, 'None');
670 include_once('../functions/display_messages.php');
671 $lines = nl2br(htmlspecialchars($lines));
672 $msg = $message . "<br>\nServer replied: $lines";
673 plain_error_message($msg, $color);
674 }
675 if (! $verbose) return $status;
676 return $err_num;
677}
678
77b88425 679function sendMessage($t, $c, $b, $subject, $body, $reply_id, $MDN, $prio = 3) {
680 global $useSendmail, $msg_id, $is_reply, $mailbox, $onetimepad,
604e2c03 681 $data_dir, $username, $domain, $key, $version, $sent_folder, $imapServerAddress,
682 $imapPort, $default_use_priority, $more_headers, $request_mdn, $request_dr;
77b88425 683
e25c2bd3 684 $more_headers = Array();
685
77b88425 686 do_hook('smtp_send');
687
e25c2bd3 688 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 1);
77b88425 689
e25c2bd3 690 if (isset($reply_id) && $reply_id) {
691 sqimap_mailbox_select ($imap_stream, $mailbox);
692 sqimap_messages_flag ($imap_stream, $reply_id, $reply_id, 'Answered');
77b88425 693
694 /* Insert In-Reply-To and References headers if the
a1e937bb 695 * message-id of the message we reply to is set (longer than "<>")
696 * The References header should really be the old Referenced header
697 * with the message ID appended, but it can be only the message ID too.
698 */
e25c2bd3 699 $hdr = sqimap_get_small_header ($imap_stream, $reply_id, false);
700 if(strlen($hdr->message_id) > 2) {
ec9f1c41 701 $more_headers['In-Reply-To'] = $hdr->message_id;
702 $more_headers['References'] = $hdr->message_id;
e25c2bd3 703 }
704 }
705 if ($default_use_priority) {
706 $more_headers = array_merge($more_headers, createPriorityHeaders($prio));
707 }
77b88425 708
604e2c03 709 $requestRecipt = 0;
710 if (isset($request_dr)) {
711 $requestRecipt += 1;
712 }
713 if (isset($request_mdn)) {
714 $requestRecipt += 2;
715 }
716 if ( $requestRecipt > 0) {
717 $more_headers = array_merge($more_headers, createReceiptHeaders($requestRecipt));
718 }
719
a1e937bb 720 /* In order to remove the problem of users not able to create
721 * messages with "." on a blank line, RFC821 has made provision
722 * in section 4.5.2 (Transparency).
723 */
e25c2bd3 724 $body = ereg_replace("\n\\.", "\n..", $body);
725 $body = ereg_replace("^\\.", "..", $body);
77b88425 726
a1e937bb 727 /* this is to catch all plain \n instances and
728 * replace them with \r\n. All newlines were converted
729 * into just \n inside the compose.php file.
730 */
e25c2bd3 731 $body = ereg_replace("\n", "\r\n", $body);
604e2c03 732
733 if ($MDN) {
734 $more_headers["Content-Type"] = "multipart/report; ".
735 "report-type=disposition-notification;";
736 }
77b88425 737
e25c2bd3 738 if ($useSendmail) {
604e2c03 739 $length = sendSendmail($t, $c, $b, $subject, $body, $more_headers);
e25c2bd3 740 } else {
604e2c03 741 $length = sendSMTP($t, $c, $b, $subject, $body, $more_headers);
e25c2bd3 742 }
e25c2bd3 743 if (sqimap_mailbox_exists ($imap_stream, $sent_folder)) {
744 sqimap_append ($imap_stream, $sent_folder, $length);
604e2c03 745 write822Header ($imap_stream, $t, $c, $b, $subject, $more_headers);
e25c2bd3 746 writeBody ($imap_stream, $body);
747 sqimap_append_done ($imap_stream);
748 }
749 sqimap_logout($imap_stream);
a1e937bb 750 /* Delete the files uploaded for attaching (if any).
751 * only if $length != 0 (if there was no error)
752 */
77b88425 753 if ($length) {
e25c2bd3 754 ClearAttachments();
77b88425 755 }
756
e25c2bd3 757 return $length;
758}
d1b8b679 759
e25c2bd3 760function createPriorityHeaders($prio) {
761 $prio_headers = Array();
77b88425 762 $prio_headers['X-Priority'] = $prio;
763
e25c2bd3 764 switch($prio) {
77b88425 765 case 1: $prio_headers['Importance'] = 'High';
766 $prio_headers['X-MSMail-Priority'] = 'High';
e25c2bd3 767 break;
77b88425 768
769 case 3: $prio_headers['Importance'] = 'Normal';
770 $prio_headers['X-MSMail-Priority'] = 'Normal';
e25c2bd3 771 break;
77b88425 772
e25c2bd3 773 case 5:
77b88425 774 $prio_headers['Importance'] = 'Low';
775 $prio_headers['X-MSMail-Priority'] = 'Low';
e25c2bd3 776 break;
777 }
778 return $prio_headers;
779}
020abcf3 780
604e2c03 781function createReceiptHeaders($receipt) {
0804c276 782
783 GLOBAL $data_dir, $username;
784
785 $receipt_headers = Array();
786 $from_addr = getPref($data_dir, $username, 'email_address');
787 $from = getPref($data_dir, $username, 'full_name');
788
789 if ($from == '') {
790 $from = "<$from_addr>";
791 }
792 else {
793 $from = '"' . encodeHeader($from) . "\" <$from_addr>";
794 }
795
796 /* On Delivery */
797 if ( $receipt == 1
798 || $receipt == 3 ) {
799 $receipt_headers["Return-Receipt-To"] = $from;
800 }
801 /* On Read */
802 if ($receipt == 2
803 || $receipt == 3 ) {
804 /* Pegasus Mail */
805 $receipt_headers["X-Confirm-Reading-To"] = $from;
806 /* RFC 2298 */
807 $receipt_headers["Disposition-Notification-To"] = $from;
808 }
809 return $receipt_headers;
810}
604e2c03 811
812
020abcf3 813?>