Archive for

December, 2007

...

Shamu show, San Diego

no comments


From San Diego Sea World.

Lightroom 1.3.1 released

no comments

Finally, they fixed the idiotic “import from card” problem with Leopard. I wonder how they shipped it in the first place with that bug.

Rails v2.0 undefined method `server_settings=’ for ActionMailer::Base:Class (NoMethodError)

6 comments

The 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.