]> git.openstreetmap.org Git - rails.git/blobdiff - config/application.rb
Set default_url_options for action_mailer
[rails.git] / config / application.rb
index 02dd1d2b296867520fcdc7c0f521d2c1e025ab1a..3220ab5916fea0717ca2316debb051d9496ef590 100644 (file)
@@ -34,9 +34,7 @@ module OpenStreetMap
     config.paths["app/models"].skip_eager_load! if STATUS == :database_offline
 
     # Use memcached for caching if required
-    if defined?(MEMCACHE_SERVERS)
-      config.cache_store = :mem_cache_store, MEMCACHE_SERVERS, { :namespace => "rails:cache" }
-    end
+    config.cache_store = :mem_cache_store, MEMCACHE_SERVERS, { :namespace => "rails:cache" } if defined?(MEMCACHE_SERVERS)
 
     # Use logstash for logging if required
     if defined?(LOGSTASH_PATH)
@@ -46,7 +44,7 @@ module OpenStreetMap
       config.logstasher.log_controller_parameters = true
     end
 
-    # Configure image optimisation
-    config.assets.image_optim = YAML.load_file(Rails.root.join("config", "image_optim.yml"))
+    # Set the host and protocol for all action mailer urls
+    config.action_mailer.default_url_options = { :host => SERVER_URL, :protocol => SERVER_PROTOCOL }
   end
 end