I am trying to run a basic example of an email processing application. Nothing unusual, just the most functional at the moment. I installed Fetcher, configured YAML, updated the receiver, and created the IncomingMailHandler class.
When I go to start FetcherDaemon, I get the following error.
/Library/Ruby/Gems/1.8/gems/activesupport-2.3.2/lib/active_support/dependencies.rb:105: in `const_missing ': uninitialized constant MailerDaemonFetcherDaemon :: IncomingMailHandler (NameError)
I am using Rails 2.3.2 with the latest Fetcher plugin. The IncomingMailHandler class in my dir directory is as follows:
class IncomingMailHandler < ActionMailer::Base def receive(email) logger.info("Got a mail about: #{mail.subject}") end end
Help!
Mark
source share