summaryrefslogtreecommitdiff
path: root/mail/ruby-actionmailer
AgeCommit message (Collapse)AuthorFilesLines
2006-01-03Stop handling DIST_SUBDIR default for Ruby based packages.taca1-4/+4
Second, update distinfo and/or stop using USE_RUBY_DIST_SUBDIR in Makefiles.
2005-11-02Update mail/ruby-actionmailer pacakge to 1.1.1.taca3-37/+20
*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-04Update ruby-actionmailer to 1.0.1.taca4-31/+15
*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-10Install required files not installed by the install script, and add aminskim4-3/+29
missing dependency. Bump PKGREVISION.
2005-04-10Import ruby-actionmailer.minskim4-0/+67
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).