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