DavidA wrote:
> An alternative that stays inside Django is to setup a trigger in cron > (or NT's Task Scheduler) that gets a URL every few minutes and the view > code for that URL does the email processing you mention. You avoid > creating a true daemon/service just by "waking" up periodically and > doing any work that needs to be done. This is simple if the view doesn't need any authentication, but you'd have to login and muck with session cookies if the view is protected by some access rights. Python's cookielib might help here, or if you are writing it in shell, use wget with its various cookie options, and use its --post-* options to send the login form response. Probably simpler to write a python script that imports django and runs on the server! Barry --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---