This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
jonhdahl (author)
Wed Mar 21 10:33:24 -0700 2007
| name | age | message | |
|---|---|---|---|
| |
LICENSE | Wed Mar 21 10:04:11 -0700 2007 | [jonhdahl] |
| |
README | Wed Mar 21 10:33:24 -0700 2007 | [jonhdahl] |
| |
Rakefile | Wed Mar 21 10:04:11 -0700 2007 | [jonhdahl] |
| |
init.rb | Wed Mar 21 10:04:11 -0700 2007 | [jonhdahl] |
| |
install.rb | Wed Mar 21 10:04:11 -0700 2007 | [jonhdahl] |
| |
lib/ | Wed Mar 21 10:04:11 -0700 2007 | [jonhdahl] |
| |
templates/ | Wed Mar 21 10:33:24 -0700 2007 | [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!



