Source for winptee, winfpse, or gpgsx

2005-03-16 Thread Kurt Fitzner
I apoligize that this is slightly off topic for this mailing list, but I am at my wit's end. I am looking for the source code - any source code old or new - for winptee, winfpse, or gpgsx. Those are all Windows shell extension projects that add context menu support for GnuPG in windows. I've lo

Re: gpg: WARNING: Using untrusted key!

2005-03-16 Thread Melissa Reese
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Hi David, On Wednesday, March 16, 2005, at 8:49:01 PM PST, you wrote: > It means that you have "--trust-model always" set. GnuPG is warning > you that it isn't checking trust. Thanks! I'll remove that option from my configuration file. For some

Re: gpg: WARNING: Using untrusted key!

2005-03-16 Thread David Shaw
On Wed, Mar 16, 2005 at 08:15:15PM -0800, Melissa Reese wrote: > Hi, > > I'm getting a peculiar warning message when I verify signed messages; > even messages signed using my own keys (GnuPG v1.4.1). Here's a sample > verification of one of my own messages: > > gpg: armor header: Hash: RIPEMD160

gpg: WARNING: Using untrusted key!

2005-03-16 Thread Melissa Reese
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Hi, I'm getting a peculiar warning message when I verify signed messages; even messages signed using my own keys (GnuPG v1.4.1). Here's a sample verification of one of my own messages: gpg: armor header: Hash: RIPEMD160 gpg: original file name='

Re: [Macgpg-users] MacGPG 1.4.1. - [Announce] GnuPG 1.4.1 released

2005-03-16 Thread Melissa Reese
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Hi Michael, On Tuesday, March 15, 2005, at 2:14:01 PM PST, you wrote: > Hm, atm I can't see that version 1.4.1 has been released, yet. Or > may be the homepage http://www.gnupg.org has not been updated, yet? You can get v1.4.1 directly from her

Re: Query on GPG - should I install GPG in every system?

2005-03-16 Thread Joseph Bruni
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 GPG is primarily used to secure communications between individual users. To that end, the private key is just that -- private and would be trustworthy only if it is available to its owner exclusively. Using a server-based solution would require all

Re: Saving photo of a key to a given filename

2005-03-16 Thread Johan Wevers
Thomas Zangl - Home wrote: >Does work from the command line but not from within my Delphi App. It >seems that "cmd" is not called at all Is your environment copied? Try the explicit call to C:\WINNT\cmd.exe instead of just calling cmd. -- ir. J.C.A. Wevers // Physics and science fictio

Re: Re:Saving photo of a key to a given filename

2005-03-16 Thread Karl Hasselström
On 2005-03-16 17:28:02 +0100, Thomas Zangl - Home wrote: > Am Wed, 16 Mar 2005 15:49:27 +0100, schrieb "Sascha Kiefer" > <[EMAIL PROTECTED]>: > > > you can use the photo-viewer option. example: > > > > - --photo-viewer \"cmd /c copy /Y \"%i\"filename.tmp\"\" > > > > will copy the picture-file to f

Query on GPG - should I install GPG in every system?

2005-03-16 Thread rajam
Sir, Our institute has an intranet consisting of around 60 machines. I am planning to implement GPG in my mail server. Is it enough to install GPG only in the mail server. Then how do I create the keys for each user. Please help me on this. Regards Rajam S _

RE: Saving photo of a key to a given filename

2005-03-16 Thread Kiefer, Sascha
Well, i use a c++ program to do the same (using CreateProcess and redirecting STDIN, STDOUT, STDERR) My code is STARTUPINFO si; BOOL result; memset(&si, 0, sizeof(si)); si.cb = sizeof(si); si.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; si.hStdInput = m_childstdinrd; si.hStdOutput =

Re: 1.4.1 announced

2005-03-16 Thread John Clizbe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sean C. C. wrote: > After reading the announcement from cross-posted on the enigmail and > pgp-basics @ yahoo lists, and reading what minimal information is on the > gnupg.org website (I couldn't find anything on there other than the > download and a r

Re:Saving photo of a key to a given filename

2005-03-16 Thread Thomas Zangl - Home
Am Wed, 16 Mar 2005 15:49:27 +0100, schrieb "Sascha Kiefer" <[EMAIL PROTECTED]>: Hi, >you can use the photo-viewer option. >example: > >- --photo-viewer \"cmd /c copy /Y \"%i\"filename.tmp\"\" > >will copy the picture-file to filename.tmp Does work from the command line but not from within my

Re: 1.4.0a won't retrieve key from keyserver?

2005-03-16 Thread Jason Markley
David, Sorry to bring this back up when it's supposed to be fixed, but with 1.4.1 I'm still having the same issue as before. Do you know what bug # it was specifically that was 'fixed'? Thanks. (http and hkp server types dont' seem to work, but if i retrieve using ldap, it seems to work.

Re: Saving photo of a key to a given filename

2005-03-16 Thread Sascha Kiefer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi. you can use the photo-viewer option. example: - --photo-viewer \"cmd /c copy /Y \"%i\"filename.tmp\"\" will copy the picture-file to filename.tmp Have fun - --sk -BEGIN PGP SIGNATURE- Version: PGP 8.1 iQA/AwUBQjhHYAInDejiptdCEQJJ9ACguWmhoH6+

Re: memory on OS X

2005-03-16 Thread Joseph Bruni
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Yes. OS X does not require a process to run as root to request locked memory (up to a limit). See the man page on the "mlock()" function. On Mar 16, 2005, at 3:06 AM, Nicholas Cole wrote: I've just compiled gnupg-1.4.1 on Mac OS X, and noticed that

Phil Zimmerman

2005-03-16 Thread Henry Hertz Hobbit
[EMAIL PROTECTED] wrote (in the Digest): > Subject: Current Zimmerman > To: gnupg-users@gnupg.org > > ALL: > > Does anybody know the most up to date URL pages on where Phil > Zimmerman is and what he is doing? Evidently, everything I am > trying is the wrong to way to go about it in search engine

Saving photo of a key to a given filename

2005-03-16 Thread Thomas Zangl - Home
Hi, I am using GnuPG on a Win32 box and I have written a small keyring manager in Delphi. I thought a good idea would be, to display the photo associated with a KeyId if it exist. Here is my problem: how can I get the photo-data from GnuPG via batchmode using plain Windows utilities? TIA! Be

Re: [Announce] GnuPG 1.4.1 released

2005-03-16 Thread Johan Wevers
Werner Koch wrote: >We are pleased to announce the availability of a new stable GnuPG >release: Version 1.4.1 Good. I was wondering how long it would take after rc2. :-) Works OK on Linux libc5 system, all tests pass and pgp2 compatibility is OK. -- ir. J.C.A. Wevers // Physics and sc

memory on OS X

2005-03-16 Thread Nicholas Cole
I've just compiled gnupg-1.4.1 on Mac OS X, and noticed that it does not give the warning I'm used to on Linux about secure memory. Is that normal? There is a configure option to --enable-m-guard, but I can't find any documentation about it. Best, N Send instant messages to your online frien