X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/a12d4f62752f546f57421244e370e79965706ffb..607f3a343ea400e558cc47a7c6dc508f9bafcfd2:/config/environment.rb diff --git a/config/environment.rb b/config/environment.rb index 34a2d87..66e5c62 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -50,8 +50,30 @@ end # inflect.uncountable %w( fish sheep ) # end +MAIL_CONFIG = { :from => 'HyperChad '} + # Include your application configuration below require 'uniq_token' require 'randarray' require 'rubyvote' +class String + def capitalize + if self.length <= 1 + self.upcase + else + self.split(//)[0].upcase + self..split(//)[1..-1].join("") + end + end +end + +module LoginEngine + config :salt, "voothingboat" + config :email_from, MAIL_CONFIG[:from] +end + +Engines.start :login + +# action mailer configuration +ActionMailer::Base.delivery_method = :sendmail +ActionMailer::Base.default_charset = "utf-8"