X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=functions%2Fstrings.php;h=8e1042294b302687cfdc4a995ee4124e3520d991;hp=ac70ae621eebca39347cfd56985d2aa851f7bf4a;hb=1e4a4feba1aac2a0e78dfc8c880235fa196695ca;hpb=da4c66e8aed8a6deb1e1a2cefe5a5323f309a50a diff --git a/functions/strings.php b/functions/strings.php index ac70ae62..8e104229 100644 --- a/functions/strings.php +++ b/functions/strings.php @@ -16,7 +16,90 @@ * SquirrelMail version number -- DO NOT CHANGE */ global $version; -$version = '1.2.6 [cvs]'; +$version = '1.3.2 [CVS-DEVEL]'; + +/** + * Wraps text at $wrap characters + * + * Has a problem with special HTML characters, so call this before + * you do character translation. + * + * Specifically, ' comes up as 5 characters instead of 1. + * This should not add newlines to the end of lines. + */ +function sqWordWrap(&$line, $wrap) { + ereg("^([\t >]*)([^\t >].*)?$", $line, $regs); + $beginning_spaces = $regs[1]; + if (isset($regs[2])) { + $words = explode(' ', $regs[2]); + } else { + $words = ''; + } + + $i = 0; + $line = $beginning_spaces; + + while ($i < count($words)) { + /* Force one word to be on a line (minimum) */ + $line .= $words[$i]; + $line_len = strlen($beginning_spaces) + strlen($words[$i]) + 2; + if (isset($words[$i + 1])) + $line_len += strlen($words[$i + 1]); + $i ++; + + /* Add more words (as long as they fit) */ + while ($line_len < $wrap && $i < count($words)) { + $line .= ' ' . $words[$i]; + $i++; + if (isset($words[$i])) + $line_len += strlen($words[$i]) + 1; + else + $line_len += 1; + } + + /* Skip spaces if they are the first thing on a continued line */ + while (!isset($words[$i]) && $i < count($words)) { + $i ++; + } + + /* Go to the next line if we have more to process */ + if ($i < count($words)) { + $line .= "\n"; + } + } +} + +/** + * Does the opposite of sqWordWrap() + */ +function sqUnWordWrap(&$body) { + $lines = explode("\n", $body); + $body = ''; + $PreviousSpaces = ''; + $cnt = count($lines); + for ($i = 0; $i < $cnt; $i ++) { + preg_match("/^([\t >]*)([^\t >].*)?$/", $lines[$i], $regs); + $CurrentSpaces = $regs[1]; + if (isset($regs[2])) { + $CurrentRest = $regs[2]; + } else { + $CurrentRest = ''; + } + + if ($i == 0) { + $PreviousSpaces = $CurrentSpaces; + $body = $lines[$i]; + } else if (($PreviousSpaces == $CurrentSpaces) /* Do the beginnings match */ + && (strlen($lines[$i - 1]) > 65) /* Over 65 characters long */ + && strlen($CurrentRest)) { /* and there's a line to continue with */ + $body .= ' ' . $CurrentRest; + } else { + $body .= "\n" . $lines[$i]; + $PreviousSpaces = $CurrentSpaces; + } + } + $body .= "\n"; +} /** * If $haystack is a full mailbox name and $needle is the mailbox @@ -72,14 +155,6 @@ function getLineOfAddrs($array) { return( $to_line ); } -function find_mailbox_name ($mailbox) { - if (ereg(" *\"([^\r\n\"]*)\"[ \r\n]*$", $mailbox, $regs)) - return $regs[1]; - ereg(" *([^ \r\n\"]*)[ \r\n]*$",$mailbox,$regs); - return $regs[1]; - -} - function php_self () { global $PHP_SELF, $HTTP_SERVER_VARS; @@ -110,7 +185,7 @@ function php_self () { function get_location () { global $PHP_SELF, $SERVER_NAME, $HTTP_HOST, $SERVER_PORT, - $HTTP_SERVER_VARS; + $HTTP_SERVER_VARS, $imap_server_type; /* Get the path, handle virtual directories */ $path = substr(php_self(), 0, strrpos(php_self(), '/')); @@ -153,6 +228,14 @@ function get_location () { } } + /* this is a workaround for the weird macosx caching that + causes Apache to return 16080 as the port number, which causes + SM to bail */ + + if ($imap_server_type == 'macosx' && $port == ':16080') { + $port = ''; + } + /* Fallback is to omit the server name and use a relative */ /* URI, although this is not RFC 2616 compliant. */ return ($host ? $proto . $host . $port . $path : $path); @@ -429,4 +512,4 @@ function RemoveSlashes(&$array) { $PHP_SELF = php_self(); -?> \ No newline at end of file +?>