Re: [Zope-dev] How to trigger Zope externally (mail)

2003-03-10 Thread Chris Withers
Ross Boylan wrote: On Wed, Feb 26, 2003 at 05:37:17PM -0800, Andy McKay wrote: Or just write a simple HTTP post using Python. Have a look around for the MailIn Product, or CMFMailIn which does this very simply and works fine for low volume traffic (eg: fine listening to [EMAIL PROTECTED]).

Re: [Zope-dev] How to trigger Zope externally (mail)

2003-03-07 Thread Ross Boylan
On Wed, Feb 26, 2003 at 05:37:17PM -0800, Andy McKay wrote: Or just write a simple HTTP post using Python. Have a look around for the MailIn Product, or CMFMailIn which does this very simply and works fine for low volume traffic (eg: fine listening to [EMAIL PROTECTED]). Thanks. I borrowed

Re: [Zope-dev] How to trigger Zope externally (mail)

2003-02-27 Thread Jean Jordaan
I can't remember where I cribbed from ;] Remembered: http://www.zope.org/Members/phd/cron-zope/pack-db_fs/view -- Jean Jordaan http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev **

[Zope-dev] How to trigger Zope externally (mail)

2003-02-26 Thread Ross Boylan
I am working on a poll/survey type product and want to handle responses by email as well as the web. If you have any advice about the best architecture, I would appreciate it. I'm currently using Zope 2.5 on Linux, though it would be nice if the solution weren't too platform dependent. Here are

Re: [Zope-dev] How to trigger Zope externally (mail)

2003-02-26 Thread Adrian van den Dries
On February 26, Ross Boylan wrote: 1. Incoming mail goes to a pipe, which is a program that processes the message. Use curl or another HTTP client to POST the message to a Zope script. This seems to be the idiomatic way, because authentication occurs at the request level in the publisher.

Re: [Zope-dev] How to trigger Zope externally (mail)

2003-02-26 Thread Jeff Youel
On Wed, 2003-02-26 at 16:16, Ross Boylan wrote: 1. Incoming mail goes to a pipe, which is a program that processes the message. I think the main drawback of this approach is that I would need to run Zope on top of ZEO so that multiple processes could access the database safely. I'm also

Re: [Zope-dev] How to trigger Zope externally (mail)

2003-02-26 Thread Shane Hathaway
On 02/26/2003 07:16 PM, Ross Boylan wrote: I am working on a poll/survey type product and want to handle responses by email as well as the web. If you have any advice about the best architecture, I would appreciate it. I'm currently using Zope 2.5 on Linux, though it would be nice if the

Re: [Zope-dev] How to trigger Zope externally (mail)

2003-02-26 Thread Andy McKay
Or just write a simple HTTP post using Python. Have a look around for the MailIn Product, or CMFMailIn which does this very simply and works fine for low volume traffic (eg: fine listening to [EMAIL PROTECTED]). -- Andy McKay ___ Zope-Dev maillist