From 907ce8c044159ca8da6ccce3ec5362ac61e7c142 Mon Sep 17 00:00:00 2001 From: yehudah Date: Mon, 25 Nov 2019 07:50:30 +0000 Subject: deleted by mistake --- Postman/Postman-Mail/Zend-1.12.10/Mime.php | 670 ----------------------------- 1 file changed, 670 deletions(-) delete mode 100644 Postman/Postman-Mail/Zend-1.12.10/Mime.php (limited to 'Postman/Postman-Mail/Zend-1.12.10/Mime.php') diff --git a/Postman/Postman-Mail/Zend-1.12.10/Mime.php b/Postman/Postman-Mail/Zend-1.12.10/Mime.php deleted file mode 100644 index 9e0fa8c..0000000 --- a/Postman/Postman-Mail/Zend-1.12.10/Mime.php +++ /dev/null @@ -1,670 +0,0 @@ - 0) { - $ptr = strlen($str); - if ($ptr > $lineLength) { - $ptr = $lineLength; - } - - // Ensure we are not splitting across an encoded character - $pos = strrpos(substr($str, 0, $ptr), '='); - if ($pos !== false && $pos >= $ptr - 2) { - $ptr = $pos; - } - - // Check if there is a space at the end of the line and rewind - if ($ptr > 0 && $str[$ptr - 1] == ' ') { - --$ptr; - } - - // Add string and continue - $out .= substr($str, 0, $ptr) . '=' . $lineEnd; - $str = substr($str, $ptr); - } - - $out = rtrim($out, $lineEnd); - $out = rtrim($out, '='); - - return $out; - } - - /** - * Converts a string into quoted printable format. - * - * @param string $str - * @return string - */ - private static function _encodeQuotedPrintable($str) - { - $str = str_replace('=', '=3D', $str); - $str = str_replace(self::$qpKeys, self::$qpReplaceValues, $str); - $str = rtrim($str); - - return $str; - } - - /** - * Encode a given string with the QUOTED_PRINTABLE mechanism for Mail Headers. - * - * Mail headers depend on an extended quoted printable algorithm otherwise - * a range of bugs can occur. - * - * @param string $str - * @param string $charset - * @param int $lineLength Line length; defaults to {@link LINELENGTH} - * @param string $lineEnd Line end; defaults to {@link LINEEND} - * @return string - */ - public static function encodeQuotedPrintableHeader( - $str, $charset, $lineLength = self::LINELENGTH, $lineEnd = self::LINEEND - ) - { - // Reduce line-length by the length of the required delimiter, charsets and encoding - $prefix = sprintf('=?%s?Q?', $charset); - $lineLength = $lineLength - strlen($prefix) - 3; - - $str = self::_encodeQuotedPrintable($str); - - // Mail-Header required chars have to be encoded also: - $str = str_replace( - array('?', ' ', '_', ','), array('=3F', '=20', '=5F', '=2C'), $str - ); - - // initialize first line, we need it anyways - $lines = array(0 => ""); - - // Split encoded text into separate lines - $tmp = ""; - while (strlen($str) > 0) { - $currentLine = max(count($lines) - 1, 0); - $token = self::getNextQuotedPrintableToken($str); - $str = substr($str, strlen($token)); - - $tmp .= $token; - if ($token == '=20') { - // only if we have a single char token or space, we can append the - // tempstring it to the current line or start a new line if necessary. - if (strlen($lines[$currentLine] . $tmp) > $lineLength) { - $lines[$currentLine + 1] = $tmp; - } else { - $lines[$currentLine] .= $tmp; - } - $tmp = ""; - } - // don't forget to append the rest to the last line - if (strlen($str) == 0) { - $lines[$currentLine] .= $tmp; - } - } - - // assemble the lines together by pre- and appending delimiters, charset, encoding. - for ($i = 0; $i < count($lines); $i++) { - $lines[$i] = " " . $prefix . $lines[$i] . "?="; - } - $str = trim(implode($lineEnd, $lines)); - - return $str; - } - - /** - * Retrieves the first token from a quoted printable string. - * - * @param string $str - * @return string - */ - private static function getNextQuotedPrintableToken($str) - { - if (substr($str, 0, 1) == "=") { - $token = substr($str, 0, 3); - } else { - $token = substr($str, 0, 1); - } - - return $token; - } - - /** - * Encode a given string in mail header compatible base64 encoding. - * - * @param string $str - * @param string $charset - * @param int $lineLength Line length; defaults to {@link LINELENGTH} - * @param string $lineEnd Line end; defaults to {@link LINEEND} - * @return string - */ - public static function encodeBase64Header( - $str, $charset, $lineLength = self::LINELENGTH, $lineEnd = self::LINEEND - ) - { - $prefix = '=?' . $charset . '?B?'; - $suffix = '?='; - $remainingLength = $lineLength - strlen($prefix) - strlen($suffix); - - $encodedValue = self::encodeBase64($str, $remainingLength, $lineEnd); - $encodedValue = str_replace( - $lineEnd, $suffix . $lineEnd . ' ' . $prefix, $encodedValue - ); - $encodedValue = $prefix . $encodedValue . $suffix; - - return $encodedValue; - } - - /** - * Encode a given string in base64 encoding and break lines - * according to the maximum linelength. - * - * @param string $str - * @param int $lineLength Line length; defaults to {@link LINELENGTH} - * @param string $lineEnd Line end; defaults to {@link LINEEND} - * @return string - */ - public static function encodeBase64( - $str, $lineLength = self::LINELENGTH, $lineEnd = self::LINEEND - ) - { - return rtrim(chunk_split(base64_encode($str), $lineLength, $lineEnd)); - } - - /** - * Constructor - * - * @param null|string $boundary - */ - public function __construct($boundary = null) - { - // This string needs to be somewhat unique - if ($boundary === null) { - $this->_boundary = '=_' . md5(microtime(1) . self::$makeUnique++); - } else { - $this->_boundary = $boundary; - } - } - - /** - * Encode the given string with the given encoding. - * - * @param string $str - * @param string $encoding - * @param string $EOL Line end; defaults to {@link Postman_Zend_Mime::LINEEND} - * @return string - */ - public static function encode($str, $encoding, $EOL = self::LINEEND) - { - switch ($encoding) { - case self::ENCODING_BASE64: - return self::encodeBase64($str, self::LINELENGTH, $EOL); - - case self::ENCODING_QUOTEDPRINTABLE: - return self::encodeQuotedPrintable($str, self::LINELENGTH, $EOL); - - default: - /** - * @todo 7Bit and 8Bit is currently handled the same way. - */ - return $str; - } - } - - /** - * Return a MIME boundary - * - * @access public - * @return string - */ - public function boundary() - { - return $this->_boundary; - } - - /** - * Return a MIME boundary line - * - * @param string $EOL Line end; defaults to {@link LINEEND} - * @return string - */ - public function boundaryLine($EOL = self::LINEEND) - { - return $EOL . '--' . $this->_boundary . $EOL; - } - - /** - * Return MIME ending - * - * @param string $EOL Line end; defaults to {@link LINEEND} - * @return string - */ - public function mimeEnd($EOL = self::LINEEND) - { - return $EOL . '--' . $this->_boundary . '--' . $EOL; - } -} -- cgit v1.2.3