
From San Diego Sea World.
Archive for
December, 2007
...
December 30, 2007 2:09 pm
December 8, 2007 11:35 am
Finally, they fixed the idiotic “import from card” problem with Leopard. I wonder how they shipped it in the first place with that bug.
December 7, 2007 9:52 pm
Rails v2.0 undefined method `server_settings=’ for ActionMailer::Base:Class (NoMethodError)
6 commentsThe first thing that bit me after moving to Rails V2.0 was action_mailer settings that failed:
undefined method `server_settings=’ for ActionMailer::Base:Class (NoMethodError)
server_settings has been renamed to smtp_settings
Change your environment.rb to:
config.action_mailer.smtp_settings = {
….
}
That fixed the problem.