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.