Skip to content

Commit

Permalink
Added additional information about processing email with ActionMailer…
Browse files Browse the repository at this point in the history
… and the strategy one might want to employ to do so.
  • Loading branch information
monde committed May 9, 2008
1 parent c99e54f commit e6823bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion actionmailer/README
Expand Up @@ -78,10 +78,15 @@ Example:
end end
end end


This Mailman can be the target for Postfix. In Rails, you would use the runner like this: This Mailman can be the target for Postfix or other MTAs. In Rails, you would use the runner in the
trivial case like this:


./script/runner 'Mailman.receive(STDIN.read)' ./script/runner 'Mailman.receive(STDIN.read)'


However, invoking Rails in the runner for each mail to be received is very resource intensive. A single
instance of Rails should be run within a daemon if it is going to be utilized to process more than just
a limited number of email.

== Configuration == Configuration


The Base class has the full list of configuration options. Here's an example: The Base class has the full list of configuration options. Here's an example:
Expand Down

0 comments on commit e6823bb

Please sign in to comment.