Next | Query returned 26 messages, browsing 21 to 30 | previous

History of commit frequency

CVS Commit History:


   2006-10-10 01:09:44 by Min Sik Kim | Files touched by this commit (2)
Log message:
Update ruby-actionmailer to 1.2.5.

Changes since 1.1.1:
* Backport of documentation enhancements. [Kevin Clark, Marcel Molina Jr]
* Correct spurious documentation example code which results in a
  SyntaxError. [Marcel Molina Jr.]
* Mailer template root applies to a class and its subclasses rather than
  acting globally. #5555 [somekool@gmail.com]
* Nil charset caused subject line to be improperly quoted in implicitly
  multipart messages #2662 [ehalvorsen+rails@runbox.com]
* Parse content-type apart before using it so that sub-parts of the header
  can be set correctly #2918 [Jamis Buck]
* Make custom headers work in subparts #4034 [elan@bluemandrill.com]
* Template paths with dot chars in them no longer mess up implicit template
  selection for multipart messages #3332 [Chad Fowler]
* Make sure anything with content-disposition of "attachment" is passed to
  the attachment presenter when parsing an email body [Jamis Buck]
* Make sure TMail#attachments includes anything with content-disposition of
  "attachment", regardless of content-type [Jamis Buck]
* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
* Stricter matching for implicitly multipart filenames excludes files
  ending in unsupported extensions (such as foo.rhtml.bak) and without a
  two-part content type (such as foo.text.rhtml or
  foo.text.really.plain.rhtml). #2398 [Dave Burt <dave@burt.id.au>, Jeremy
  Kemper]
* Allow Mailers to have custom initialize methods that set default instance
  variables for all mail actions #2563 [mrj@bigpond.net.au]
   2006-01-03 15:25:51 by Takahiro Kambe | Files touched by this commit (55) | Package updated
Log message:
Stop handling DIST_SUBDIR default for Ruby based packages.
Second, update distinfo and/or stop using USE_RUBY_DIST_SUBDIR in Makefiles.
   2005-11-02 16:07:46 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update mail/ruby-actionmailer pacakge to 1.1.1.

*1.1.1* (October 19th, 2005)

* Upgraded to Action Pack 1.10.1

*1.1.0* (October 16th, 2005)

* Update and extend documentation (rdoc)

* Minero Aoki made TMail available to Rails/ActionMailer under the MIT
  license (instead of LGPL) [RubyConf '05]

* Austin Ziegler made Text::Simple available to Rails/ActionMailer
  under a MIT-like licens [See rails ML, subject "Text::Format Licence
  Exception" on Oct 15, 2005]

* Fix vendor require paths to prevent files being required twice

* Don't add charset to content-type header for a part that contains
  subparts (for AOL compatibility) #2013 [John Long]

* Preserve underscores when unquoting message bodies #1930

* Encode multibyte characters correctly #1894

* Multipart messages specify a MIME-Version header automatically #2003 [John Long]

* Add a unified render method to ActionMailer (delegates to ActionView::Base#render)

* Move mailer initialization to a separate (overridable) method, so
  that subclasses may alter the various defaults #1727

* Look at content-location header (if available) to determine filename
  of attachments #1670

* ActionMailer::Base.deliver(email) had been accidentally removed, but
  was documented in the Rails book #1849

* Fix problem with sendmail delivery where headers should be delimited
  by \n characters instead of \r\n, which confuses some mail readers
  #1742 [Kent Sibilev]
   2005-09-04 16:12:31 by Takahiro Kambe | Files touched by this commit (4)
Log message:
Update ruby-actionmailer to 1.0.1.

*1.0.1* (11 July, 2005)

* Bind to Action Pack 1.9.1

*1.0.0* (6 July, 2005)

* Avoid adding nil header values #1392

* Better multipart support with implicit multipart/alternative and sorting of \ 
subparts [John Long]

* Allow for nested parts in multipart mails #1570 [Flurin Egger]

* Normalize line endings in outgoing mail bodies to "\n" #1536 [John Long]

* Allow template to be explicitly specified #1448 [tuxie@dekadance.se]

* Allow specific "multipart/xxx" content-type to be set on multipart \ 
messages #1412 [Flurin Egger]

* Unquoted @ characters in headers are now accepted in spite of RFC 822 #1206

* Helper support (borrowed from ActionPack)

* Silently ignore Errno::EINVAL errors when converting text.

* Don't cause an error when parsing an encoded attachment name #1340 \ 
[lon@speedymac.com]

* Nested multipart message parts are correctly processed in TMail::Mail#body

* BCC headers are removed when sending via SMTP #1402

* Added 'content_type' accessor, to allow content type to be set on a \ 
per-message basis. content_type defaults to "text/plain".

* Silently ignore Iconv::IllegalSequence errors when converting text #1341 \ 
[lon@speedymac.com]

* Support attachments and multipart messages.

* Added new accessors for the various mail properties.

* Fix to only perform the charset conversion if a 'from' and a 'to' charset are \ 
given (make no assumptions about what the charset was) #1276 [Jamis Buck]

* Fix attachments and content-type problems #1276 [Jamis Buck]

* Fixed the TMail#body method to look at the content-transfer-encoding header \ 
and unquote the body according to the rules it specifies #1265 [Jamis Buck]

* Added unquoting even if the iconv lib can't be loaded--in that case, only the \ 
charset conversion is skipped #1265 [Jamis Buck]

* Added automatic decoding of base64 bodies #1214 [Jamis Buck]

* Added that delivery errors are caught in a way so the mail is still returned \ 
whether the delivery was successful or not

* Fixed that email address like "Jamis Buck, M.D." \ 
<wild.medicine@example.net> would cause the quoter to generate emails \ 
resulting in "bad address" errors from the mail server #1220 [Jamis \ 
Buck]

*0.9.1* (20th April, 2005)

* Depend on Action Pack 1.8.1

*0.9.0* (19th April, 2005)

* Added that deliver_* will now return the email that was sent

* Added that quoting to UTF-8 only happens if the characters used are in that \ 
range #955 [Jamis Buck]

* Fixed quoting for all address headers, not just to #955 [Jamis Buck]

* Fixed unquoting of emails that doesn't have an explicit charset #1036 \ 
[wolfgang@stufenlos.net]
   2005-04-10 06:15:44 by Min Sik Kim | Files touched by this commit (4)
Log message:
Install required files not installed by the install script, and add a
missing dependency.  Bump PKGREVISION.
   2005-04-10 04:04:54 by Min Sik Kim | Files touched by this commit (4) | Imported package
Log message:
Import ruby-actionmailer.

Action Mailer is framework for designing email-service layers.  These
layers are used to consolidate code for sending out forgotten
passwords, welcoming wishes on signup, invoices for billing, and any
other use case that requires a written notification to either a person
or another system.  Additionally, an Action Mailer class can be used
to process incoming email, such as allowing a weblog to accept new
posts from an email (which could even have been sent from a phone).


Next | Query returned 26 messages, browsing 21 to 30 | previous