Hey hey, I have a project in which I''m processing kagi payment emails using script/runner. If you''re also using script/runner and ActionMailer for email processing, how are you dealing with the queuing of the emails for processing whilst the rails app is down for maintenance (for example, for a code update)? -- Tim Lucas
On 9/20/05, Tim Lucas <t.lucas-l/qNJNvq70OzaBltdDZI6w@public.gmane.org> wrote:> processing whilst the rails app is down for maintenance (for example, > for a code update)?Wouldn''t you just have the injection script check that the app was running, then defer the delivery if it wasn''t. Let the mail daemon handle the queuing. -- Nicholas Lee http://stateless.geek.nz gpg 8072 4F86 EDCD 4FC1 18EF 5BDD 07B0 9597 6D58 D70C
On 20/09/2005, at 11:39 AM, Nicholas Lee wrote:> On 9/20/05, Tim Lucas <t.lucas-l/qNJNvq70OzaBltdDZI6w@public.gmane.org> wrote: > > >> processing whilst the rails app is down for maintenance (for example, >> for a code update)? >> >> > > Wouldn''t you just have the injection script check that the app was > running, then defer the delivery if it wasn''t. Let the mail daemon > handle the queuing. >Thanks for the clue -- wasn''t aware I could queue it at the mail daemon end. -- Tim