pkgsrc/mail/ruby-mail/PLIST

141 lines
6.8 KiB
Text
Raw Normal View History

mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
@comment $NetBSD: PLIST,v 1.11 2018/03/14 14:46:07 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
Update ruby-mail to 2.5.4. == Version 2.5.4 - Tue May 14 14:45:00 +1100 2013 Mikel Lindsaar <mikel@lindsaar.net> Features: * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2013-06-16 19:05:56 +02:00
${GEM_LIBDIR}/MIT-LICENSE
Update ruby-mail package to 2.4.4. == Version 2.4.4 - Wed Mar 14 22:44:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix security vulnerability allowing command line exploit when using file delivery method == Version 2.4.3 - Tue Mar 6 19:38:00 UTC 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix security vulnerability allowing command line exploit when using exim or sendmail from the command line * Change Mail#deliver! to also inform the interceptors * Encodings.value_decode(str): Treat lines with mixed encoding correctly when the line ends with a plain text part. == Thu Jan 19 13:49:34 UTC 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix non ascii character folding problems * Handle multipart mail in Mail::Message#to_yaml / #from_yaml * More warning fixes * Normalize the Parse Error class and messages * Fix for Mail::Encodings.unquote_and_convert not handling unquoted characters mixed in between quoted strings * Updated treetop to latest version, specs now run approximately 25-30% faster! * Version bump to 2.4.1 and gem release == Sun Jan 15 18:15:56 UTC 2011 Mikel Lindsaar <mikel@reinteractive.net> * Speed up reading of messages by about 12x * Added Message#without_attachments! that removes all message's attachments * Added shoulda-style RSpec matchers * Added support for @ in display name * Added support for the :tls and :ssl options * Added UTF-16 and UTF-32 support * Added Exim as it's own delivery manager * Added Ruby 1.9.3 compatibility * Fix for Sendmail return-path escaping * Fix for alias for SJIS was changed from shift_jis to windows-31J in Ruby 1.9.3 * Fix for undefined method 'constantize' error when no ActiveSupport loaded * Fix Mail::Field#== comparison * Fixed Regexp warning: character class has duplicated range * Fixed encoding non-latin names in addresses * Fixed issue with non-7bit attachment filenames * Now define String#blank? only if not defined yet * Decoding text parts using charset from Content-Type field * Per RFC 5322, do not accept emails with consecutive dots * Bunch of bug fixes from contributed pull requests * Travis CI setup and passing on 6 rubies * Upgrade RSpec to 2.8.0 * Lots of warnings fixed * Version bump to 2.4.0 and gem release
2012-03-17 17:06:54 +01:00
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/lib/mail.rb
${GEM_LIBDIR}/lib/mail/attachments_list.rb
${GEM_LIBDIR}/lib/mail/body.rb
Update ruby-mail to 2.5.3. == HEAD == Version 2.5.3 - Sun Dec 4 15:52:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Close pull request 468 - Remove debug output to STDOUT (tadman) * Fix up spec warnings * Remove un needed require * Ensure spec_helper constants only defined once * Use stub against time instead of DateTime to avoid double redefinition error == Version 2.5.2 - Sun Nov 18 15:01:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Removing double loading of treetop parsers to remove warnings * Making parsers auto compile on spec suite and load in production code to avoid error that caused yank of 2.5.0 * Reapply pull request 443 - CC fields with semicolon are now parsed right (paulwittmann) == Version 2.5.1 - Sun Nov 18 14:01:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Yanked 2.5.0 * Reverted pull request 443 - CC fields with semicolon are now parsed right (paulwittmann) == Version 2.5.0 - Sun Nov 18 12:20:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> Features: * Close pull request 406 - Add Mail#eager_autoload! to load all autoloaded files on demand (bpot) * Close pull request 461 - Allow string as delivery_method (skyeagle, radar) * Close pull request 407 - Do not require Net::IMAP or Net::POP if they're already loaded (bpot) * Close pull request 400 - Raise exception if delivery values or from values are missing completely from an email that is getting delivered (dmathieu) * Close pull request 397 - Support dots in local part of the addresses (eac) * Close pull request 477 - Fixed handling content_type with superfluous spaces (ledermann) * Close pull request 451 - Ignore nil in addresses so things do not blow up when e.g. a user had no email (grosser) * Close pull request 362 - Enable TLS in Ruby 1.8 (kingargyle) * Close pull request 358 - Fix Mail::CommonAddress#value=, Mail::CommonAddress#<< and Mail::Encodings.encode_non_usascii (mrkn) * Close pull request 350 - Makes mail Header object ennumerable (ged) Performance: * Close pull request 369 - Mail::Header#charset is called pretty often during header parser work (bogdan) * Close pull request 368 - Improve existing code by moving some objects to contstant instead of constructing them over and over again. (bogdan) * Close pull request 366 - Headers parsing performance optimization (bogdan) * Close pull request 365 - Add maximum_amount of parsed headers configuration parameter (bogdan) Bugs: * Close pull request 444 - Fix typo in spec (cczona) * Close pull request 439 - Fix Ruby 1.9 behaviour to match 1.8.7 behaviour on ignoring invalid or undefined characters (ochko) * Close pull request 430 - Unstructured field converts to string before calling encoding on it (brupm mikel) * Close pull request 424 - Use String#to_crlf instead of String#gsub (okkez) * Close pull request 429 - Fix an obvious bug in exim delivery_method (dskim) * Close pull request 425 - Remove Gemfile.lock from generated gem (kbackowski) * Close pull request 414 - Fix typo on "ignoring" (derwiki) * Close pull request 405 - Fix stack overflow (RegexpError) triggered by large emails with an envelope (bpot) * Close pull request 402 - Prevent InReplyTo, Keyword, References or ResentMessageId fields from generating lines longer than 998 chars (pplr) * Close pull request 391 - Fixed failed attachment parsing when file name in headers contains spaces and is not wrapped in quotes (danieltreacy) * Close pull request 385 - Fix Multibyte::Chars#upcase/downcase (technoweenie) * Close pull request 384 - copy dat unicode over from active support (technoweenie) * Close pull request 380 - Split strictly on MIME boundary lines (ConradIrwin) * Close pull request 277 - Fix specific email decoding failure example (yalab) * Close pull request 361 - Support 8bit encoding for ruby 1.9 (bogdan) * Close pull request 346 - Fix two bugs of TestRetriever (ermaker) * Close pull request 337 - Make the behavior of value_decode the same between Ruby 1.8 and Ruby 1.9. (kennyj) * Close pull request 336 - Fix more warning: possibly useless use of == in void context (kennyj) * Close pull request 293 - make charset and mime type more resliant to bad header values (kmeehl) * Fix failing spec Issue 453 on Ruby 1.9.3 * Fix mail reading: don't raise invalid byte sequence in UTF-8 when reading non-UTF-8 emails (mreinsch) * Close pull request 353 - define NilClass#blank? only if not defined yet (amatsuda) * Close pull request 357 - Fixes #349 an inverted condition on imap open read_only (felixroeser) * Remove duplicated line feed from regexp * Remove unused variable * Updated IMAP documentation * Tweak publisher
2013-03-10 09:07:38 +01:00
${GEM_LIBDIR}/lib/mail/check_delivery_params.rb
${GEM_LIBDIR}/lib/mail/configuration.rb
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/constants.rb
${GEM_LIBDIR}/lib/mail/core_extensions/smtp.rb
${GEM_LIBDIR}/lib/mail/core_extensions/string.rb
${GEM_LIBDIR}/lib/mail/elements.rb
${GEM_LIBDIR}/lib/mail/elements/address.rb
${GEM_LIBDIR}/lib/mail/elements/address_list.rb
${GEM_LIBDIR}/lib/mail/elements/content_disposition_element.rb
${GEM_LIBDIR}/lib/mail/elements/content_location_element.rb
${GEM_LIBDIR}/lib/mail/elements/content_transfer_encoding_element.rb
${GEM_LIBDIR}/lib/mail/elements/content_type_element.rb
${GEM_LIBDIR}/lib/mail/elements/date_time_element.rb
${GEM_LIBDIR}/lib/mail/elements/envelope_from_element.rb
${GEM_LIBDIR}/lib/mail/elements/message_ids_element.rb
${GEM_LIBDIR}/lib/mail/elements/mime_version_element.rb
${GEM_LIBDIR}/lib/mail/elements/phrase_list.rb
${GEM_LIBDIR}/lib/mail/elements/received_element.rb
${GEM_LIBDIR}/lib/mail/encodings.rb
${GEM_LIBDIR}/lib/mail/encodings/7bit.rb
${GEM_LIBDIR}/lib/mail/encodings/8bit.rb
${GEM_LIBDIR}/lib/mail/encodings/base64.rb
${GEM_LIBDIR}/lib/mail/encodings/binary.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/encodings/identity.rb
${GEM_LIBDIR}/lib/mail/encodings/quoted_printable.rb
${GEM_LIBDIR}/lib/mail/encodings/transfer_encoding.rb
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/encodings/unix_to_unix.rb
${GEM_LIBDIR}/lib/mail/envelope.rb
${GEM_LIBDIR}/lib/mail/field.rb
${GEM_LIBDIR}/lib/mail/field_list.rb
${GEM_LIBDIR}/lib/mail/fields.rb
${GEM_LIBDIR}/lib/mail/fields/bcc_field.rb
${GEM_LIBDIR}/lib/mail/fields/cc_field.rb
${GEM_LIBDIR}/lib/mail/fields/comments_field.rb
${GEM_LIBDIR}/lib/mail/fields/common/address_container.rb
${GEM_LIBDIR}/lib/mail/fields/common/common_address.rb
${GEM_LIBDIR}/lib/mail/fields/common/common_date.rb
${GEM_LIBDIR}/lib/mail/fields/common/common_field.rb
${GEM_LIBDIR}/lib/mail/fields/common/common_message_id.rb
${GEM_LIBDIR}/lib/mail/fields/common/parameter_hash.rb
${GEM_LIBDIR}/lib/mail/fields/content_description_field.rb
${GEM_LIBDIR}/lib/mail/fields/content_disposition_field.rb
${GEM_LIBDIR}/lib/mail/fields/content_id_field.rb
${GEM_LIBDIR}/lib/mail/fields/content_location_field.rb
${GEM_LIBDIR}/lib/mail/fields/content_transfer_encoding_field.rb
${GEM_LIBDIR}/lib/mail/fields/content_type_field.rb
${GEM_LIBDIR}/lib/mail/fields/date_field.rb
${GEM_LIBDIR}/lib/mail/fields/from_field.rb
${GEM_LIBDIR}/lib/mail/fields/in_reply_to_field.rb
${GEM_LIBDIR}/lib/mail/fields/keywords_field.rb
${GEM_LIBDIR}/lib/mail/fields/message_id_field.rb
${GEM_LIBDIR}/lib/mail/fields/mime_version_field.rb
${GEM_LIBDIR}/lib/mail/fields/optional_field.rb
${GEM_LIBDIR}/lib/mail/fields/received_field.rb
${GEM_LIBDIR}/lib/mail/fields/references_field.rb
${GEM_LIBDIR}/lib/mail/fields/reply_to_field.rb
${GEM_LIBDIR}/lib/mail/fields/resent_bcc_field.rb
${GEM_LIBDIR}/lib/mail/fields/resent_cc_field.rb
${GEM_LIBDIR}/lib/mail/fields/resent_date_field.rb
${GEM_LIBDIR}/lib/mail/fields/resent_from_field.rb
${GEM_LIBDIR}/lib/mail/fields/resent_message_id_field.rb
${GEM_LIBDIR}/lib/mail/fields/resent_sender_field.rb
${GEM_LIBDIR}/lib/mail/fields/resent_to_field.rb
${GEM_LIBDIR}/lib/mail/fields/return_path_field.rb
${GEM_LIBDIR}/lib/mail/fields/sender_field.rb
${GEM_LIBDIR}/lib/mail/fields/structured_field.rb
${GEM_LIBDIR}/lib/mail/fields/subject_field.rb
${GEM_LIBDIR}/lib/mail/fields/to_field.rb
${GEM_LIBDIR}/lib/mail/fields/unstructured_field.rb
${GEM_LIBDIR}/lib/mail/header.rb
${GEM_LIBDIR}/lib/mail/indifferent_hash.rb
${GEM_LIBDIR}/lib/mail/mail.rb
Update ruby-mail to 2.6.4. == Version 2.6.4 - Wed Mar 23 08:16 -0700 2016 Jeremy Daer <jeremydaer@gmail.com> Features: * #772 - Normalize encoding matchers (grosser) * #775 - Avoid failed encodings / stop bad charsets early (grosser) * #782 – Make the gem compatible with Rubinius (robin850) * #865 - Allow a body with an invalid encoding to be round tripped (kjg) * #866 - Support decoding message bodies with non-Ruby-standard charsets (jeremy) * #868 - Use the Ruby19.charset_encoder when decoding message bodies (kjg) * #872 - Low-level option to include BCC field in the encoded message (grossadamm) * #901 - Allow mail.text_part = '…' and mail.html_part = '<p>…</p>' (taavo) * #924 - Matcher for having attachments (schepedw) Performance: * #956 - Use native String#encode for CR/LF conversion (carsonreinke) * #970 - Support Ruby 2.3+ frozen string literals (twalpole) Bugs: * #719 - Fix to not extract header content that looks like its field name (kjg) * #789 - Fix encoding collapsing not dealing with multiple encodings in 1 line (grosser) * #808 - Mail::Field correctly responds_to? the methods of its instantiated field (thegcat) * #849 - Handle calling Part#inline? when the Content-Disposition field couldn't be parsed (kjg) * #874 – Stay under 1000-char SMTP line length limits (pushrax) * #877 - Make Mail::Field == other take the field value into account (kjg) * #907 - Mail::ContentDispositionField should work with nil value (kjg) * #910 - Mail::Address should handle b_value_encoded local and domain parts (kjg) * #918 - Account for possibility of absent delivery-status headers (kjg)
2016-10-15 15:59:37 +02:00
${GEM_LIBDIR}/lib/mail/matchers/attachment_matchers.rb
Update ruby-mail package to 2.4.4. == Version 2.4.4 - Wed Mar 14 22:44:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix security vulnerability allowing command line exploit when using file delivery method == Version 2.4.3 - Tue Mar 6 19:38:00 UTC 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix security vulnerability allowing command line exploit when using exim or sendmail from the command line * Change Mail#deliver! to also inform the interceptors * Encodings.value_decode(str): Treat lines with mixed encoding correctly when the line ends with a plain text part. == Thu Jan 19 13:49:34 UTC 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix non ascii character folding problems * Handle multipart mail in Mail::Message#to_yaml / #from_yaml * More warning fixes * Normalize the Parse Error class and messages * Fix for Mail::Encodings.unquote_and_convert not handling unquoted characters mixed in between quoted strings * Updated treetop to latest version, specs now run approximately 25-30% faster! * Version bump to 2.4.1 and gem release == Sun Jan 15 18:15:56 UTC 2011 Mikel Lindsaar <mikel@reinteractive.net> * Speed up reading of messages by about 12x * Added Message#without_attachments! that removes all message's attachments * Added shoulda-style RSpec matchers * Added support for @ in display name * Added support for the :tls and :ssl options * Added UTF-16 and UTF-32 support * Added Exim as it's own delivery manager * Added Ruby 1.9.3 compatibility * Fix for Sendmail return-path escaping * Fix for alias for SJIS was changed from shift_jis to windows-31J in Ruby 1.9.3 * Fix for undefined method 'constantize' error when no ActiveSupport loaded * Fix Mail::Field#== comparison * Fixed Regexp warning: character class has duplicated range * Fixed encoding non-latin names in addresses * Fixed issue with non-7bit attachment filenames * Now define String#blank? only if not defined yet * Decoding text parts using charset from Content-Type field * Per RFC 5322, do not accept emails with consecutive dots * Bunch of bug fixes from contributed pull requests * Travis CI setup and passing on 6 rubies * Upgrade RSpec to 2.8.0 * Lots of warnings fixed * Version bump to 2.4.0 and gem release
2012-03-17 17:06:54 +01:00
${GEM_LIBDIR}/lib/mail/matchers/has_sent_mail.rb
${GEM_LIBDIR}/lib/mail/message.rb
${GEM_LIBDIR}/lib/mail/multibyte.rb
${GEM_LIBDIR}/lib/mail/multibyte/chars.rb
${GEM_LIBDIR}/lib/mail/multibyte/unicode.rb
${GEM_LIBDIR}/lib/mail/multibyte/utils.rb
${GEM_LIBDIR}/lib/mail/network.rb
Update ruby-mail package to 2.4.4. == Version 2.4.4 - Wed Mar 14 22:44:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix security vulnerability allowing command line exploit when using file delivery method == Version 2.4.3 - Tue Mar 6 19:38:00 UTC 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix security vulnerability allowing command line exploit when using exim or sendmail from the command line * Change Mail#deliver! to also inform the interceptors * Encodings.value_decode(str): Treat lines with mixed encoding correctly when the line ends with a plain text part. == Thu Jan 19 13:49:34 UTC 2012 Mikel Lindsaar <mikel@reinteractive.net> * Fix non ascii character folding problems * Handle multipart mail in Mail::Message#to_yaml / #from_yaml * More warning fixes * Normalize the Parse Error class and messages * Fix for Mail::Encodings.unquote_and_convert not handling unquoted characters mixed in between quoted strings * Updated treetop to latest version, specs now run approximately 25-30% faster! * Version bump to 2.4.1 and gem release == Sun Jan 15 18:15:56 UTC 2011 Mikel Lindsaar <mikel@reinteractive.net> * Speed up reading of messages by about 12x * Added Message#without_attachments! that removes all message's attachments * Added shoulda-style RSpec matchers * Added support for @ in display name * Added support for the :tls and :ssl options * Added UTF-16 and UTF-32 support * Added Exim as it's own delivery manager * Added Ruby 1.9.3 compatibility * Fix for Sendmail return-path escaping * Fix for alias for SJIS was changed from shift_jis to windows-31J in Ruby 1.9.3 * Fix for undefined method 'constantize' error when no ActiveSupport loaded * Fix Mail::Field#== comparison * Fixed Regexp warning: character class has duplicated range * Fixed encoding non-latin names in addresses * Fixed issue with non-7bit attachment filenames * Now define String#blank? only if not defined yet * Decoding text parts using charset from Content-Type field * Per RFC 5322, do not accept emails with consecutive dots * Bunch of bug fixes from contributed pull requests * Travis CI setup and passing on 6 rubies * Upgrade RSpec to 2.8.0 * Lots of warnings fixed * Version bump to 2.4.0 and gem release
2012-03-17 17:06:54 +01:00
${GEM_LIBDIR}/lib/mail/network/delivery_methods/exim.rb
${GEM_LIBDIR}/lib/mail/network/delivery_methods/file_delivery.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/network/delivery_methods/logger_delivery.rb
${GEM_LIBDIR}/lib/mail/network/delivery_methods/sendmail.rb
${GEM_LIBDIR}/lib/mail/network/delivery_methods/smtp.rb
Update ruby-mail package 2.2.19, latest 2.2.x series. == Tue Apr 26 09:49:54 UTC 2011 Mikel Lindsaar <mikel@rubyx.com> * Update activesupport require to use inflector - closes #217 == Tue Apr 26 06:18:19 UTC 2011 Mikel Lindsaar <mikel@rubyx.com> * Fixed charset warning issue with multipart messages - https://github.com/arvindsv * Version bump to 2.2.18 and gem release == Wed 20 Apr 2011 15:16:20 UTC Mikel Lindsaar <mikel@rubyx.com> * Mail::Field.new("Subject: foobar", 'iso-2022-jp') does not set charset - https://github.com/yalab == Tue Apr 19 00:20:54 UTC 2011 Mikel Lindsaar <mikel@rubyx.com> * Fixed an exception with nil in Reply-To and References field - https://github.com/dcormier * Version bump to 2.2.17 and gem release == Sat Apr 16 12:57:27 UTC 2011 Mikel Lindsaar <mikel@rubyx.com> * Added support for open SMTP connections and returning the Mail server's response - https://github.com/spiegela * RE: not appended to subject when replying to a reply - https://github.com/prateekdayal * Support not ascii compatible charset mail send - https://github.com/yalab * Fix for issue 208 "mail.body after mail.add_file truncates message body" - https://github.com/glongman * Handle bad subject encoding (or ":invalid => :replace" is ineffective for utf-8 to utf-8 encoding) - https://github.com/choonkeat * Handle blank Received header field - https://github.com/bcantin * Handle part with missing content type - https://github.com/bcantin * Handle a "<>" Return field - https://github.com/bcantin * Performance improvements for 1.9 - https://github.com/nobu * Fix heavy CPU issues when messages are missing a space - https://github.com/scsmith * Tighten up allowed encodings - https://github.com/scsmith * Added to_yaml & from_yaml (as well as to_hash & from_hash) - https://github.com/srushti * Fix up some comments - https://github.com/takahashim * Version bump to 2.2.16 and gem release
2011-06-11 04:49:39 +02:00
${GEM_LIBDIR}/lib/mail/network/delivery_methods/smtp_connection.rb
${GEM_LIBDIR}/lib/mail/network/delivery_methods/test_mailer.rb
${GEM_LIBDIR}/lib/mail/network/retriever_methods/base.rb
${GEM_LIBDIR}/lib/mail/network/retriever_methods/imap.rb
${GEM_LIBDIR}/lib/mail/network/retriever_methods/pop3.rb
${GEM_LIBDIR}/lib/mail/network/retriever_methods/test_retriever.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parser_tools.rb
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers.rb
${GEM_LIBDIR}/lib/mail/parsers/address_lists_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/address_lists_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/content_disposition_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/content_disposition_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/content_location_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/content_location_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/content_transfer_encoding_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/content_transfer_encoding_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/content_type_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/content_type_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/date_time_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/date_time_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/envelope_from_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/envelope_from_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/message_ids_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/message_ids_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/mime_version_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/mime_version_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/phrase_lists_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/phrase_lists_parser.rl
Update ruby-mail to 2.6.3. == Version 2.6.3 - Mon Nov 3 23:53 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> * #796 support uu encoding (grosser) == Version 2.6.2 (Unreleased) - Wed Oct 22 13:42 -0500 2014 Benjamin Fleischer <github@benjaminfleischer.com> Performance: * #681 - fewer hotspot object allocations (srawlins) * #815 - autoload parsers for load-time speed and memory usage (grosser) Bugs: * #736 - Mail.new copes with non-UTF8 messages marked as UTF8 (jeremy) == Version 2.6.1 - Sun Jun 8 15:34 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Silence warnings on loading ragel-generated parsers (bf4) == Version 2.6.0 - Mon Jun 2 22:49 +1100 2014 Mikel Lindsaar <mikel@reinteractive.net> Features: * Allow interceptors and observers to be unregistered (zuhao) * Added feature to find the mail in uid (taketin) * Save settings passed to TestMailer#new (svanderbleek) * Allow the setting of envelope from directly (jeremy) * Accept other IETF/IANA-registered Content-Types and Content-Transfer-Encodings (jeremy) * Alias shift-jis charset to Shift_JIS Ruby encoding (jeremy) * Add support for ks_c_5601-1987 charset, aliased to CP949 Ruby encoding (jeremy) * Don't allow colons in header names (jeremy) * Can assign arrays of Message-IDs to References and In-Reply-To (jeremy) * Setting the html_ or text_part sets a default text/html or text/plain content type (jeremy) * Setting the html_ or text_part to nil removes it (jeremy) * Addresses without a parsable email or display name still format as their raw text (jeremy) * Close pull request 504 - Alias GB2312 charset to GB18030 Ruby encoding (bpot) * Close pull request 399 - Accept :ca_path and :ca_file options for SMTP delivery (ndbroadbent) * Close pull request 389 - Don't add superfluous message headers to MIME parts (djmaze, jeremy) Performance: * Migrate to RAGEL based parser, awesome work by (bpot) * Performance improvements for people parsing email headers (ConradIrwin) * Close pull request 488 - Speed up field construction & comparison (bpot) Bugs: * Fix for when content looks like field name (kjg) * Don't change original when you change a copy (TylerRick) * Don't include separating semicolon in paramter value when sanitizing (bpot) * Fix fencepost encoding problem with binhex strings and only one token (drasch) * Fix sendmail delivery to addresses with a leading hyphen (lifo, jeremy) * Correctly format mbox From headers per RFC4155 (bpot, jeremy) * Fix bogus '=' at the end of some quoted-printable messages (jeremy) * Shouldn't be fooled into encoding strings on 1.8 by unrelated Encoding constant (emiellohr, jeremy) * Header encoding should be US-ASCII, not the default external encoding (jeremy) * Address elements should return decoded display names by default (jeremy) * Fix up tests that depend on utf-8 external encoding; read fixtures as binary (jeremy) * Capture stderr from Sendmail and Exim deliveries (jeremy) * RFC2822 quoted_string content may be empty (jeremy) * Calling #to_s on a field with a nil value returns an empty string instead of nil (jeremy) * The Received header may contain zero name/value pairs, qmail-style (jeremy) * Fix that setting an attachment with a :mime_type and :encoding would override the :encoding (jeremy) * Fix that declaring an html_part but no text_part would use multipart/alternative anyway (jeremy) * Close pull request 508 - Don't add an extra CRLF to MIME parts; split MIME parts on correct CRLF boundaries (Aalanar) * Close pull request 506 - Escape backslashes in quoted strings (ConradIrwin) * Close pull request 496 - Correctly handle quoted-printable line breaks (jeremy) * Close pull request 493 - Repair misencoded quoted-printable line breaks (jeremy) * Close pull request 487 - Extract comments from group email addresses (bpot) * Close pull request 481 - Correctly quote filename attributes (bpot) * Close pull request 480 - Support mixed encodings in a single header body (adamvaughan) * Close pull request 471 - Fix Ruby 1.8 build when UTF16/32 default to little-endian (kennyj) Coping with third-party bugs: * Parse multipart boundary from Content-Type headers containing extra semicolons (jeremy) * Close pull request 389 - Only add Content-ID to inline attachments to appease Outlook (djmaze, jeremy) Housekeeping: * Add development gem dependency on rdoc (jeremy) * Refresh Bundler dependencies & setup (jeremy) * Remove i18n dependency and last vestiges of activesupport dependency in specs (jeremy) * Clarify that Sender is a single address, not an address list (jeremy) * Add an MIT-LICENSE file to make licensing clear & obvious; update to 2013 (jeremy) * Close pull request 501 - Tighten up header/body whitespace splitting (ConradIrwin) * Close pull request 499 - Clean up some dead code (ConradIrwin) * Close pull request 489, 495 - Docs typos (JackDanger, francois) * Close pull request 485 - Be explicit about unsupported address parsing (bpot) * Close pull request 484 - Remove #tree specs in preparation for deprecation removal (bpot) * Close pull request 482 - Update address field specs to reflect to #initialize API (bpot) * Close pull request 475 - Shush warning on Object#blank? redefinition (amatsuda) * Close pull request 472 - Clean up UTF8/UTF-8 internals (kennyj)
2015-02-04 16:20:39 +01:00
${GEM_LIBDIR}/lib/mail/parsers/received_parser.rb
mail/ruby-mail: update to 2.7 Version 2.7.0 (2017-10-31) Security: * #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy) Features: * #647 – IMAP: specify IMAP server search charset with Mail.find(search_charset: 'UTF-8'). (yalab) * #650 - UTF-7 charset support. (johngrimes) * #664 - RSpec: with_html and with_text matchers. (zakkie) * #723 – IMAP: support `enable_starttls: true` for TLS upgrade on non-IMAPS/SSL servers. (doits) * #804 - Configurable SMTP open_timeout and read_timeout. (ankane) * #853 - `Mail::Message#set_sort_order` overrides the default message part sort order. (rafbm) * #856 - Added :logger delivery method. (zacholauson) * #900 - Support non-instance_eval builder API. Yield self to Mail.new if the provided block takes any arguments. (taavo) * #1065 - Require STARTTLS using :enable_starttls. (bk2204) * #1002 - Transcoding replaces invalid chars with "�" instead of discarding them. (kjg) * #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as Integer. (peterkovacs) * #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and `is_utf8?` since they are no longer used by Mail internals. (metcalf) * #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`, `constantize`, `first`, `to` to avoid monkey patching the standard library. (metcalf) * #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with unparsed header fields. (jeremy) * #1117 - Configurable POP3 read_timeout. (hspazio) Performance: * #1059 - Switch from mime-types to mini_mime for a much smaller memory footprint. (SamSaffron) * #1119 - Speed up large attachment encoding by memoizing slow ASCII-only checks. (dalibor) Compatibility: * #464 - Improve attachment filename detection by preferring Content-Disposition filename. (lawrencepit) * #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four args. (lawrencepit) * #558 - Parser: cope with unknown charsets in header fields by falling back to ASCII. (boesemar) * #655 - Sort attachments to the end of the parts list to work around email clients that may mistake a text attachment for the message body. (npickens) * #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated newlines on Ruby 1.8 and 1.9. (yyyc514) * #766 - No longer strip 'Subject: ' from legit subject lines. (grosser) * #982 – Faithfully preserve unfolded whitespace rather than collapsing to a single space. (jeremy) * #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy) * #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek) * #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in Ruby. (jeremy) * #1114 – Setting `mail.body = …` on a multipart message now adds a new text part instead of adding a raw MIME part. (jeremy) * #1159 – Parse emails with n newlines so long as they have no binary content. (jeremy) Bugs: * #539 - Fix that whitespace-only continued headers would be incorrectly parsed as the break between headers and body. (ConradIrwin) * #605 - Fix Mail::Address#name for nil addresses (peterkovacs) * #684 - Fix recursively fetching attachments from an embedded message/rfc822 part whose Content-Type header has additional parameters. (vongruenigen) * #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb) * #792 - Allow blank filenames in Content-Disposition field. (robinroestenburg) * #876 - Strip valid RFC-1342 separator characters between non-matching encoded-words. (Caleb W. Corliss) * #895 - Fix that Mail::Message#add_file was adding a stray filename header. (kirikak2) * #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23) * #978 - Fix for invalid chars being left in a string for invalid b_value from encoding. (kjg) * #996 - Fix that multipart/mixed emails with a delivery-status part could be interpreted as bounces. (kjg) * #998 - Fix header parameter parsing (such as attachment names) for values encoded with a blank charset or language code. (kjg) * #1000 - Fix header parameter parsing (such as attachment names) to transcode to UTF-8 (kjg) * #1003 - Fix decoding some b encoded headers on specific rubies that don't account for lack of base64 padding (kjg) * #1020 - Don't set SMTP verify mode to nil when config was not provided. (jhass) * #1023 - Fix double-quoting in display names. (garethrees) * #1032 - Fix that comparing messages changed their raw Message-ID to their parsed message_id. (bobjflong) * #1074 - Fix that the first address in a list is dropped when a subsequent address has non-US-ASCII characters. (domininik) * #1107 - Fix Address#display_name and other formatting flip-flopping between encoded and decoded forms depending on whether #encoded or #decoded was called last. (jeremy) * #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by calling force_encoding on it. (jeremy) * #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik) * #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy) * #1131 - Fix that Message#without_attachments! didn't parse the remaining parts. (jeremy) * #1019 - Fix b value encoder incorrectly splitting multibyte characters. (Kenneth-KT) * #1157 - Fix base64 attachment transfer encoding being overridden by quoted-printable. (dalibor)
2018-03-14 15:46:07 +01:00
${GEM_LIBDIR}/lib/mail/parsers/received_parser.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc2045_content_transfer_encoding.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc2045_content_type.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc2045_mime.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc2183_content_disposition.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc3629_utf8.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc5234_abnf_core_rules.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc5322.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc5322_address.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc5322_date_time.rl
${GEM_LIBDIR}/lib/mail/parsers/rfc5322_lexical_tokens.rl
${GEM_LIBDIR}/lib/mail/part.rb
${GEM_LIBDIR}/lib/mail/parts_list.rb
${GEM_LIBDIR}/lib/mail/utilities.rb
Update ruby-mail to 2.5.3. == HEAD == Version 2.5.3 - Sun Dec 4 15:52:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Close pull request 468 - Remove debug output to STDOUT (tadman) * Fix up spec warnings * Remove un needed require * Ensure spec_helper constants only defined once * Use stub against time instead of DateTime to avoid double redefinition error == Version 2.5.2 - Sun Nov 18 15:01:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Removing double loading of treetop parsers to remove warnings * Making parsers auto compile on spec suite and load in production code to avoid error that caused yank of 2.5.0 * Reapply pull request 443 - CC fields with semicolon are now parsed right (paulwittmann) == Version 2.5.1 - Sun Nov 18 14:01:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> * Yanked 2.5.0 * Reverted pull request 443 - CC fields with semicolon are now parsed right (paulwittmann) == Version 2.5.0 - Sun Nov 18 12:20:00 +1100 2012 Mikel Lindsaar <mikel@reinteractive.net> Features: * Close pull request 406 - Add Mail#eager_autoload! to load all autoloaded files on demand (bpot) * Close pull request 461 - Allow string as delivery_method (skyeagle, radar) * Close pull request 407 - Do not require Net::IMAP or Net::POP if they're already loaded (bpot) * Close pull request 400 - Raise exception if delivery values or from values are missing completely from an email that is getting delivered (dmathieu) * Close pull request 397 - Support dots in local part of the addresses (eac) * Close pull request 477 - Fixed handling content_type with superfluous spaces (ledermann) * Close pull request 451 - Ignore nil in addresses so things do not blow up when e.g. a user had no email (grosser) * Close pull request 362 - Enable TLS in Ruby 1.8 (kingargyle) * Close pull request 358 - Fix Mail::CommonAddress#value=, Mail::CommonAddress#<< and Mail::Encodings.encode_non_usascii (mrkn) * Close pull request 350 - Makes mail Header object ennumerable (ged) Performance: * Close pull request 369 - Mail::Header#charset is called pretty often during header parser work (bogdan) * Close pull request 368 - Improve existing code by moving some objects to contstant instead of constructing them over and over again. (bogdan) * Close pull request 366 - Headers parsing performance optimization (bogdan) * Close pull request 365 - Add maximum_amount of parsed headers configuration parameter (bogdan) Bugs: * Close pull request 444 - Fix typo in spec (cczona) * Close pull request 439 - Fix Ruby 1.9 behaviour to match 1.8.7 behaviour on ignoring invalid or undefined characters (ochko) * Close pull request 430 - Unstructured field converts to string before calling encoding on it (brupm mikel) * Close pull request 424 - Use String#to_crlf instead of String#gsub (okkez) * Close pull request 429 - Fix an obvious bug in exim delivery_method (dskim) * Close pull request 425 - Remove Gemfile.lock from generated gem (kbackowski) * Close pull request 414 - Fix typo on "ignoring" (derwiki) * Close pull request 405 - Fix stack overflow (RegexpError) triggered by large emails with an envelope (bpot) * Close pull request 402 - Prevent InReplyTo, Keyword, References or ResentMessageId fields from generating lines longer than 998 chars (pplr) * Close pull request 391 - Fixed failed attachment parsing when file name in headers contains spaces and is not wrapped in quotes (danieltreacy) * Close pull request 385 - Fix Multibyte::Chars#upcase/downcase (technoweenie) * Close pull request 384 - copy dat unicode over from active support (technoweenie) * Close pull request 380 - Split strictly on MIME boundary lines (ConradIrwin) * Close pull request 277 - Fix specific email decoding failure example (yalab) * Close pull request 361 - Support 8bit encoding for ruby 1.9 (bogdan) * Close pull request 346 - Fix two bugs of TestRetriever (ermaker) * Close pull request 337 - Make the behavior of value_decode the same between Ruby 1.8 and Ruby 1.9. (kennyj) * Close pull request 336 - Fix more warning: possibly useless use of == in void context (kennyj) * Close pull request 293 - make charset and mime type more resliant to bad header values (kmeehl) * Fix failing spec Issue 453 on Ruby 1.9.3 * Fix mail reading: don't raise invalid byte sequence in UTF-8 when reading non-UTF-8 emails (mreinsch) * Close pull request 353 - define NilClass#blank? only if not defined yet (amatsuda) * Close pull request 357 - Fixes #349 an inverted condition on imap open read_only (felixroeser) * Remove duplicated line feed from regexp * Remove unused variable * Updated IMAP documentation * Tweak publisher
2013-03-10 09:07:38 +01:00
${GEM_LIBDIR}/lib/mail/values/unicode_tables.dat
${GEM_LIBDIR}/lib/mail/version.rb
${GEM_LIBDIR}/lib/mail/version_specific/ruby_1_8.rb
${GEM_LIBDIR}/lib/mail/version_specific/ruby_1_9.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec