Hi... Anyone know how to send a pgp cryped email in zope? (using <dtml-sendmail> or anything else) and How to run a SSL server with ZServer? Thanks... -- --------------------------- Diego Rodrigo Neufert -webmaster --------------------------- (Magic Web Design) (email) (diego@magicwebdesign.com.br) (curitiba) (pr)
We have done this in our Etailer product...grab the source and take a look... http://e-tailer.adroit.net/. Basically we just pipe the string to be encrypted to the gnu pgp program on a linux box. Take a look at http://www.pgpi.org/products/gnu/gpg/. terry Diego Rodrigo Neufert wrote:
Hi...
Anyone know how to send a pgp cryped email in zope? (using <dtml-sendmail> or anything else)
and
How to run a SSL server with ZServer?
Thanks...
-- --------------------------- Diego Rodrigo Neufert -webmaster --------------------------- (Magic Web Design) (email) (diego@magicwebdesign.com.br) (curitiba) (pr)
_______________________________________________ Zope maillist - Zope@zope.org 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 )
-- Terry Kerr (terry@adroit.net) Adroit Internet Solutions Pty Ltd (www.adroit.net) Phone: +613 9563 4461 Fax: +613 9563 3856 Mobile: +61 414 938 124 ICQ: 79303381
On Wed, 30 Aug 2000, Terry Kerr wrote:
We have done this in our Etailer product...grab the source and take a look... http://e-tailer.adroit.net/. Basically we just pipe the string to be encrypted to the gnu pgp program on a linux box. Take a look at http://www.pgpi.org/products/gnu/gpg/.
I'm working with two other developers to build an entire Python->GPG API, so that we can access all GnuPG functionality from Python. It's GPL and if anybody here's interested in participating, send me a mail. Regards, Morten
cool....I am eagerly waiting... morten@esol.no wrote:
On Wed, 30 Aug 2000, Terry Kerr wrote:
We have done this in our Etailer product...grab the source and take a look... http://e-tailer.adroit.net/. Basically we just pipe the string to be encrypted to the gnu pgp program on a linux box. Take a look at http://www.pgpi.org/products/gnu/gpg/.
I'm working with two other developers to build an entire Python->GPG API, so that we can access all GnuPG functionality from Python. It's GPL and if anybody here's interested in participating, send me a mail.
Regards, Morten
-- Terry Kerr (terry@adroit.net) Adroit Internet Solutions Pty Ltd (www.adroit.net) Phone: +613 9563 4461 Fax: +613 9563 3856 Mobile: +61 414 938 124 ICQ: 79303381
On Tue, 29 Aug 2000, Diego Rodrigo Neufert wrote:
Anyone know how to send a pgp cryped email in zope? (using <dtml-sendmail> or anything else)
and
How to run a SSL server with ZServer?
Search for M2Crypto on zope.org. It does both. --RDM
Sounds interesting, I ve checked out M2Crypto (downloaded it and checked the files but no install), it patches Medusa and ZServer in order to handle HTTPS, so Zope itself becomes a SSL enabled server without needing a proxy or gateway. But modifications to Zope's core components such as Medusa seem risky to me as long as Digital Creations don't integrate them into the official release, because every update to a new Zope release can become a horror trip when the SSL patches clash with the new Zope version. Are there any plans by DC to do something in that matter? Philipp Auersperg (zwork) *********** REPLY SEPARATOR *********** On 29.08.2000 at 19:39 R. David Murray wrote:
On Tue, 29 Aug 2000, Diego Rodrigo Neufert wrote:
Anyone know how to send a pgp cryped email in zope? (using <dtml-sendmail> or anything else)
and
How to run a SSL server with ZServer?
Search for M2Crypto on zope.org. It does both.
--RDM
_______________________________________________ Zope maillist - Zope@zope.org 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 )
On Wed, 30 Aug 2000, Philipp Auersperg wrote:
Sounds interesting, I ve checked out M2Crypto (downloaded it and checked the files but no install), it patches Medusa and ZServer in order to handle HTTPS, so Zope itself becomes a SSL enabled server without needing a proxy or gateway.
But modifications to Zope's core components such as Medusa seem risky to me as long as Digital Creations don't integrate them into the official release, because every update to a new Zope release can become a horror trip when the SSL patches clash with the new Zope version.
Install Apache+SLL in front of Zope... Oleg. ---- Oleg Broytmann http://phd.pp.ru/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
On Wed, Aug 30, 2000 at 11:44:56AM +0200, Philipp Auersperg wrote:
But modifications to Zope's core components such as Medusa seem risky to me as long as Digital Creations don't integrate them into the official release, because every update to a new Zope release can become a horror trip when the SSL patches clash with the new Zope version.
Hi, Not quite a horror trip, but yes, eyeballing the stuff all over is necessary. Speaking as the developer of ZServerSSL, use Apache+SSL or Roxen+SSL for production. ;-) ZServerSSL isn't working well with Zope 2.2.1 currently. I haven't found out if it's due to changes in Zope 2.2.1, bugs introduced while evolving M2Crypto, changes in OpenSSL 0.9.5 versus 0.9.4, or the much faster CPUs I'm now developing on. Python 2.0 is yet another variable in the equation. For your other requirement, ZSmime (also on my website) generates S/MIME-signed/encrypted messages. In my HOWTO, I give an example of combining ZSmime's dtml-smime tag with dtml-sendmail to send S/MIME messages. Netscape Messenger handles the S/MIME fine. So should Outlook, I imagine. However, the Zope 2.2 change that Zope's superuser cannot do too much means GuardedFile (a supporting product) is now probably broken. I've been busy at work in the past months. I'm only now revisiting this. Things should be fixed over the next fortnight or so. Cheers. -- Ng Pheng Siong <ngps@post1.com> * http://www.post1.com/home/ngps
participants (7)
-
Diego Rodrigo Neufert -
morten@esol.no -
Ng Pheng Siong -
Oleg Broytmann -
Philipp Auersperg -
R. David Murray -
Terry Kerr