public
Description: git svn clone - configure email.yml like database.yml
Homepage: http://slantwise.rubyforge.org/yaml_mail_config
Clone URL: git://github.com/nofxx/yaml_mail_config.git
name age message
file LICENSE Wed Mar 21 10:04:11 -0700 2007 moved plugins to name/trunk format instead of t... [jonhdahl]
file README Wed Mar 21 10:33:24 -0700 2007 improvements to plugin documentation [jonhdahl]
file Rakefile Wed Mar 21 10:04:11 -0700 2007 moved plugins to name/trunk format instead of t... [jonhdahl]
file init.rb Wed Mar 21 10:04:11 -0700 2007 moved plugins to name/trunk format instead of t... [jonhdahl]
file install.rb Wed Mar 21 10:04:11 -0700 2007 moved plugins to name/trunk format instead of t... [jonhdahl]
directory lib/ Wed Mar 21 10:04:11 -0700 2007 moved plugins to name/trunk format instead of t... [jonhdahl]
directory templates/ Wed Mar 21 10:33:24 -0700 2007 improvements to plugin documentation [jonhdahl]
README
= YAML Mail Config

YAML Mail Config moves ActionMailer configuration to a YAML file in your 
<tt>config/</tt> folder, just like your database definitions. 

Install with:

  script/plugin install svn://rubyforge.org/var/svn/slantwise/yaml_mail_config/trunk yaml_mail_config

To use, simply create a <tt>config/email.yml</tt> file that follows the sample 
pattern below. (A sample email.yml template file is found in the templates/ 
directory of this plugin.)

Sample:

  development:
    server: mail.domain.com
    port: 25
    domain: domain.com
    authentication: login
    username: email_account_login
    password: email_account_password
  production:
    server: mail.domain.com
    port: 465
    domain: domain.com
    authentication: login
    username: email_account_login
    password: email_account_password
    tls: true
  

Thanks to Sebastien Grosjean (http://seb.box.re/) for the idea and the initial
codebase for this plugin!