newmail plugin strings
[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
f435778e 10 if (defined('smtp_php'))
11 return;
12 define('smtp_php', true);
13
0fc2aca0 14 require_once('../functions/addressbook.php');
15 require_once('../functions/plugin.php');
f435778e 16
17 global $username, $popuser, $domain;
465db5d7 18
31afdefb 19 // This should most probably go to some initialization...
20 if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
21 $popuser = $usernamedata[1];
22 $domain = $usernamedata[2];
23 unset($usernamedata);
24 } else {
25 $popuser = $username;
26 }
27 // We need domain for smtp
28 if (!$domain)
ec9f1c41 29 $domain = getenv('HOSTNAME');
31afdefb 30
df15de21 31 // Returns true only if this message is multipart
32 function isMultipart () {
4ba45d11 33 global $attachments;
34
35 if (count($attachments)>0)
36 return true;
37 else
38 return false;
df15de21 39 }
40
a4102fd7 41 // looks up aliases in the addressbook and expands them to
42 // the full address.
cb13511f 43 // Adds @$domain if it wasn't in the address book and if it
44 // doesn't have an @ symbol in it
a4102fd7 45 function expandAddrs ($array) {
cb13511f 46 global $domain;
47
44bace96 48 // don't show errors -- kinda critical that we don't see
49 // them here since the redirect won't work if we do show them
50 $abook = addressbook_init(false);
a4102fd7 51 for ($i=0; $i < count($array); $i++) {
52 $result = $abook->lookup($array[$i]);
53 $ret = "";
54 if (isset($result['email'])) {
55 if (isset($result['name'])) {
56 $ret = '"'.$result['name'].'" ';
57 }
58 $ret .= '<'.$result['email'].'>';
59 $array[$i] = $ret;
60 }
18e206dd 61 else
62 {
912c949d 63 if (strpos($array[$i], '@') === false)
64 $array[$i] .= '@' . $domain;
18e206dd 65 $array[$i] = '<' . $array[$i] . '>';
66 }
a4102fd7 67 }
68 return $array;
69 }
70
93555af8 71
72 // looks up aliases in the addressbook and expands them to
73 // the RFC 821 valid RCPT address. ie <user@example.com>
74 // Adds @$domain if it wasn't in the address book and if it
75 // doesn't have an @ symbol in it
76 function expandRcptAddrs ($array) {
77 global $domain;
78
79 // don't show errors -- kinda critical that we don't see
80 // them here since the redirect won't work if we do show them
81 $abook = addressbook_init(false);
82 for ($i=0; $i < count($array); $i++) {
83 $result = $abook->lookup($array[$i]);
84 $ret = "";
85 if (isset($result['email'])) {
86 $ret = '<'.$result['email'].'>';
87 $array[$i] = $ret;
88 }
89 else
90 {
91 if (strpos($array[$i], '@') === false)
92 $array[$i] .= '@' . $domain;
93 $array[$i] = '<' . $array[$i] . '>';
94 }
95 }
96 return $array;
97 }
98
99
df15de21 100 // Attach the files that are due to be attached
4ba45d11 101 function attachFiles ($fp) {
c3c37167 102 global $attachments, $attachment_dir;
4ba45d11 103
7b67334e 104 $length = 0;
105
a7d75834 106 if (isMultipart()) {
f972eb46 107 foreach ($attachments as $info)
108 {
4f601b14 109 if (isset($info['type']))
7d50f13c 110 $filetype = $info['type'];
111 else
ec9f1c41 112 $filetype = 'application/octet-stream';
a7d75834 113
ec9f1c41 114 $header = '--'.mimeBoundary()."\r\n";
f972eb46 115 $header .= "Content-Type: $filetype; name=\"" .
116 $info['remotefilename'] . "\"\r\n";
117 $header .= "Content-Disposition: attachment; filename=\"" .
118 $info['remotefilename'] . "\"\r\n";
a7d75834 119
f61de966 120 // Use 'rb' for NT systems -- read binary
121 // Unix doesn't care -- everything's binary! :-)
122 $file = fopen ($attachment_dir . $info['localfilename'], 'rb');
aaf9abef 123 if (substr($filetype, 0, 5) == 'text/' ||
124 $filetype == 'message/rfc822') {
125 $header .= "\r\n";
126 fputs ($fp, $header);
127 $length += strlen($header);
128 while ($tmp = fgets($file, 4096)) {
129 $tmp = str_replace("\r\n", "\n", $tmp);
130 $tmp = str_replace("\r", "\n", $tmp);
131 $tmp = str_replace("\n", "\r\n", $tmp);
e9eca7fe 132 if (feof($fp) && substr($tmp, -2) != "\r\n")
133 $tmp .= "\r\n";
aaf9abef 134 fputs($fp, $tmp);
135 $length += strlen($tmp);
136 }
137 } else {
138 $header .= "Content-Transfer-Encoding: base64\r\n\r\n";
139 fputs ($fp, $header);
140 $length += strlen($header);
141 while ($tmp = fread($file, 570)) {
142 $encoded = chunk_split(base64_encode($tmp));
143 $length += strlen($encoded);
144 fputs ($fp, $encoded);
145 }
146 }
a7d75834 147 fclose ($file);
7b67334e 148 }
4ba45d11 149 }
7b67334e 150
151 return $length;
df15de21 152 }
153
a7d75834 154 // Delete files that are uploaded for attaching
155 function deleteAttachments() {
156 global $attachments, $attachment_dir;
157
158 if (isMultipart()) {
159 reset($attachments);
160 while (list($localname, $remotename) = each($attachments)) {
161 if (!ereg ("\\/", $localname)) {
162 unlink ($attachment_dir.$localname);
ec9f1c41 163 unlink ($attachment_dir.$localname.'.info');
a7d75834 164 }
165 }
166 }
167 }
168
df15de21 169 // Return a nice MIME-boundary
170 function mimeBoundary () {
7b67334e 171 static $mimeBoundaryString;
df15de21 172
173 if ($mimeBoundaryString == "") {
ed865adf 174 $mimeBoundaryString = "----=_" .
fe53c3b9 175 GenerateRandomString(60, '\'()+,-./:=?_', 7);
465db5d7 176 }
df15de21 177
178 return $mimeBoundaryString;
465db5d7 179 }
180
24397423 181 /* Time offset for correct timezone */
182 function timezone () {
b0d1b51e 183 global $invert_time;
184
ec9f1c41 185 $diff_second = date('Z');
d47b2518 186 if ($invert_time)
187 $diff_second = - $diff_second;
24397423 188 if ($diff_second > 0)
ec9f1c41 189 $sign = '+';
24397423 190 else
ec9f1c41 191 $sign = '-';
24397423 192
193 $diff_second = abs($diff_second);
194
195 $diff_hour = floor ($diff_second / 3600);
196 $diff_minute = floor (($diff_second-3600*$diff_hour) / 60);
197
ec9f1c41 198 $zonename = '('.strftime('%Z').')';
24397423 199 $result = sprintf ("%s%02d%02d %s", $sign, $diff_hour, $diff_minute, $zonename);
200 return ($result);
201 }
202
df15de21 203 /* Print all the needed RFC822 headers */
60994e13 204 function write822Header ($fp, $t, $c, $b, $subject, $more_headers) {
a7d75834 205 global $REMOTE_ADDR, $SERVER_NAME, $REMOTE_PORT;
31afdefb 206 global $data_dir, $username, $popuser, $domain, $version, $useSendmail;
9949206d 207 global $default_charset, $HTTP_VIA, $HTTP_X_FORWARDED_FOR;
aaf9abef 208 global $REMOTE_HOST, $identity;
465db5d7 209
7b67334e 210 // Storing the header to make sure the header is the same
211 // everytime the header is printed.
212 static $header, $headerlength;
213
ec9f1c41 214 if ($header == '') {
a4102fd7 215 $to = expandAddrs(parseAddrs($t));
216 $cc = expandAddrs(parseAddrs($c));
217 $bcc = expandAddrs(parseAddrs($b));
aaf9abef 218 if (isset($identity) && $identity != 'default')
219 {
220 $reply_to = getPref($data_dir, $username, 'reply_to' . $identity);
221 $from = getPref($data_dir, $username, 'full_name' . $identity);
222 $from_addr = getPref($data_dir, $username, 'email_address' . $identity);
223 }
224 else
225 {
226 $reply_to = getPref($data_dir, $username, 'reply_to');
227 $from = getPref($data_dir, $username, 'full_name');
228 $from_addr = getPref($data_dir, $username, 'email_address');
229 }
31afdefb 230
ec9f1c41 231 if ($from_addr == '')
232 $from_addr = $popuser.'@'.$domain;
7b67334e 233
234 $to_list = getLineOfAddrs($to);
235 $cc_list = getLineOfAddrs($cc);
236 $bcc_list = getLineOfAddrs($bcc);
8ae331c2 237
78e230b7 238 /* Encoding 8-bit characters and making from line */
d51894be 239 $subject = encodeHeader($subject);
ec9f1c41 240 if ($from == '')
7b67334e 241 $from = "<$from_addr>";
242 else
ec9f1c41 243 $from = '"' . encodeHeader($from) . "\" <$from_addr>";
7b67334e 244
a7d75834 245 /* This creates an RFC 822 date */
7b67334e 246 $date = date("D, j M Y H:i:s ", mktime()) . timezone();
a7d75834 247
248 /* Create a message-id */
ec9f1c41 249 $message_id = '<' . $REMOTE_PORT . '.' . $REMOTE_ADDR . '.';
250 $message_id .= time() . '.squirrel@' . $SERVER_NAME .'>';
7b67334e 251
252 /* Make an RFC822 Received: line */
a5363806 253 if (isset($REMOTE_HOST))
8a2848f0 254 $received_from = "$REMOTE_HOST ([$REMOTE_ADDR])";
a5363806 255 else
8a2848f0 256 $received_from = $REMOTE_ADDR;
a5363806 257
9949206d 258 if (isset($HTTP_VIA) || isset ($HTTP_X_FORWARDED_FOR)) {
ec9f1c41 259 if ($HTTP_X_FORWARDED_FOR == '')
260 $HTTP_X_FORWARDED_FOR = 'unknown';
9949206d 261 $received_from .= " (proxying for $HTTP_X_FORWARDED_FOR)";
262 }
a5363806 263
8a2848f0 264 $header = "Received: from $received_from\r\n";
265 $header .= " (SquirrelMail authenticated user $username)\r\n";
266 $header .= " by $SERVER_NAME with HTTP;\r\n";
267 $header .= " $date\r\n";
7b67334e 268
a7d75834 269 /* Insert the rest of the header fields */
270 $header .= "Message-ID: $message_id\r\n";
7b67334e 271 $header .= "Date: $date\r\n";
272 $header .= "Subject: $subject\r\n";
273 $header .= "From: $from\r\n";
18e206dd 274 $header .= "To: $to_list\r\n"; // Who it's TO
60994e13 275
276 /* Insert headers from the $more_headers array */
277 if(is_array($more_headers)) {
278 reset($more_headers);
279 while(list($h_name, $h_val) = each($more_headers)) {
280 $header .= sprintf("%s: %s\r\n", $h_name, $h_val);
281 }
282 }
283
7b67334e 284 if ($cc_list) {
285 $header .= "Cc: $cc_list\r\n"; // Who the CCs are
df15de21 286 }
7b67334e 287
ec9f1c41 288 if ($reply_to != '')
7b67334e 289 $header .= "Reply-To: $reply_to\r\n";
290
291 if ($useSendmail) {
292 if ($bcc_list) {
293 // BCCs is removed from header by sendmail
294 $header .= "Bcc: $bcc_list\r\n";
295 }
296 }
297
298 $header .= "X-Mailer: SquirrelMail (version $version)\r\n"; // Identify SquirrelMail
299
300 // Do the MIME-stuff
f8308f16 301 $header .= "MIME-Version: 1.0\r\n";
7b67334e 302
303 if (isMultipart()) {
ec9f1c41 304 $header .= 'Content-Type: multipart/mixed; boundary="';
7b67334e 305 $header .= mimeBoundary();
306 $header .= "\"\r\n";
307 } else {
ec9f1c41 308 if ($default_charset != '')
17ce8467 309 $header .= "Content-Type: text/plain; charset=$default_charset\r\n";
310 else
311 $header .= "Content-Type: text/plain;\r\n";
7b67334e 312 $header .= "Content-Transfer-Encoding: 8bit\r\n";
313 }
314 $header .= "\r\n"; // One blank line to separate header and body
df15de21 315
7b67334e 316 $headerlength = strlen($header);
317 }
318
319 // Write the header
320 fputs ($fp, $header);
df15de21 321
7b67334e 322 return $headerlength;
323 }
df15de21 324
7b67334e 325 // Send the body
326 function writeBody ($fp, $passedBody) {
17ce8467 327 global $default_charset;
328
7b67334e 329 $attachmentlength = 0;
330
df15de21 331 if (isMultipart()) {
ec9f1c41 332 $body = '--'.mimeBoundary()."\r\n";
17ce8467 333
334 if ($default_charset != "")
335 $body .= "Content-Type: text/plain; charset=$default_charset\r\n";
336 else
337 $body .= "Content-Type: text/plain\r\n";
338
7b67334e 339 $body .= "Content-Transfer-Encoding: 8bit\r\n\r\n";
d51894be 340 $body .= $passedBody . "\r\n\r\n";
7b67334e 341 fputs ($fp, $body);
342
6441f7c6 343 $attachmentlength = attachFiles($fp);
7b67334e 344
f8cfeb5c 345 if (!isset($postbody)) $postbody = "";
7b67334e 346 $postbody .= "\r\n--".mimeBoundary()."--\r\n\r\n";
347 fputs ($fp, $postbody);
df15de21 348 } else {
d51894be 349 $body = $passedBody . "\r\n";
7b67334e 350 fputs ($fp, $body);
351 $postbody = "\r\n";
352 fputs ($fp, $postbody);
df15de21 353 }
df15de21 354
7b67334e 355 return (strlen($body) + strlen($postbody) + $attachmentlength);
c99c5b31 356 }
465db5d7 357
c99c5b31 358 // Send mail using the sendmail command
60994e13 359 function sendSendmail($t, $c, $b, $subject, $body, $more_headers) {
31afdefb 360 global $sendmail_path, $popuser, $username, $domain;
7b67334e 361
6ebf8b30 362 // Build envelope sender address. Make sure it doesn't contain
363 // spaces or other "weird" chars that would allow a user to
364 // exploit the shell/pipe it is used in.
31afdefb 365 $envelopefrom = "$popuser@$domain";
ec9f1c41 366 $envelopefrom = ereg_replace("[[:blank:]]",'', $envelopefrom);
367 $envelopefrom = ereg_replace("[[:space:]]",'', $envelopefrom);
368 $envelopefrom = ereg_replace("[[:cntrl:]]",'', $envelopefrom);
6ebf8b30 369
e957cd4a 370 // open pipe to sendmail or qmail-inject (qmail-inject doesn't accept -t param)
371 if (strstr($sendmail_path, "qmail-inject")) {
372 $fp = popen (escapeshellcmd("$sendmail_path -f$envelopefrom"), "w");
373 } else {
374 $fp = popen (escapeshellcmd("$sendmail_path -t -f$envelopefrom"), "w");
375 }
376
60994e13 377 $headerlength = write822Header ($fp, $t, $c, $b, $subject, $more_headers);
7b67334e 378 $bodylength = writeBody($fp, $body);
465db5d7 379
380 pclose($fp);
7b67334e 381
0775b17f 382 return ($headerlength + $bodylength);
465db5d7 383 }
384
b8ea4ed6 385 function smtpReadData($smtpConnection) {
386 $read = fgets($smtpConnection, 1024);
387 $counter = 0;
388 while ($read) {
ec9f1c41 389 echo $read . '<BR>';
b8ea4ed6 390 $data[$counter] = $read;
391 $read = fgets($smtpConnection, 1024);
392 $counter++;
393 }
394 }
395
60994e13 396 function sendSMTP($t, $c, $b, $subject, $body, $more_headers) {
8de3c34d 397 global $username, $popuser, $domain, $version, $smtpServerAddress,
398 $smtpPort, $data_dir, $color, $use_authenticated_smtp, $identity,
399 $key, $onetimepad;
7831268e 400
93555af8 401 $to = expandRcptAddrs(parseAddrs($t));
402 $cc = expandRcptAddrs(parseAddrs($c));
403 $bcc = expandRcptAddrs(parseAddrs($b));
aaf9abef 404 if (isset($identity) && $identity != 'default')
405 $from_addr = getPref($data_dir, $username, 'email_address' . $identity);
406 else
407 $from_addr = getPref($data_dir, $username, 'email_address');
356d7825 408
31afdefb 409 if (!$from_addr)
410 $from_addr = "$popuser@$domain";
d3cdb279 411
c175e2e4 412 $smtpConnection = fsockopen($smtpServerAddress, $smtpPort, $errorNumber, $errorString);
b8ea4ed6 413 if (!$smtpConnection) {
ec9f1c41 414 echo 'Error connecting to SMTP Server.<br>';
b8ea4ed6 415 echo "$errorNumber : $errorString<br>";
416 exit;
417 }
f8a9394d 418 $tmp = fgets($smtpConnection, 1024);
d5f34863 419 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
b8ea4ed6 420
40ee9452 421 $to_list = getLineOfAddrs($to);
422 $cc_list = getLineOfAddrs($cc);
423
424 /** Lets introduce ourselves */
d402e33e 425 if (! isset ($use_authenticated_smtp) || $use_authenticated_smtp == false) {
d2f4c914 426 fputs($smtpConnection, "HELO $domain\r\n");
427 $tmp = fgets($smtpConnection, 1024);
d5f34863 428 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
d2f4c914 429 } else {
430 fputs($smtpConnection, "EHLO $domain\r\n");
431 $tmp = fgets($smtpConnection, 1024);
d5f34863 432 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
d2f4c914 433
434 fputs($smtpConnection, "AUTH LOGIN\r\n");
435 $tmp = fgets($smtpConnection, 1024);
d5f34863 436 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
d2f4c914 437
438 fputs($smtpConnection, base64_encode ($username) . "\r\n");
439 $tmp = fgets($smtpConnection, 1024);
d5f34863 440 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
d2f4c914 441
16cad51a 442 fputs($smtpConnection, base64_encode (OneTimePadDecrypt($key, $onetimepad)) . "\r\n");
d2f4c914 443 $tmp = fgets($smtpConnection, 1024);
d5f34863 444 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
d2f4c914 445 }
7831268e 446
40ee9452 447 /** Ok, who is sending the message? */
f89627f3 448 fputs($smtpConnection, "MAIL FROM: <$from_addr>\r\n");
f8a9394d 449 $tmp = fgets($smtpConnection, 1024);
d5f34863 450 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
b8ea4ed6 451
40ee9452 452 /** send who the recipients are */
453 for ($i = 0; $i < count($to); $i++) {
18e206dd 454 fputs($smtpConnection, "RCPT TO: $to[$i]\r\n");
f8a9394d 455 $tmp = fgets($smtpConnection, 1024);
d5f34863 456 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
40ee9452 457 }
458 for ($i = 0; $i < count($cc); $i++) {
b4338e67 459 fputs($smtpConnection, "RCPT TO: $cc[$i]\r\n");
f8a9394d 460 $tmp = fgets($smtpConnection, 1024);
d5f34863 461 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
40ee9452 462 }
463 for ($i = 0; $i < count($bcc); $i++) {
b4338e67 464 fputs($smtpConnection, "RCPT TO: $bcc[$i]\r\n");
f8a9394d 465 $tmp = fgets($smtpConnection, 1024);
d5f34863 466 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
40ee9452 467 }
b8ea4ed6 468
40ee9452 469 /** Lets start sending the actual message */
3379d740 470 fputs($smtpConnection, "DATA\r\n");
f8a9394d 471 $tmp = fgets($smtpConnection, 1024);
d5f34863 472 if (errorCheck($tmp, $smtpConnection)!=5) return(0);
7831268e 473
7b67334e 474 // Send the message
60994e13 475 $headerlength = write822Header ($smtpConnection, $t, $c, $b, $subject, $more_headers);
7b67334e 476 $bodylength = writeBody($smtpConnection, $body);
7831268e 477
3379d740 478 fputs($smtpConnection, ".\r\n"); // end the DATA part
f8a9394d 479 $tmp = fgets($smtpConnection, 1024);
354eb441 480 $num = errorCheck($tmp, $smtpConnection, true);
3021b626 481 if ($num != 250) {
d5f34863 482 $tmp = nl2br(htmlspecialchars($tmp));
483 displayPageHeader($color, 'None');
0fc2aca0 484 include_once('../functions/display_messages.php');
d5f34863 485 $msg = "Message not sent!<br>\nReason given: $tmp";
486 plain_error_message($msg, $color);
487 return(0);
3021b626 488 }
d3cdb279 489
3379d740 490 fputs($smtpConnection, "QUIT\r\n"); // log off
78509c54 491
492 fclose($smtpConnection);
7b67334e 493
494 return ($headerlength + $bodylength);
b8ea4ed6 495 }
3021b626 496
497
354eb441 498 function errorCheck($line, $smtpConnection, $verbose = false) {
28010579 499 global $color;
776c7431 500
f8a9394d 501 // Read new lines on a multiline response
502 $lines = $line;
503 while(ereg("^[0-9]+-", $line)) {
504 $line = fgets($smtpConnection, 1024);
505 $lines .= $line;
506 }
507
3021b626 508 // Status: 0 = fatal
509 // 5 = ok
510
511 $err_num = substr($line, 0, strpos($line, " "));
512 switch ($err_num) {
ec9f1c41 513 case 500: $message = 'Syntax error; command not recognized';
3021b626 514 $status = 0;
515 break;
ec9f1c41 516 case 501: $message = 'Syntax error in parameters or arguments';
3021b626 517 $status = 0;
518 break;
ec9f1c41 519 case 502: $message = 'Command not implemented';
3021b626 520 $status = 0;
521 break;
ec9f1c41 522 case 503: $message = 'Bad sequence of commands';
3021b626 523 $status = 0;
524 break;
ec9f1c41 525 case 504: $message = 'Command parameter not implemented';
3021b626 526 $status = 0;
527 break;
528
529
ec9f1c41 530 case 211: $message = 'System status, or system help reply';
3021b626 531 $status = 5;
532 break;
ec9f1c41 533 case 214: $message = 'Help message';
3021b626 534 $status = 5;
535 break;
536
537
ec9f1c41 538 case 220: $message = 'Service ready';
3021b626 539 $status = 5;
540 break;
ec9f1c41 541 case 221: $message = 'Service closing transmission channel';
3021b626 542 $status = 5;
543 break;
ec9f1c41 544 case 421: $message = 'Service not available, closing chanel';
3021b626 545 $status = 0;
546 break;
547
d5f34863 548 case 235: return(5); break;
ec9f1c41 549 case 250: $message = 'Requested mail action okay, completed';
3021b626 550 $status = 5;
551 break;
ec9f1c41 552 case 251: $message = 'User not local; will forward';
3021b626 553 $status = 5;
554 break;
d5f34863 555 case 334: return(5); break;
ec9f1c41 556 case 450: $message = 'Requested mail action not taken: mailbox unavailable';
3021b626 557 $status = 0;
558 break;
ec9f1c41 559 case 550: $message = 'Requested action not taken: mailbox unavailable';
3021b626 560 $status = 0;
561 break;
ec9f1c41 562 case 451: $message = 'Requested action aborted: error in processing';
3021b626 563 $status = 0;
564 break;
ec9f1c41 565 case 551: $message = 'User not local; please try forwarding';
3021b626 566 $status = 0;
567 break;
ec9f1c41 568 case 452: $message = 'Requested action not taken: insufficient system storage';
3021b626 569 $status = 0;
570 break;
ec9f1c41 571 case 552: $message = 'Requested mail action aborted: exceeding storage allocation';
3021b626 572 $status = 0;
573 break;
ec9f1c41 574 case 553: $message = 'Requested action not taken: mailbox name not allowed';
3021b626 575 $status = 0;
576 break;
ec9f1c41 577 case 354: $message = 'Start mail input; end with .';
3021b626 578 $status = 5;
579 break;
ec9f1c41 580 case 554: $message = 'Transaction failed';
3021b626 581 $status = 0;
582 break;
434666c7 583 default: $message = 'Unknown response: '. nl2br(htmlspecialchars($lines));
3021b626 584 $status = 0;
ec9f1c41 585 $error_num = '001';
3021b626 586 break;
587 }
588
589 if ($status == 0) {
0fc2aca0 590 include_once('../functions/page_header.php');
ec9f1c41 591 displayPageHeader($color, 'None');
0fc2aca0 592 include_once('../functions/display_messages.php');
f8a9394d 593 $lines = nl2br(htmlspecialchars($lines));
d5f34863 594 $msg = $message . "<br>\nServer replied: $lines";
595 plain_error_message($msg, $color);
3021b626 596 }
354eb441 597 if (! $verbose) return $status;
3021b626 598 return $err_num;
599 }
df15de21 600
020abcf3 601 function sendMessage($t, $c, $b, $subject, $body, $reply_id, $prio = 3) {
d2f4c914 602 global $useSendmail, $msg_id, $is_reply, $mailbox, $onetimepad;
6441f7c6 603 global $data_dir, $username, $domain, $key, $version, $sent_folder, $imapServerAddress, $imapPort;
020abcf3 604 global $default_use_priority;
8fa48477 605 global $more_headers;
60994e13 606 $more_headers = Array();
d1b8b679 607
8fa48477 608 do_hook("smtp_send");
609
966286ae 610 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 1);
60994e13 611
214e1343 612 if (isset($reply_id) && $reply_id) {
966286ae 613 sqimap_mailbox_select ($imap_stream, $mailbox);
ec9f1c41 614 sqimap_messages_flag ($imap_stream, $reply_id, $reply_id, 'Answered');
60994e13 615
c95df380 616 // Insert In-Reply-To and References headers if the
617 // message-id of the message we reply to is set (longer than "<>")
618 // The References header should really be the old Referenced header
619 // with the message ID appended, but it can be only the message ID too.
620 $hdr = sqimap_get_small_header ($imap_stream, $reply_id, false);
621 if(strlen($hdr->message_id) > 2) {
ec9f1c41 622 $more_headers['In-Reply-To'] = $hdr->message_id;
623 $more_headers['References'] = $hdr->message_id;
c95df380 624 }
966286ae 625 }
020abcf3 626 if ($default_use_priority) {
627 $more_headers = array_merge($more_headers, createPriorityHeaders($prio));
628 }
8ae331c2 629
af8eba43 630 // In order to remove the problem of users not able to create
eedcdd97 631 // messages with "." on a blank line, RFC821 has made provision
632 // in section 4.5.2 (Transparency).
633 $body = ereg_replace("\n\\.", "\n..", $body);
634 $body = ereg_replace("^\\.", "..", $body);
af8eba43 635
8ae331c2 636 // this is to catch all plain \n instances and
eedcdd97 637 // replace them with \r\n. All newlines were converted
638 // into just \n inside the compose.php file.
8ae331c2 639 $body = ereg_replace("\n", "\r\n", $body);
3a8c414d 640
8ae331c2 641 if ($useSendmail) {
60994e13 642 $length = sendSendmail($t, $c, $b, $subject, $body, $more_headers);
df15de21 643 } else {
60994e13 644 $length = sendSMTP($t, $c, $b, $subject, $body, $more_headers);
df15de21 645 }
d1b8b679 646
2966f172 647 if (sqimap_mailbox_exists ($imap_stream, $sent_folder)) {
648 sqimap_append ($imap_stream, $sent_folder, $length);
60994e13 649 write822Header ($imap_stream, $t, $c, $b, $subject, $more_headers);
8ae331c2 650 writeBody ($imap_stream, $body);
2966f172 651 sqimap_append_done ($imap_stream);
8ae331c2 652 }
653 sqimap_logout($imap_stream);
a7d75834 654 // Delete the files uploaded for attaching (if any).
f95d9e7b 655 // only if $length != 0 (if there was no error)
656 if ($length)
657 ClearAttachments();
658
659 return $length;
df15de21 660 }
020abcf3 661
662 function createPriorityHeaders($prio) {
663 $prio_headers = Array();
664 $prio_headers["X-Priority"] = $prio;
665
666 switch($prio) {
667 case 1: $prio_headers["Importance"] = "High";
668 $prio_headers["X-MSMail-Priority"] = "High";
669 break;
670
671 case 3: $prio_headers["Importance"] = "Normal";
672 $prio_headers["X-MSMail-Priority"] = "Normal";
673 break;
674
675 case 5:
676 $prio_headers["Importance"] = "Low";
677 $prio_headers["X-MSMail-Priority"] = "Low";
678 break;
679 }
680 return $prio_headers;
681 }
682?>