Linefeed not allowed in middle of Content-Type header
[squirrelmail.git] / class / deliver / Deliver.class.php
CommitLineData
4960ec8e 1<?php
69298c28 2/**
3 * Deliver.class.php
4 *
6c84ba1e 5 * Copyright (c) 1999-2005 The SquirrelMail Project Team
69298c28 6 * Licensed under the GNU GPL. For full terms see the file COPYING.
7 *
8 * This contains all the functions needed to send messages through
9 * a delivery backend.
10 *
883d9cd3 11 * @version $Id$
72b004e6 12 * @author Marc Groot Koerkamp
13 * @package squirrelmail
69298c28 14 */
15
72b004e6 16/**
17 * Deliver Class - called to actually deliver the message
18 *
19 * This class is called by compose.php and other code that needs
20 * to send messages. All delivery functionality should be centralized
21 * in this class.
22 *
23 * Do not place UI code in this class, as UI code should be placed in templates
24 * going forward.
25 *
26 * @author Marc Groot Koerkamp
27 * @package squirrelmail
28 */
4960ec8e 29class Deliver {
30
72b004e6 31 /**
32 * function mail - send the message parts to the SMTP stream
33 *
34 * @param Message $message Message class to send
35 * @param resource $stream file handle to the SMTP stream
36 *
3a70ee56 37 * @return integer $raw_length
72b004e6 38 */
59387d1c 39 function mail($message, $stream=false) {
78f39e78 40 $rfc822_header = $message->rfc822_header;
41 if (count($message->entities)) {
42 $boundary = $this->mimeBoundary();
43 $rfc822_header->content_type->properties['boundary']='"'.$boundary.'"';
44 } else {
45 $boundary='';
46 }
47 $raw_length = 0;
72b004e6 48 $reply_rfc822_header = (isset($message->reply_rfc822_header)
78f39e78 49 ? $message->reply_rfc822_header : '');
50 $header = $this->prepareRFC822_Header($rfc822_header, $reply_rfc822_header, $raw_length);
75b14a70 51
78f39e78 52 if ($stream) {
59387d1c 53 $this->preWriteToStream($header);
54 $this->writeToStream($stream, $header);
78f39e78 55 }
56 $this->writeBody($message, $stream, $raw_length, $boundary);
57 return $raw_length;
3b53d87f 58 }
78f39e78 59
72b004e6 60 /**
61 * function writeBody - generate and write the mime boundaries around each part to the stream
62 *
63 * Recursively formats and writes the MIME boundaries of the $message
64 * to the output stream.
65 *
66 * @param Message $message Message object to transform
67 * @param resource $stream SMTP output stream
68 * @param integer &$length_raw raw length of the message (part)
69 * as returned by mail fn
70 * @param string $boundary custom boundary to call, usually for subparts
71 *
3a70ee56 72 * @return void
72b004e6 73 */
3b53d87f 74 function writeBody($message, $stream, &$length_raw, $boundary='') {
caf6a9a4 75 // calculate boundary in case of multidimensional mime structures
76 if ($boundary && $message->entity_id && count($message->entities)) {
77 if (strpos($boundary,'_part_')) {
78 $boundary = substr($boundary,0,strpos($boundary,'_part_'));
79 }
80 $boundary_new = $boundary . '_part_'.$message->entity_id;
81 } else {
82 $boundary_new = $boundary;
83 }
1274f430 84 if ($boundary && !$message->rfc822_header) {
78f39e78 85 $s = '--'.$boundary."\r\n";
caf6a9a4 86 $s .= $this->prepareMIME_Header($message, $boundary_new);
78f39e78 87 $length_raw += strlen($s);
88 if ($stream) {
3b53d87f 89 $this->preWriteToStream($s);
78f39e78 90 $this->writeToStream($stream, $s);
91 }
92 }
93 $this->writeBodyPart($message, $stream, $length_raw);
72b004e6 94
78f39e78 95 $last = false;
96 for ($i=0, $entCount=count($message->entities);$i<$entCount;$i++) {
caf6a9a4 97 $msg = $this->writeBody($message->entities[$i], $stream, $length_raw, $boundary_new);
78f39e78 98 if ($i == $entCount-1) $last = true;
99 }
1274f430 100 if ($boundary && $last) {
dcc5c913 101 $s = "--".$boundary_new."--\r\n\r\n";
78f39e78 102 $length_raw += strlen($s);
103 if ($stream) {
3b53d87f 104 $this->preWriteToStream($s);
78f39e78 105 $this->writeToStream($stream, $s);
106 }
107 }
3b53d87f 108 }
109
72b004e6 110 /**
111 * function writeBodyPart - write each individual mimepart
112 *
113 * Recursively called by WriteBody to write each mime part to the SMTP stream
114 *
115 * @param Message $message Message object to transform
116 * @param resource $stream SMTP output stream
117 * @param integer &$length length of the message part
118 * as returned by mail fn
119 *
3a70ee56 120 * @return void
72b004e6 121 */
3b53d87f 122 function writeBodyPart($message, $stream, &$length) {
1274f430 123 if ($message->mime_header) {
78f39e78 124 $type0 = $message->mime_header->type0;
125 } else {
126 $type0 = $message->rfc822_header->content_type->type0;
127 }
128
129 $body_part_trailing = $last = '';
130 switch ($type0)
131 {
132 case 'text':
133 case 'message':
134 if ($message->body_part) {
135 $body_part = $message->body_part;
4cf85ddd 136 // remove NUL characters
137 $body_part = str_replace("\0",'',$body_part);
78f39e78 138 $length += $this->clean_crlf($body_part);
139 if ($stream) {
72b004e6 140 $this->preWriteToStream($body_part);
78f39e78 141 $this->writeToStream($stream, $body_part);
142 }
143 $last = $body_part;
144 } elseif ($message->att_local_name) {
145 $filename = $message->att_local_name;
146 $file = fopen ($filename, 'rb');
147 while ($body_part = fgets($file, 4096)) {
148 $length += $this->clean_crlf($body_part);
149 if ($stream) {
150 $this->preWriteToStream($body_part);
151 $this->writeToStream($stream, $body_part);
152 }
153 $last = $body_part;
154 }
155 fclose($file);
156 }
157 break;
158 default:
159 if ($message->body_part) {
160 $body_part = $message->body_part;
161 $length += $this->clean_crlf($body_part);
162 if ($stream) {
163 $this->writeToStream($stream, $body_part);
164 }
165 } elseif ($message->att_local_name) {
166 $filename = $message->att_local_name;
167 $file = fopen ($filename, 'rb');
78f39e78 168 while ($tmp = fread($file, 570)) {
169 $body_part = chunk_split(base64_encode($tmp));
170 $length += $this->clean_crlf($body_part);
171 if ($stream) {
172 $this->writeToStream($stream, $body_part);
173 }
174 }
175 fclose($file);
3b53d87f 176 }
78f39e78 177 break;
178 }
179 $body_part_trailing = '';
180 if ($last && substr($last,-1) != "\n") {
181 $body_part_trailing = "\r\n";
182 }
183 if ($body_part_trailing) {
184 $length += strlen($body_part_trailing);
185 if ($stream) {
186 $this->preWriteToStream($body_part_trailing);
187 $this->writeToStream($stream, $body_part_trailing);
188 }
189 }
3b53d87f 190 }
78f39e78 191
72b004e6 192 /**
193 * function clean_crlf - change linefeeds and newlines to legal characters
194 *
195 * The SMTP format only allows CRLF as line terminators.
196 * This function replaces illegal teminators with the correct terminator.
197 *
198 * @param string &$s string to clean linefeeds on
199 *
3a70ee56 200 * @return void
72b004e6 201 */
69298c28 202 function clean_crlf(&$s) {
3b53d87f 203 $s = str_replace("\r\n", "\n", $s);
204 $s = str_replace("\r", "\n", $s);
205 $s = str_replace("\n", "\r\n", $s);
78f39e78 206 return strlen($s);
3b53d87f 207 }
78f39e78 208
72b004e6 209 /**
210 * function strip_crlf - strip linefeeds and newlines from a string
211 *
212 * The SMTP format only allows CRLF as line terminators.
213 * This function strips all line terminators from the string.
214 *
215 * @param string &$s string to clean linefeeds on
216 *
3a70ee56 217 * @return void
72b004e6 218 */
e4f9307a 219 function strip_crlf(&$s) {
220 $s = str_replace("\r\n ", '', $s);
78f39e78 221 $s = str_replace("\r", '', $s);
222 $s = str_replace("\n", '', $s);
e4f9307a 223 }
3b53d87f 224
72b004e6 225 /**
226 * function preWriteToStream - reserved for extended functionality
227 *
228 * This function is not yet implemented.
229 * Reserved for extended functionality.
230 *
231 * @param string &$s string to operate on
232 *
3a70ee56 233 * @return void
72b004e6 234 */
69298c28 235 function preWriteToStream(&$s) {
3b53d87f 236 }
78f39e78 237
72b004e6 238 /**
239 * function writeToStream - write data to the SMTP stream
240 *
241 * @param resource $stream SMTP output stream
242 * @param string $data string with data to send to the SMTP stream
243 *
3a70ee56 244 * @return void
72b004e6 245 */
3b53d87f 246 function writeToStream($stream, $data) {
78f39e78 247 fputs($stream, $data);
3b53d87f 248 }
78f39e78 249
72b004e6 250 /**
251 * function initStream - reserved for extended functionality
252 *
253 * This function is not yet implemented.
254 * Reserved for extended functionality.
255 *
256 * @param Message $message Message object
257 * @param string $host host name or IP to connect to
258 * @param string $user username to log into the SMTP server with
259 * @param string $pass password to log into the SMTP server with
260 * @param integer $length
261 *
3a70ee56 262 * @return handle $stream file handle resource to SMTP stream
72b004e6 263 */
3b53d87f 264 function initStream($message, $length=0, $host='', $port='', $user='', $pass='') {
78f39e78 265 return $stream;
3b53d87f 266 }
72b004e6 267
268 /**
269 * function getBCC - reserved for extended functionality
270 *
271 * This function is not yet implemented.
272 * Reserved for extended functionality.
273 *
274 */
275 function getBCC() {
78f39e78 276 return false;
59387d1c 277 }
3b53d87f 278
72b004e6 279 /**
280 * function prepareMIME_Header - creates the mime header
281 *
282 * @param Message $message Message object to act on
283 * @param string $boundary mime boundary from fn MimeBoundary
284 *
3a70ee56 285 * @return string $header properly formatted mime header
72b004e6 286 */
3b53d87f 287 function prepareMIME_Header($message, $boundary) {
78f39e78 288 $mime_header = $message->mime_header;
289 $rn="\r\n";
290 $header = array();
1274f430 291
78f39e78 292 $contenttype = 'Content-Type: '. $mime_header->type0 .'/'.
293 $mime_header->type1;
294 if (count($message->entities)) {
fcce1b3c 295 $contenttype .= ';' . 'boundary="'.$boundary.'"';
78f39e78 296 }
297 if (isset($mime_header->parameters['name'])) {
298 $contenttype .= '; name="'.
299 encodeHeader($mime_header->parameters['name']). '"';
300 }
301 if (isset($mime_header->parameters['charset'])) {
302 $charset = $mime_header->parameters['charset'];
303 $contenttype .= '; charset="'.
304 encodeHeader($charset). '"';
305 }
1274f430 306
78f39e78 307 $header[] = $contenttype . $rn;
308 if ($mime_header->description) {
eb72e151 309 $header[] = 'Content-Description: ' . $mime_header->description . $rn;
78f39e78 310 }
311 if ($mime_header->encoding) {
eb72e151 312 $header[] = 'Content-Transfer-Encoding: ' . $mime_header->encoding . $rn;
78f39e78 313 } else {
314 if ($mime_header->type0 == 'text' || $mime_header->type0 == 'message') {
eb72e151 315 $header[] = 'Content-Transfer-Encoding: 8bit' . $rn;
78f39e78 316 } else {
eb72e151 317 $header[] = 'Content-Transfer-Encoding: base64' . $rn;
78f39e78 318 }
319 }
320 if ($mime_header->id) {
eb72e151 321 $header[] = 'Content-ID: ' . $mime_header->id . $rn;
78f39e78 322 }
323 if ($mime_header->disposition) {
324 $disposition = $mime_header->disposition;
325 $contentdisp = 'Content-Disposition: ' . $disposition->name;
326 if ($disposition->getProperty('filename')) {
327 $contentdisp .= '; filename="'.
328 encodeHeader($disposition->getProperty('filename')). '"';
329 }
72b004e6 330 $header[] = $contentdisp . $rn;
78f39e78 331 }
332 if ($mime_header->md5) {
eb72e151 333 $header[] = 'Content-MD5: ' . $mime_header->md5 . $rn;
78f39e78 334 }
335 if ($mime_header->language) {
eb72e151 336 $header[] = 'Content-Language: ' . $mime_header->language . $rn;
78f39e78 337 }
4960ec8e 338
78f39e78 339 $cnt = count($header);
340 $hdr_s = '';
341 for ($i = 0 ; $i < $cnt ; $i++) {
342 $hdr_s .= $this->foldLine($header[$i], 78,str_pad('',4));
343 }
344 $header = $hdr_s;
345 $header .= $rn; /* One blank line to separate mimeheader and body-entity */
346 return $header;
347 }
4960ec8e 348
72b004e6 349 /**
350 * function prepareRFC822_Header - prepares the RFC822 header string from Rfc822Header object(s)
351 *
352 * This function takes the Rfc822Header object(s) and formats them
353 * into the RFC822Header string to send to the SMTP server as part
354 * of the SMTP message.
355 *
356 * @param Rfc822Header $rfc822_header
357 * @param Rfc822Header $reply_rfc822_header
358 * @param integer &$raw_length length of the message
359 *
3a70ee56 360 * @return string $header
72b004e6 361 */
75b14a70 362 function prepareRFC822_Header($rfc822_header, $reply_rfc822_header, &$raw_length) {
35aaf666 363 global $domain, $version, $username, $skip_SM_header;
60a46e65 364
78f39e78 365 /* if server var SERVER_NAME not available, use $domain */
60a46e65 366 if(!sqGetGlobalVar('SERVER_NAME', $SERVER_NAME, SQ_SERVER)) {
367 $SERVER_NAME = $domain;
78f39e78 368 }
60a46e65 369
78f39e78 370 sqGetGlobalVar('REMOTE_ADDR', $REMOTE_ADDR, SQ_SERVER);
371 sqGetGlobalVar('REMOTE_PORT', $REMOTE_PORT, SQ_SERVER);
372 sqGetGlobalVar('REMOTE_HOST', $REMOTE_HOST, SQ_SERVER);
373 sqGetGlobalVar('HTTP_VIA', $HTTP_VIA, SQ_SERVER);
374 sqGetGlobalVar('HTTP_X_FORWARDED_FOR', $HTTP_X_FORWARDED_FOR, SQ_SERVER);
60a46e65 375
78f39e78 376 $rn = "\r\n";
223872cb 377
78f39e78 378 /* This creates an RFC 822 date */
379 $date = date('D, j M Y H:i:s ', mktime()) . $this->timezone();
380 /* Create a message-id */
381 $message_id = '<' . $REMOTE_PORT . '.' . $REMOTE_ADDR . '.';
485e1181 382 $message_id .= time() . '.squirrel@' . $SERVER_NAME .'>';
78f39e78 383 /* Make an RFC822 Received: line */
384 if (isset($REMOTE_HOST)) {
385 $received_from = "$REMOTE_HOST ([$REMOTE_ADDR])";
386 } else {
387 $received_from = $REMOTE_ADDR;
388 }
389 if (isset($HTTP_VIA) || isset ($HTTP_X_FORWARDED_FOR)) {
390 if (!isset($HTTP_X_FORWARDED_FOR) || $HTTP_X_FORWARDED_FOR == '') {
391 $HTTP_X_FORWARDED_FOR = 'unknown';
392 }
393 $received_from .= " (proxying for $HTTP_X_FORWARDED_FOR)";
394 }
395 $header = array();
35aaf666 396 if ( !isset($skip_SM_header) || !$skip_SM_header )
397 {
398 $header[] = "Received: from $received_from" . $rn;
40a55a1b 399 $header[] = " (SquirrelMail authenticated user $username)" . $rn;
35aaf666 400 $header[] = " by $SERVER_NAME with HTTP;" . $rn;
401 $header[] = " $date" . $rn;
402 }
59387d1c 403 /* Insert the rest of the header fields */
404 $header[] = 'Message-ID: '. $message_id . $rn;
1274f430 405 if ($reply_rfc822_header->message_id) {
78f39e78 406 $rep_message_id = $reply_rfc822_header->message_id;
407 // $this->strip_crlf($message_id);
408 $header[] = 'In-Reply-To: '.$rep_message_id . $rn;
409 $references = $this->calculate_references($reply_rfc822_header);
410 $header[] = 'References: '.$references . $rn;
411 }
412 $header[] = "Date: $date" . $rn;
59387d1c 413 $header[] = 'Subject: '.encodeHeader($rfc822_header->subject) . $rn;
ac47827c 414 $header[] = 'From: '. $rfc822_header->getAddr_s('from',",$rn ",true) . $rn;
415
416 // folding address list [From|To|Cc|Bcc] happens by using ",$rn<space>" as delimiter
417 // Do not use foldLine for that.
418
419 // RFC2822 if from contains more then 1 address
59387d1c 420 if (count($rfc822_header->from) > 1) {
215de78c 421 $header[] = 'Sender: '. $rfc822_header->getAddr_s('sender',',',true) . $rn;
78f39e78 422 }
423 if (count($rfc822_header->to)) {
ac47827c 424 $header[] = 'To: '. $rfc822_header->getAddr_s('to',",$rn ",true) . $rn;
78f39e78 425 }
426 if (count($rfc822_header->cc)) {
ac47827c 427 $header[] = 'Cc: '. $rfc822_header->getAddr_s('cc',",$rn ",true) . $rn;
78f39e78 428 }
429 if (count($rfc822_header->reply_to)) {
215de78c 430 $header[] = 'Reply-To: '. $rfc822_header->getAddr_s('reply_to',',',true) . $rn;
78f39e78 431 }
432 /* Sendmail should return true. Default = false */
433 $bcc = $this->getBcc();
434 if (count($rfc822_header->bcc)) {
ac47827c 435 $s = 'Bcc: '. $rfc822_header->getAddr_s('bcc',",$rn ",true) . $rn;
78f39e78 436 if (!$bcc) {
78f39e78 437 $raw_length += strlen($s);
438 } else {
439 $header[] = $s;
440 }
441 }
72b004e6 442 /* Identify SquirrelMail */
caf6a9a4 443 $header[] = 'User-Agent: SquirrelMail/' . $version . $rn;
78f39e78 444 /* Do the MIME-stuff */
445 $header[] = 'MIME-Version: 1.0' . $rn;
446 $contenttype = 'Content-Type: '. $rfc822_header->content_type->type0 .'/'.
59387d1c 447 $rfc822_header->content_type->type1;
78f39e78 448 if (count($rfc822_header->content_type->properties)) {
449 foreach ($rfc822_header->content_type->properties as $k => $v) {
450 if ($k && $v) {
72b004e6 451 $contenttype .= ';' .$k.'='.$v;
78f39e78 452 }
453 }
454 }
59387d1c 455 $header[] = $contenttype . $rn;
78f39e78 456 if ($encoding = $rfc822_header->encoding) {
23301b33 457 $header[] = 'Content-Transfer-Encoding: ' . $encoding . $rn;
72b004e6 458 }
59387d1c 459 if ($rfc822_header->dnt) {
72b004e6 460 $dnt = $rfc822_header->getAddr_s('dnt');
78f39e78 461 /* Pegasus Mail */
462 $header[] = 'X-Confirm-Reading-To: '.$dnt. $rn;
463 /* RFC 2298 */
464 $header[] = 'Disposition-Notification-To: '.$dnt. $rn;
465 }
466 if ($rfc822_header->priority) {
d1db3699 467 switch($rfc822_header->priority)
78f39e78 468 {
d1db3699 469 case 1:
91e0dccc 470 $header[] = 'X-Priority: 1 (Highest)'.$rn;
471 $header[] = 'Importance: High'. $rn; break;
d1db3699 472 case 5:
91e0dccc 473 $header[] = 'X-Priority: 5 (Lowest)'.$rn;
474 $header[] = 'Importance: Low'. $rn; break;
78f39e78 475 default: break;
476 }
477 }
72b004e6 478 /* Insert headers from the $more_headers array */
78f39e78 479 if(count($rfc822_header->more_headers)) {
480 reset($rfc822_header->more_headers);
481 foreach ($rfc822_header->more_headers as $k => $v) {
482 $header[] = $k.': '.$v .$rn;
483 }
484 }
485 $cnt = count($header);
486 $hdr_s = '';
5d2a7b15 487
78f39e78 488 for ($i = 0 ; $i < $cnt ; $i++) {
5d2a7b15 489 $sKey = substr($header[$i],0,strpos($header[$i],':'));
490 switch ($sKey)
491 {
492 case 'Message-ID':
493 case 'In-Reply_To':
494 $hdr_s .= $header[$i];
495 break;
496 case 'References':
497 $sRefs = substr($header[$i],12);
498 $aRefs = explode(' ',$sRefs);
499 $sLine = 'References:';
500 foreach ($aRefs as $sReference) {
501 if (strlen($sLine)+strlen($sReference) >76) {
502 $hdr_s .= $sLine;
503 $sLine = $rn . ' ' . $sReference;
504 } else {
505 $sLine .= ' '. $sReference;
506 }
507 }
508 $hdr_s .= $sLine;
509 break;
ac47827c 510 case 'To':
511 case 'Cc':
512 case 'Bcc':
513 case 'From':
514 $hdr_s .= $header[$i];
515 break;
5d2a7b15 516 default: $hdr_s .= $this->foldLine($header[$i], 78, str_pad('',4)); break;
517 }
78f39e78 518 }
78f39e78 519 $header = $hdr_s;
520 $header .= $rn; /* One blank line to separate header and body */
521 $raw_length += strlen($header);
522 return $header;
4960ec8e 523 }
524
72b004e6 525 /**
526 * function foldLine - for cleanly folding of headerlines
527 *
528 * @param string $line
529 * @param integer $length length to fold the line at
530 * @param string $pre prefix the line with...
531 *
3a70ee56 532 * @return string $line folded line with trailing CRLF
72b004e6 533 */
1274f430 534 function foldLine($line, $length, $pre='') {
e4f9307a 535 $line = substr($line,0, -2);
fb1d6cb6 536 $length -= 2; /* do not fold between \r and \n */
537 $cnt = strlen($line);
538 if ($cnt > $length) { /* try folding */
539 $fold_string = "\r\n " . $pre;
540 $bFirstFold = false;
541 $aFoldLine = array();
542 while (strlen($line) > $length) {
543 $fold = false;
544 /* handle encoded parts */
7060c7f0 545 if (preg_match('/(=\?([^?]*)\?(Q|B)\?([^?]*)\?=)(\s+|.*)/Ui',$line,$regs)) {
fb1d6cb6 546 $fold_tmp = $regs[1];
7060c7f0 547 if (!trim($regs[5])) {
548 $fold_tmp .= $regs[5];
549 }
fb1d6cb6 550 $iPosEnc = strpos($line,$fold_tmp);
551 $iLengthEnc = strlen($fold_tmp);
c422e824 552 $iPosEncEnd = $iPosEnc+$iLengthEnc;
553 if ($iPosEnc < $length && (($iPosEncEnd) > $length)) {
fb1d6cb6 554 $fold = true;
555 /* fold just before the start of the encoded string */
7060c7f0 556 if ($iPosEnc) {
557 $aFoldLine[] = substr($line,0,$iPosEnc);
558 }
fb1d6cb6 559 $line = substr($line,$iPosEnc);
560 if (!$bFirstFold) {
561 $bFirstFold = true;
562 $length -= strlen($fold_string);
563 }
564 if ($iLengthEnc > $length) { /* place the encoded
565 string on a separate line and do not fold inside it*/
223872cb 566 /* minimize foldstring */
567 $fold_string = "\r\n ";
568 $aFoldLine[] = substr($line,0,$iLengthEnc);
569 $line = substr($line,$iLengthEnc);
72b004e6 570 }
c422e824 571 } else if ($iPosEnc < $length) { /* the encoded string fits into the foldlength */
fb1d6cb6 572 /*remainder */
fb1d6cb6 573 $sLineRem = substr($line,$iPosEncEnd,$length - $iPosEncEnd);
c422e824 574 if (preg_match('/^(=\?([^?]*)\?(Q|B)\?([^?]*)\?=)(.*)/Ui',$sLineRem) || !preg_match('/[=,;\s]/',$sLineRem)) {
fb1d6cb6 575 /*impossible to fold clean in the next part -> fold after the enc string */
7060c7f0 576 $aFoldLine[] = substr($line,0,$iPosEncEnd);
577 $line = substr($line,$iPosEncEnd);
fb1d6cb6 578 $fold = true;
579 if (!$bFirstFold) {
580 $bFirstFold = true;
581 $length -= strlen($fold_string);
582 }
72b004e6 583 }
fb1d6cb6 584 }
585 }
586 if (!$fold) {
587 $line_tmp = substr($line,0,$length);
588 $iFoldPos = false;
589 /* try to fold at logical places */
590 switch (true)
591 {
592 case ($iFoldPos = strrpos($line_tmp,',')): break;
593 case ($iFoldPos = strrpos($line_tmp,';')): break;
594 case ($iFoldPos = strrpos($line_tmp,' ')): break;
595 case ($iFoldPos = strrpos($line_tmp,'=')): break;
596 default: break;
597 }
72b004e6 598
fb1d6cb6 599 if (!$iFoldPos) { /* clean folding didn't work */
600 $iFoldPos = $length;
601 }
602 $aFoldLine[] = substr($line,0,$iFoldPos+1);
603 $line = substr($line,$iFoldPos+1);
604 if (!$bFirstFold) {
605 $bFirstFold = true;
606 $length -= strlen($fold_string);
607 }
608 }
609 }
610 /*$reconstruct the line */
611 if ($line) {
612 $aFoldLine[] = $line;
613 }
614 $line = implode($fold_string,$aFoldLine);
615 }
616 return $line."\r\n";
617 }
3b53d87f 618
72b004e6 619 /**
620 * function mimeBoundary - calculates the mime boundary to use
621 *
622 * This function will generate a random mime boundary base part
623 * for the message if the boundary has not already been set.
624 *
3a70ee56 625 * @return string $mimeBoundaryString random mime boundary string
72b004e6 626 */
59387d1c 627 function mimeBoundary () {
78f39e78 628 static $mimeBoundaryString;
3b53d87f 629
78f39e78 630 if ( !isset( $mimeBoundaryString ) ||
631 $mimeBoundaryString == '') {
632 $mimeBoundaryString = '----=_' . date( 'YmdHis' ) . '_' .
633 mt_rand( 10000, 99999 );
634 }
635 return $mimeBoundaryString;
3b53d87f 636 }
637
72b004e6 638 /**
639 * function timezone - Time offset for correct timezone
640 *
3a70ee56 641 * @return string $result with timezone and offset
72b004e6 642 */
59387d1c 643 function timezone () {
78f39e78 644 global $invert_time;
645
646 $diff_second = date('Z');
647 if ($invert_time) {
648 $diff_second = - $diff_second;
649 }
650 if ($diff_second > 0) {
651 $sign = '+';
652 } else {
653 $sign = '-';
654 }
655 $diff_second = abs($diff_second);
656 $diff_hour = floor ($diff_second / 3600);
657 $diff_minute = floor (($diff_second-3600*$diff_hour) / 60);
658 $zonename = '('.strftime('%Z').')';
72b004e6 659 $result = sprintf ("%s%02d%02d %s", $sign, $diff_hour, $diff_minute,
3b53d87f 660 $zonename);
78f39e78 661 return ($result);
59387d1c 662 }
3b53d87f 663
72b004e6 664 /**
665 * function calculate_references - calculate correct Referer string
666 *
667 * @param Rfc822Header $hdr message header to calculate from
668 *
3a70ee56 669 * @return string $refer concatenated and trimmed Referer string
72b004e6 670 */
1274f430 671 function calculate_references($hdr) {
672 $refer = $hdr->references;
78f39e78 673 $message_id = $hdr->message_id;
674 $in_reply_to = $hdr->in_reply_to;
675 if (strlen($refer) > 2) {
676 $refer .= ' ' . $message_id;
677 } else {
678 if ($in_reply_to) {
679 $refer .= $in_reply_to . ' ' . $message_id;
680 } else {
681 $refer .= $message_id;
682 }
683 }
684 trim($refer);
685 return $refer;
59387d1c 686 }
687}
eb72e151 688?>