diff options
author | taca <taca@pkgsrc.org> | 2010-02-06 15:54:18 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2010-02-06 15:54:18 +0000 |
commit | d31566c2f19345ff95eaadafc35b357fdfd5e683 (patch) | |
tree | 3d22c3cb571e7504c7f0159ceb17ffac094346ec /mail | |
parent | f415c3a73c88d2fddb2d7db2e2d9c1e632e02242 (diff) | |
download | pkgsrc-d31566c2f19345ff95eaadafc35b357fdfd5e683.tar.gz |
Updaete pear-Mail_Mime from 1.4.0 to 1.6.0.
1.6.0
Bugs Fixed:
* Don't break specified headers folding [alec]
* Bug #17025: Wrong headers() result for long unwrapable header value [alec]
Implemented Features:
* Allow setting Content-ID for HTML Images [alec]
* Added one setParam() in place of many set*() functions [alec]
* Added getParam(), getTXTBody(), getHTMLBody() [alec]
* Skip RFC2231's charset if filename contains only ASCII characters [alec]
* Make sure that Received: headers are returned on the top [alec]
* Added saveMessageBody() and getMessageBody() functions [alec]
1.6.0RC2
Fixed Bugs:
* Bug #7561: _encodeQuotedPrintable() with mbstring function overloading
broken in 1.6.0RC1 [alec]
* Fixed quoted-printable encoding of characters with ord(char) < 10 [alec]
1.6.0RC1
Fixed Bugs:
* Bug #13444: Problem in multipart mail with txt, html and images. Reverted
fix for #9725 [alec]
* Bug #14780: Content-Type is not set correctly when calling headers() before
get() [alec]
Implemented Features:
* Feature #10884: Provide easy way to set build params [alec]
* Feature #13962: Multiple header support [alec]
* Use class (private) variables instead of MAIL_MIME_CRLF and
MAIL_MIMEPART_CRLF constants [alec]
* Feature #12411: Support both RFC2047 and RFC2231 for attachments filenames
encoding [alec]
* Optimized memory usage in quoted-printable encoding function [alec]
* Feature #13969: Big attachments support [alec]
* Changed default value of text_encoding to quoted-printable [alec]
1.5.3
Fixed bugs:
* Fix Bug #14678: srand() lowers security [clockwerx]
* Fix Bug #12921: _file2str not binary safe [walter]
* Fix Bug #12385: Bad regex when replacing css style attachments [cipri]
* Fix Bug #16911: Excessive semicolon in MIME header [alec]
* Fix Bug #15320: Attachment charset is not set in Content-Type header [alec]
* Fix Bug #16911: Lack of semicolon separator for MIME header parameters [alec]
* Fix Bug #16846: Use preg_replace_callback() instead of /e modifier [alec]
* Fix Bug #14779: Problem with an empty attachment [alec]
* Fix Bug #15913: Optimize the memory used by Mail_mimePart::encode.
Avoid having attachments data duplicated in memory [alec]
* Fix Bug #16539: Headers longer than 998 characters aren't wrapped [alec]
* Fix Bug #11238: Wrong encoding of structured headers [alec]
* Fix Bug #13641: iconv_mime_encode() seems to work different/errorious than
the build in logic. Removed 'ignore_iconv' param. [alec]
* Fix Bug #16706: Incorrect double-quotes RFC 2231-encoded parameter values
[alec]
* Fix Bug #14232: RFC2231: tspecials encoding in _buildHeaderParam() [alec]
Implemented Features:
* Implement Feature #10438: Function (encodeHeader) for encoding of given
header [alec]
1.5.2
* Fix Bug #11381: domain name is attached to content-id, trailing greater-than
sign is not remove [cipri]
1.5.1
* Fix Bug #11344: Error at line 644 in mime.php [cipri]
1.5.0
Split off Mail_MimeDecode
1.5.0RC2
Fixed accidental characters included in mime.php
Diffstat (limited to 'mail')
-rw-r--r-- | mail/pear-Mail_Mime/DESCR | 17 | ||||
-rw-r--r-- | mail/pear-Mail_Mime/Makefile | 6 | ||||
-rw-r--r-- | mail/pear-Mail_Mime/distinfo | 8 |
3 files changed, 17 insertions, 14 deletions
diff --git a/mail/pear-Mail_Mime/DESCR b/mail/pear-Mail_Mime/DESCR index c11c603e774..ac976152b19 100644 --- a/mail/pear-Mail_Mime/DESCR +++ b/mail/pear-Mail_Mime/DESCR @@ -1,9 +1,12 @@ Provides classes to deal with creation and manipulation of mime messages: +It allows people to create e-mail messages consisting of: - * mime.php: Create mime email, with html, attachments, embedded images etc. - * mimePart.php: Advanced method of creating mime messages. - * mimeDecode.php - Decodes mime messages to a usable structure. - * xmail.dtd: An XML DTD to acompany the getXML() method of the - decoding class. - * xmail.xsl: An XSLT stylesheet to transform the output of the - getXML() method back to an email +* Text Parts +* HTML Parts +* Inline HTML Images +* Attachments +* Attached messages + +It supports big messages, base64 and quoted-printable encodings and +non-ASCII characters in filenames, subjects, recipients, etc. encoded +using RFC2047 and/or RFC2231. diff --git a/mail/pear-Mail_Mime/Makefile b/mail/pear-Mail_Mime/Makefile index 53b0622cd51..5e05ecdee1b 100644 --- a/mail/pear-Mail_Mime/Makefile +++ b/mail/pear-Mail_Mime/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.9 2008/06/12 02:14:35 joerg Exp $ +# $NetBSD: Makefile,v 1.10 2010/02/06 15:54:18 taca Exp $ -DISTNAME= Mail_Mime-1.4.0 +DISTNAME= Mail_Mime-1.6.0 CATEGORIES+= mail MAINTAINER= jdolecek@NetBSD.org -COMMENT= PHP classes to create and decode mime messages +COMMENT= PHP classes to create and manipulation of mime messages CONFLICTS= php-pear-Mail_Mime-[0-9]* diff --git a/mail/pear-Mail_Mime/distinfo b/mail/pear-Mail_Mime/distinfo index beddb19e9f9..f9d90e0236f 100644 --- a/mail/pear-Mail_Mime/distinfo +++ b/mail/pear-Mail_Mime/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2008/04/30 19:28:03 adrianp Exp $ +$NetBSD: distinfo,v 1.6 2010/02/06 15:54:18 taca Exp $ -SHA1 (pear/Mail_Mime-1.4.0.tgz) = d44b570f6c6252e7116708c1822bc2d3c8235605 -RMD160 (pear/Mail_Mime-1.4.0.tgz) = d04879ff81e2c4aa615cfd55abe7c20c7e0d2705 -Size (pear/Mail_Mime-1.4.0.tgz) = 28636 bytes +SHA1 (pear/Mail_Mime-1.6.0.tgz) = 7b71d32a748cf2009f4148e9d5db03475065e5af +RMD160 (pear/Mail_Mime-1.6.0.tgz) = 37c04871ad0d28a3a09f05e0fa7452e65ea6da4c +Size (pear/Mail_Mime-1.6.0.tgz) = 29925 bytes |