Re: [Zope-dev] ZLDAP and replication

2003-02-26 Thread Jens Vagelpohl
the ZLDAPConnection product has not seen any active maintenance in more than 2 years now. i am sure it does not handle referrals. jens On Wednesday, Feb 26, 2003, at 02:51 US/Eastern, Jean Jordaan wrote: Hi Jeffrey all I'd just like to check something .. When running LDAP in a master/slave

[Zope-dev] Following the Zope Collector

2003-02-26 Thread Florent Guillaume
Hi, Currently the Zope collector is in dispatcher On mode, whereas the CMF and Zope3 collectors have dispatcher Off. The difference, for those not familiar with Collector configuration, is that with dipatcher On only the few collector managers are notified by email of new issues in the collector

Re: [Zope-dev] Following the Zope Collector

2003-02-26 Thread Steve Alexander
So I'd like to propose to switch the Zope collector to dispatcher Off. This would mean more email traffic for the supporters, but it's easy enough to filter and I think the benefits are worth it. I get my notifications by subscribing to this list:

Re: [Zope-dev] Following the Zope Collector

2003-02-26 Thread Florent Guillaume
On Wed, 2003-02-26 at 19:31, Steve Alexander wrote: So I'd like to propose to switch the Zope collector to dispatcher Off. This would mean more email traffic for the supporters, but it's easy enough to filter and I think the benefits are worth it. I get my notifications by subscribing to

[Zope-dev] Session Event Listeners

2003-02-26 Thread Beef a
Does anyone have any idea how to register session event listeners in Zope 2? This is a standard concept in Java/JSP/ASP et al. Basically it allows a method to be registered and executed when a http session is either created, lost or invalidated. Is there such a thing in Zope? Thanks --

[Zope-dev] Session Event Listeners

2003-02-26 Thread Clemens Robbenhaar
Beef a writes: Does anyone have any idea how to register session event listeners in Zope 2? [..] Check with the /temp_folder/session_data in your Zope, or create your own Transient Object Container, if there is no such object. Cheers, Clemens ___

Re: [Zope-dev] Following the Zope Collector

2003-02-26 Thread Casey Duncan
Done. -Casey On Wednesday 26 February 2003 02:41 pm, Florent Guillaume wrote: On Wed, 2003-02-26 at 19:31, Steve Alexander wrote: So I'd like to propose to switch the Zope collector to dispatcher Off. This would mean more email traffic for the supporters, but it's easy enough to filter

[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