Sha256: 2082dd61e8ee6acde769be88f1d6c9e1a79117233fa22f22c2287f9eb9dd1109
Contents?: true
Size: 723 Bytes
Versions: 26
Compression:
Stored size: 723 Bytes
Contents
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ # # Configure ActionMailer unless running tests # ActionMailer is setup in test mode later on # unless Rails.env.test? smtp_settings = Setting.smtp || {} if smtp_settings["address"].present? Rails.application.config.action_mailer.smtp_settings = smtp_settings.symbolize_keys end if (host = Setting.host).present? (Rails.application.routes.default_url_options ||= {})[:host] = host.gsub('http://', '') end end
Version data entries
26 entries across 26 versions & 2 rubygems