+# Include your application configuration below
+SERVER_URL = ENV['OSM_SERVER_URL'] || 'www.openstreetmap.org'
+
+ActionMailer::Base.server_settings = {
+ :address => "localhost",
+ :port => 25,
+ :domain => 'localhost',
+}
+
+
+# HTTP CODES
+
+# 200's
+
+HTTP_OK = 200
+
+# 400's
+
+HTTP_PRECONDITION_FAILED = 412
+HTTP_EXPECTATION_FAILED = 417
+
+
+