]> git.openstreetmap.org Git - rails.git/blob - config/initializers/action_mailer.rb
Get OAuth working, including a hack for Potlatch
[rails.git] / config / initializers / action_mailer.rb
1 # Configure ActionMailer SMTP settings
2 ActionMailer::Base.smtp_settings = {
3   :address => 'localhost',
4   :port => 25, 
5   :domain => 'localhost',
6   :enable_starttls_auto => false
7 }
8
9 # Monkey patch to allow sending of messages in specific locales
10 module ActionMailer
11   class Base
12     adv_attr_accessor :locale
13
14     def mail_with_locale(*args)
15       old_locale= I18n.locale
16
17       begin
18         I18n.locale = @locale
19         message = mail_without_locale(*args)
20       ensure
21         I18n.locale = old_locale
22       end
23
24       message
25     end
26
27     alias_method_chain :mail, :locale
28   end
29 end