[Zope] File referencing and LocalFS

2000-07-05 Thread Spicklemire, Jerry
Hi Rogerio >1)Folders names are directly related to string fields >in a MySQL database which use spaces between words (eg >New York), but folders names don't use spaces (eg >NewYork). How can I skip spaces from database fields to >make them refer to these folders (eg New York --> >NewYork)?

RE: [Zope] File referencing and LocalFS

2000-07-05 Thread Spicklemire, Jerry
Hi Marco, From: Marco Mariani [mailto:[EMAIL PROTECTED]] Subject: Re: [Zope] File referencing and LocalFS >> >> foldername = string.join(colname, '') >> >> using a "blank" ('') between each string, in other words, with no delimiter. >Maybe you meant >foldername = string.join(string.spli

[Zope] Date time format

2000-07-19 Thread Spicklemire, Jerry
The DTML User Guide has an "Appendix A" that shows lot's of options, but no examples. Anyhow, see: http://www.zope.org/Documentation/Guides/DTML-HTML/DTML.18.html You can use these like so: You can also use Python slicing syntax

[Zope] RE: Date time format

2000-07-19 Thread Spicklemire, Jerry
Oops! Change those "==" to just single "=". Too much Python on the brain . . . -Original Message----- From: Spicklemire, Jerry Sent: Wednesday, July 19, 2000 12:15 PM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: Date time format The

[Zope] Reversing acquisition?

2000-07-20 Thread Spicklemire, Jerry
Ramalho wrote: >""" >- Containment: Search the object, then its container, then the >container's container, and so on. Ignore objects not in this chain. > >- Context: Search the objects in precisely the reverse of the order in >which they were mentioned, so "A.B.C.D" is always searched in the ord

[Zope] RE: Reversing acquisition?

2000-07-20 Thread Spicklemire, Jerry
ate, other "B" objects in other chains could define the color scheme for the all the objects ("pages") in the parent folder. That's context. -Original Message- From: Luciano Ramalho [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 20, 2000 1:23 PM To: Spicklemire, Je

[Zope] Your feedback: what should DateTime strftime() behavior be?

2000-07-25 Thread Spicklemire, Jerry
+1 ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )

[Zope] Less than helpful traceback

2000-08-04 Thread Spicklemire, Jerry
Hi Folks, Any thoughts about how to find out what the erro message (below) means? If I could just find out what exactly is not being found, it would help alot, but there's no hint. Thanks for any thoughts, Jerry S. Zope has encountered an error while publishing this resource. Resource not f

[Zope] Upload on a local File System

2000-08-08 Thread Spicklemire, Jerry
Francois wrote: >Hi, I d like to upload on a Local File System. I would like to use a >form, choose a file and i d like that Zope upload the file on the >LocalFS. I ve met some troubles, could you help me? See Jonathan Farr's LocalFS product, which now (since v.0.8.1) allows file uploads to the

[Zope] Multiple record input into Postgresql

2000-08-10 Thread Spicklemire, Jerry
William wrote: > inserts to a variable, say x1, into a postgresql table. > However, there is an additional variable, x2 that would > have to be only entered once and would be the same for > every record for which a different x1 is entered. > > it seems the should do this. Assign the vari

[Zope] HTTP_ACCEPT

2000-08-16 Thread Spicklemire, Jerry
Greetings Zope Fans, There is a value included in "REQUEST" called HTTP_ACCEPT. Is there a way within Zope to reset this value? The default seems to be "*/*", but our sysadmin says Zope would get along better if we can change it to include the alias that Zope has been assigned by our Proxy S

[Zope] Amazing Disappearing Self

2000-08-17 Thread Spicklemire, Jerry
Hi Zope Fans, Has anyone seen a case where acquisition works, but only in the topmost folder? The site I'm working on shows no problem on a test server, but upon moving to a production server any URL pointing to a subfolder, or a document contained in a subfolder returns an error (below). T

[Zope] Re. Generic Workflow Products?

2000-08-23 Thread Spicklemire, Jerry
Cary wrote: > come to the realization that many applications boil > down to workflow management. The ZPatterns project the Phil Eby and Ty Sarna are running is intended to lay the groundwork for just what you want. They call it "SWARM", and if memory serves, the "W" is for "Workflow". ZPatter

[Zope] Microsoft SQL Server Access under Linux?

2000-08-23 Thread Spicklemire, Jerry
Darin asked: > Is it possible to access an ODBC data source through Zope running under Linux? I'm getting ready to test such a solution this week. First, we'll try : ODBC Socket Server http://odbc.linuxave.net/ and the accompanying Python Client. This will require some coding, and

[Zope] Re. Linux and ODBC

2000-08-24 Thread Spicklemire, Jerry
Hi Folks, Just to follow up on the plan to test ODBC Socket Server. We now have a working copy resident on a NT test system here, which enables us to ship queries across the LAN from Unix / Linux land to hit against Windows Native (ODBC) data stores, and get back datasets as XML. So far, it work

[Zope] Simple(?) Syntax Question (dtml-in)

2000-08-25 Thread Spicklemire, Jerry
Tim asked: >I want to only provide the first item of each list in this >SELECT: You can use Python "slice" syntax, where the first item of a sequence (index position 0), is indicated like: listname[0] try: ___ Zope maillist - [EMAIL PROT

[Zope] FW: Simple(?) Syntax Question (dtml-in)

2000-08-25 Thread Spicklemire, Jerry
Actually, there are some extraneous "" in the prior post. Here's a corrected version: I also should have mentioned that this approach allows use of the &dtml-x; "entity syntax", within tags.. ___ Zope maillist - [EMAIL PROTECTED] http://lis

[Zope] Re. Advice for new zope installation

2000-08-28 Thread Spicklemire, Jerry
Henk Schets wonders: >- how easy and reliably can I manage my virtual hosts (about 8 sites right now) ? Very important. The SiteAccess product contributed by Evan Simpson is a popular solution. http://www.zope.org/Members/4am/SiteAccess2 >- how stable is Zope regarding to Apac

[Zope] Looking for Zope vs. Others at-a-glance comparison

2000-09-12 Thread Spicklemire, Jerry
Richard Moon says: >Zope offers the potential to be the perfect development environment with >tons of really good solutions off the shelf - these can be customised if >they have to, we can drop down to Python if we really need to. Perfect. > >Unfortunately its been difficult to get discussions

[Zope] RE: Looking for Zope vs. Others at-a-glance comparison

2000-09-19 Thread Spicklemire, Jerry
-Original Message- From: Richard Moon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 19, 2000 11:43 AM To: Spicklemire, Jerry; [EMAIL PROTECTED] Subject: Re: Looking for Zope vs. Others at-a-glance comparison >Perhaps there should be someone producing an 'approved&

[Zope] Close your eyes . . .

2000-09-21 Thread Spicklemire, Jerry
and pretend that Zope can do this today! http://standardbrains.editthispage.com/ This is where we're headed with DAV, XML / DOM, Zope Studio, etc. Sorry the demo only works (today) with MS IE v. 5+. If you can get to a desktop with this installed, it is such a trip to swipe some conte

[Zope] DTML Loop, is there a 'continue'?

2000-09-22 Thread Spicklemire, Jerry
Hi Zope Fans, I'm about searched out trying to find any discussion about calling a normal "continue" statement, as in Python, from DTML. Any ideas? I just want to short circuit a dtml-in loop for one pass, and then finish the rest of the loop, based on a parameter. Thanks, Jerry S. _

RE: [Zope] DTML Loop, is there a 'continue'?

2000-09-25 Thread Spicklemire, Jerry
>On Fri, Sep 22, 2000 at 12:39:52PM -0500, Spicklemire, Jerry wrote: >> I'm about searched out trying to find any discussion about calling a normal >> "continue" statement, as in Python, from DTML. Any ideas? >> >> I just want to short circuit a

[Zope] Guess Who . . .

2000-09-25 Thread Spicklemire, Jerry
. . . has a opening posted on their Web Site for a C/C++ programmer with Zope / Python experience? http://www-3.ibm.com/employment/us/empl/jofK23137.html Email Software Engineer (CA-K23137) Category: Software Location: CA Division: Other Divisions Work as a part of a small team de

[Zope] String manipulation

2000-09-26 Thread Spicklemire, Jerry
"how can I manage it to cut a string. for example: a string property (testtext) with 500 words. but only want to give out 20 characters of tis text." Python sequence slicing syntax can be done with DTML, like so: wher the '[:20]' means from the begining of the string, through the 20th "sli

[Zope] FYI: Python product tutorial updated

2000-10-02 Thread Spicklemire, Jerry
Hi Brian, Regarding: > I'd be very interested to hear any ideas you folks have > on ways to help "make simple things simple" for development > and to allow people to deal with complexity only as they > begin to need it... One of the features the stands when a newbies starts poking around at

[Zope] Variable name use in with statement

2000-10-13 Thread Spicklemire, Jerry
Scott Butchill wonders if: "there is a simpler way to do this." Not much simpler, but how about: ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML

[Zope] Q: Advantages of storing ZODB in RDBMS

2000-10-13 Thread Spicklemire, Jerry
Daniel asked: "Can anyone explain what the advantages are of using an RDBMS for Zope object storage over the standard file system storage?" The folks I know that have asked for that feature have stated their concerns as being: Keeping everything in a single large file is risky,

[Zope] Python/Perl methods?

2000-10-19 Thread Spicklemire, Jerry
Oliver asked: > I've been looking at that new book's draft on the Zope website and I'm > wondering what chapter 7 is talking about. Where in Zope can I find a > "restricted Python method" or a "restricted Perl method"? I've never > seen those. Does anyone know, please? Keep in mind that the Zope

[Zope] Acquisitive

2000-10-20 Thread Spicklemire, Jerry
Hi Zope Fans, I ran into an odd quirk today, and I'm hoping someone has an insight to share. There is a simple text string stored as a DTML Method, with ID = "set_table_0", e.g.: 'border="0" cellpadding="0" cellspacing="0"' When set_table_0 is in the Zope root folder, it isn't discove

[Zope] Acquisitiver and Acquisitiver

2000-10-20 Thread Spicklemire, Jerry
OK, now I'm really confused. I stumbled on a way to make the DTML Method work, that is, the one that wasn't being found before, via Acquisition. All I have to do is forget to add the terminating ';' in : so that it looks like so: Any guesses? Thanks again, Jerry S.

[Zope] RE: Acquisitive

2000-10-23 Thread Spicklemire, Jerry
Steve wrote: > I'm guessing the the problem is that > > &dtml-xxx; does an implicit "html_quote" format > on whatever expression you provide.. so > > > > should produce: > > > > Which the browser doesn't grok > > try: > > > That works! It turned out that this was also complicated by som

[Zope] ZFormulator

2000-10-25 Thread Spicklemire, Jerry
Hi Martijn, and Zope Fans, I'm using ZFormulator and having problems with permissions on Zope v.2. The sign-on dialog pops-up when a user attempts to edit a form, but the correct name and password are rejected. Has anyone found a little detail that needs tweking to get past this one? Thanks,

[Zope] More ZFormulator

2000-10-26 Thread Spicklemire, Jerry
Hi Zope Fans, Re. the problems I mentioned in an earlier post, it may be related to an error that turned up when I tried to run the ZF_Demo module. It seems to be unable to locate: "ApplicationDefaultPermissions" Does that ring any bells? A Google Search of Zope.org turns up several

RE: [Zope] More ZFormulator

2000-10-27 Thread Spicklemire, Jerry
Steve asked: > What version of ZFormulator are you running (and in what version of > Zope?) I just tried ZFormulator-0.2 with Zope-2.2.2 and it seemed to > work OK. Maybe it doesn't work with older zopes? Oops, I should know better by now, than to ask for help without including the details. Z

[Zope] More ZFormulator

2000-10-27 Thread Spicklemire, Jerry
Hi Again, It turns out that the problems I was seeing are related to the Proxy Layers that are in place to keep our IntraNet safe. ZFormulator doesn't work at all when I bypass the Proxy entirely, only works partially when the Proxy is invited to play, and only works fully when the directories th

[Zope] RE: More ZFormulator

2000-10-27 Thread Spicklemire, Jerry
Steve says: > Found it: > > line 312: Form.py should be: > > __roles__ = ('Manager',) Thanks Steve! Steve's motto is, "We don't need no stinkin' Docs!". BTW, we disagree about this . . . ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.

[Zope] reload ?

2000-10-30 Thread Spicklemire, Jerry
Luc wonders: > is it possible to reload only a without reloading an = > entire page ??? > if yes, how?? The short answer is no. That is, unless you are willing to set up some sort of Java RMI process, or other complex solution, and pray that your audience has downloaded and enable, or a

[Zope] Almost Done.

2000-10-31 Thread Spicklemire, Jerry
Jason pondered: > How do I get a TinyTable to display it's contents? > > All I find in the docs is and that does not > seem to work for me, unles I am lacking a tag? Try it like this: where tablename is the name of your table, and fieldname1, fieldname2 are names of fields. I've not use

[Zope] IMAP and Zope!

2000-11-01 Thread Spicklemire, Jerry
Morten says: > If this sounds interesting, send me an email.=) Is this one OK? > I'm developing an Outlook/WorldPilot replacement which is much more > modular in design. It will be released under the GPL. When and where > I don't know yet. It stores messages in 'pure' ZODB format (that

[Zope] CMS/publishing system

2000-11-03 Thread Spicklemire, Jerry
Pete asked: > How well does Zope integrate applications/cgi's written in ASP, > Cold Fusion, Perl, etc...? As we've got a number of things we'd > prefer to keep as is, and run alongside Zope. and added: > Is it possible? I'm thinking that with Apache and mod_rewrite > it would be doable (usi

[Zope] redirect on Authorization

2000-11-03 Thread Spicklemire, Jerry
Daniel says: > We have a very large site and many of Users bookmark pages. > This can cause several problems especially if the site layout > changes, security changes at different levels and a user > bookmarks a result pages that depends on previous page(s) > submissions. Yes, it's easy to re

[Zope] ZMethod (Safe)

2000-11-09 Thread Spicklemire, Jerry
Hello Linguistas, Shorter is better. In this light, my recommendation was "mod", short for MODule, and / or MethOD, but it didn't get into the Poll List. > We've pretty much settled on restricted/unrestricted here. Also, I suggested "strict" as a shortened form of "reSTRICTed". Perhaps to m

[Zope] why DTML confusing

2000-11-10 Thread Spicklemire, Jerry
Irene says: > I get so frustrated with DTML, I want to scream. > Please don't tell me to buy the Zope book, > DTML should be more intuitive. > DTML maybe the heart of Zope, > but it's also it's achilles heel. You're right about the confusion, frustration, nor are you alone. Still, DTML is

[Zope] Problem with escaped double quotes

2000-11-17 Thread Spicklemire, Jerry
Aitor asked: > My problem is this : > > > > > It doesn't work 'cause I can't escape the doble quotes inside the string= > I'm trying to eval. > > Any solution??? If I recall correctly, the work around I've used is to store the text, including the double quotes, as a property of a parent fo

[Zope] Factoids for supporting zope

2000-11-28 Thread Spicklemire, Jerry
Albert said: > Our client thought that the recent VC money was about 1/2 what would > be needed to make it fly. My argument is that money is leveraged by > the active Zope community so a crux in my logic is how strong this > community is. The "1/2" the capital needed" part is a puzzling assumpti

[Zope] Commercial Zope Commercial?

2000-11-30 Thread Spicklemire, Jerry
Greetings Zope Fans, I don't know how long this has been on the Web, but it got my attention: http://www.powernethk.com/~gobeyond/t2server/model_z.html Very interesting . . . ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman

[Zope] Problem with DCOracle interface for Python

2000-12-04 Thread Spicklemire, Jerry
Slim Says: > I am having a problem when I try to run a python application on a Sun server: We had some problems like this too. If memory serves, an incompatibility between older versions (Oracle 7.x) of the Oracle Networking package, and the new version (Oracle 8) of the database "backend" was t

[Zope] string splitting in dtml

2000-12-04 Thread Spicklemire, Jerry
Mike asked: > I have a date string (ie dd/mm/yy) which I'm drawing out of a database > (ODBC connection to Access) with a Z SQL method and I need to use that > data to set the initial condition of a set of 3 select items (ie day, > month and year). Is there a way to split this date (it'll come o

RE: [Zope] string splitting in dtml

2000-12-06 Thread Spicklemire, Jerry
Mike said: > I tried what you recommended and got the following error: > > Error Type: AttributeError > Error Value: __getslice__ > > The problem I think is that the variable is drawn from the database as type > date (Microsoft Access 2k) and somehow is cast into a date type. Is there a > way to

[Zope] ANNOUNCE: Zope 2.3.0 alpha 1 released...

2000-12-11 Thread Spicklemire, Jerry
Outstanding! Sometimes I wonder if ther rest of the Open Source world has a glimmer of how FAST Zope is developing. let alone commercial vendors. Can't wait to dig in! Congratulations to all, Jerry S. ___ Zope maillist - [EMAIL PROTECTED] http:

[Zope] Z-Commerce components

2000-12-28 Thread Spicklemire, Jerry
Jason wonders: > Looking for an e-commerce tool to use for a Zope-based site for artists to > share, display and sell 'net art' and more. Also to allow sponsors to do > just that. > 1. What do you recommend for taking credit card purchases online with Zope? The Wampum Generator is available a

[Zope] Turn Off Rampant Capitalization?

2000-12-28 Thread Spicklemire, Jerry
Kyler said: > it'd be great if someone > would say something like "Oh, yeah, just set > 'capitalize_everything' to 'off'..." i can't tell you where to look, but as for "what" to look for, try searching for: string.capwords( or, in dtml entity syntax: &dtml.capitalize- good luck! jerry s

[Zope] RE: Z-Commerce components

2000-12-28 Thread Spicklemire, Jerry
Jason asked: > Do you know is anyone _using_ Wampum : > > a. For handling real transactions, or is it still in development stages ? > > b. With Etailer's Zope kit? This URL will have to be "reconstituted, but check out: http://zope.nipltd.com/public/lists/commerce-archive.nsf/1201f301bbb3337c80

[Zope] Belated Birthday!

2000-12-30 Thread Spicklemire, Jerry
Hey Zope Folks, Maybe I missed it, but did anyone else realize that Zope's 2nd birthday snuck by without a party?! Maybe the DC Gang are planning something based on an official ship date of some specific version, but anyhow, Happy Birthday, Zope! ** || |\/| |\/| ( \/ ) Later, Jer

[Zope] Deleting Connection that hangs Zope

2001-01-04 Thread Spicklemire, Jerry
Hi Zope Fans, Has anyone found a good way to delete a Database Connection that hangs Zope at startup? The connection seems to be waiting "forever", and so there is no access to the Zope interface, so of course I can't delete, or disable the offending object. If there were just a way to set it to

RE: [Zope] Deleting Connection that hangs Zope

2001-01-04 Thread Spicklemire, Jerry
Steve suggested: > You could remove the adaptor Product from Zope the Zope Products > folder and restart, the object will be broken, but deletable, then > restore the Product and restart Zope. Good Idea! That's about as simple as this sort of thing can get, I suspect. >> Has anyone found a goo

[Zope] Creating a Database connection.

2001-01-06 Thread Spicklemire, Jerry
Darren wrote: > I am very new to the Zope idea. I like what Zope is trying > to do. But I am trying to set up an external SQL database > connection While it would be ideal for one set of instructions to serve every possible requirement, in reality it will be best for you to provide as much

[Zope] Zope 'Best Practices'?

2001-01-08 Thread Spicklemire, Jerry
Steve wonders: > Is there anything like a Zope 'Best Practices' document or > Wiki? One that would encourage use of certain practices, DTML > idioms or products, and warn of practices, idioms or products > that are known to cause problems down the line or are slated > for extinction? > > I a

[Zope] ZDESIGN IDEAS = How to improve 'manage' ?

2001-01-08 Thread Spicklemire, Jerry
Jason mentioned : > The need to improve the manage interface has grown urgently > clear to me while using Zope myself, designing for all sorts > of community and collaborative Zope-based projects, demos for > a number of innocent bystanders, interested parties and > potential clients. Zope '

[Zope] Problem on using nested &

2001-01-16 Thread Spicklemire, Jerry
Angie asked: > The problems is i'm not sure my dtml in order to control the loop > of choosing the correct sql in the right situation. > The following is my DTML:- > > "]==custid","_[" custname>"]==custname"> > > > "]==custname"> > > > "]==custid","_[""]==custname"> > > First, the rule

[Zope] RE: Problem on using nested &

2001-01-17 Thread Spicklemire, Jerry
Oops! What I meant to say was: "The only tag you need is that final one." (see prior post on this topic) Later, Jerry S. ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encodi

[Zope] Tools used for programming Zope

2001-01-18 Thread Spicklemire, Jerry
Gerald said: > I need to have source code readable on the filesystem > independent of a Zope server, so that I can do things like CVS > them, use any editor on them, grep them, etc. It seems that my > only choice is to write products in Python itself, instead of > using the web interface of Z

[Zope] Workflow and document management system in Zope

2001-01-18 Thread Spicklemire, Jerry
Nicolas said: > I am looking for two products: a professional workflow and a > electronic document management system, preferably in Zope or > opensource if not in Zope. These 2 applications should be able > to work together. Some of this is now in the Portal Toolkit (PTK) soon to be re-named

[Zope] RE: Workflow and document management system in Zope

2001-01-19 Thread Spicklemire, Jerry
Hi Nicolas, > For you, when would such products be considered ready for production ? The most important factor can be viewed from two perspectives, neither precluding the other. The ideal state arrives when complete documentation is available, or at least one person on the deployment team ha

[Zope] RE: Tools used for programming Zope

2001-01-19 Thread Spicklemire, Jerry
Hi Gerald, >> http://www.zope.org/Members/sspickle/ZCVSMixin > Since this converts between CVS and Zope already, have you > thought about the possibility of exporting it directly onto > the filesystem? Since CVS is file based, everything you export is stored as a file during the CVS phase. O

RE: [Zope] RE: Workflow and document management system in Zope

2001-01-19 Thread Spicklemire, Jerry
This may be the link you were thinking of: http://www.omg.org/technology/documents/formal/corba_business_specifications _av2.htm with the Corba Workflow Specification available as a .PDF. > Thanks for the interesting URLs on workflow discussions. > > Corba Ecommerce has very interesting and

[Zope] RE: Workflow and document management system in Zope

2001-01-20 Thread Spicklemire, Jerry
Hi Nicolas, Your last post mentioned: > I am looking for a workflow (WF) linked to a electronic document > management (EDM) system and a groupware email based In addition to other links, you might want to check out ZopeGUM, and ZUBBS, http://www.zope.org/Members/morphex/ZopeGUM http://ww

[Zope] MS-SQL Server Connector

2001-01-20 Thread Spicklemire, Jerry
Adrian asked: > Is there a database connector or similar for MS-SQL Server that > might run on non-windows Zopes? Check out http://www.zope.org/Members/TheJester/SybaseDA , and please let the list know how it goes. We all need to help each other with these little puzzles. Good luck, Jerry S.

[Zope] FW: MS-SQL Server Connector

2001-01-22 Thread Spicklemire, Jerry
Hi Adrian > I tried this about 6 months ago. It seems that Micro$oft > changed that protocol that SQL7.0 uses, just enough to prevent > Sybase connectors from working. (I probably should have > mentioned 7.0 in the message... sorry) Ouch! There are some other options, a few of which I've trie

[Zope] PopMail Client

2001-01-31 Thread Spicklemire, Jerry
Hi David, I'm looking at your Pop3 Client tool for Zope and have hit a snag. Is there any documentation about correct usage, or example (Zope) code? I'm using Zope 2.2.1 on Redhat Linux, with PopMailBase .0.0.3, and PopMail .0.0.2 I have looked over POP.py, and have a glimmer of what to do to

[Zope] Re: PopMail Client

2001-01-31 Thread Spicklemire, Jerry
e-2.2.1-linux2-x86/lib/python1.5/poplib.py, line 146, in _shortcmd File /l01/Zope-2.2.1-linux2-x86/lib/python1.5/poplib.py, line 125, in _getresp error_proto: (see above) "Spicklemire, Jerry" wrote: > > Hi David, > > I'm looking at your Pop3 Client tool for Zope and ha