summaryrefslogtreecommitdiffstats
path: root/config/environments
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-05-27 10:57:13 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-05-27 10:57:13 +0000
commitf04225321c3ea0b56699fd667611ec867c6c458d (patch)
tree7d70c4367f08c71535891e03928e842434e82dfe /config/environments
parentf12315075fc5780c68093610295ace7ae2c4ac78 (diff)
downloadredmine-f04225321c3ea0b56699fd667611ec867c6c458d.tar.gz
redmine-f04225321c3ea0b56699fd667611ec867c6c458d.zip
Account information can now be sent to the user when creating an account.
ActionMailer logger set to nil for production environment to disable email contents output in production.log git-svn-id: http://redmine.rubyforge.org/svn/trunk@546 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/environments')
-rw-r--r--config/environments/production.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb
index 4cd4e086b..eeafd959e 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -17,4 +17,6 @@ config.action_controller.perform_caching = true
# Disable delivery errors if you bad email addresses should just be ignored
config.action_mailer.raise_delivery_errors = false
-
+
+# No email in production log
+config.action_mailer.logger = nil