Discussion:
Help to Install GPG on Mac
Robert D.
2006-07-22 17:59:38 UTC
Permalink
a few days ago I turned on "File Vault" on my new Apple Mac. This
turned out to be a disaster. There were insidious side-effects. After
3.5 hours on fone today with a nice Apple-Care rep, we deleted the
identity that I'd logged on/set-up when I got the mac a couple weeks
ago.

And thus went my PGP .... except that many of them still reside in
the bin folder ... just that there is no way to run it and trying to
generate a keypair results in my needing to kill the app as it runs
an hour.

Can some kind and patient being please email me and walk me through
the entire process of putting gnupg and associated helper apps back
onto my Apple Mail and desktop?

Apparently File vault has known *possible* serious issues. Well, duh!!
--
regards,
Robert D.



______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert J. Hansen
2006-07-22 20:13:32 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Post by Robert D.
Can some kind and patient being please email me and walk me through
the entire process of putting gnupg and associated helper apps back
onto my Apple Mail and desktop?
Easy enough. It'll be a multistep process.

1. Remove any existing GnuPG installations
2. Reinstall GnuPG from Fink or DarwinPorts
3. Install GPGMail from Stephane Corthesy
4. Generate new keys

You'll need to open Terminal.app (in
/Applications/Utilities/Terminal.app) to do this stuff.

=====

STEP 1: FIND AND REMOVE ANY EXISTING GNUPG INSTALLATIONS

- From Terminal.app, execute the following command:

find -d $HOME /sw /usr /opt -name gpg 2>/dev/null

This will take a few minutes to run, depending on your hard drive size
and how much you have installed. When I run it on my system I get:

Samuel:~ rjh$ find -d $HOME /sw /usr /opt -name gpg 2>/dev/null
/Users/rjh/bin/gpg
/Users/rjh/gnupg-1.4.4/g10/gpg
/sw/bin/gpg

... So I have one GnuPG in my home directory's bin/ subdirectory, one
GnuPG in the source tree where I built GnuPG, and one GnuPG which Fink
installed for me automagically. (I didn't realize Fink had done so, by
the way--must've been a dependency.)

Anyway. You'll have a list of UNIX pathnames as the output of the find
command. In the next step, we're going to remove all of them:

Samuel:~ rjh$ sudo rm -f /Users/rjh/bin/gpg
/Users/rjh/gnupg-1.4.4/g10/gpg /sw/bin/gpg

(Please note the above is all one line. Email may have broken it up
onto two.)

OS X will ask you for your password, probably. Feed it in.

A word of warning: _DO NOT EVER, EVER, EVER EXECUTE SUDO COMMANDS GIVEN
TO YOU BY SOMEONE YOU DO NOT TRUST_. sudo is the "keys to the kingdom",
as it were. sudo turns off all the features OS X has to protect you
from yourself. Sometimes it's necessary--for instance, OS X will
prohibit you from deleting things from system directories, which means
if GnuPG lives there, you'll need to sudo it--but always be careful with it.

Don't be afraid of it... just be careful with it.




STEP 2: REINSTALL GNUPG FROM FINK OR DARWINPORTS

DarwinPorts is probably easier for a newcomer. Download it from
http://darwinports.org. Install the package.

Quit out of Terminal.app and start another Terminal.app. (The
DarwinPorts installer modifies a startup file for Terminal.app, and it's
helpful to quit Terminal.app and reload it so the startup file will be
re-read. Don't just close the window... quit Terminal.app outright,
using Apple-Q.)

Once you've done that and reopened Terminal.app, run the following command:

Samuel:~ rjh$ sudo port selfupdate

... Your computer may go idle for a few minutes as DarwinPorts goes off
to the Internet to update itself. Once it's done:

Samuel:~ rjh$ sudo port install gnupg +idea

... Wait a few minutes as DarwinPorts builds GnuPG 1.4.4 with IDEA
support. When you're done, try:

Samuel:~ rjh$ which gpg
/opt/local/bin/gpg

... And voila, you're done installing GnuPG.



STEP 3: INSTALL GPGMAIL FROM STEPHANE CORTHESY

Quit Mail.app first. (Don't just close it; use Apple-Q to quit it.)

Download GPGMail from
http://www.sente.ch/software/GPGMail/English.lproj/GPGMail.html#Download

Install it.

(Note: some older versions of GPGMail insisted that GnuPG live in a
particular place in the directory. This may have since been fixed. If
it hasn't, then:

Samuel:~ rjh$ sudo ln -s /opt/local/bin/gpg /usr/local/bin/gpg

... should fix the problem.)



STEP 4: GENERATE NEW KEYS

If you have backups of your old keys, "gpg --import /path/to/key" should
import them. Make sure to manually set their trust level afterwards.

If you need to generate new keys, "gpg --gen-key" is the way to go.




... Hope all this helps!
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQEcBAEBCgAGBQJEwobsAAoJELcA9IL+r4EJa88IAKVYvg1pMRuMKIg7Ri089v90
gRdQ5tIB++Xk+jWNEvKJu3cGzA2h6WJBkNVFLm2EwQvv101QzTbYOT2GG7v+GH4Y
46n6AsI6u63FwKbouYA+gqO/5jMQJmqK0OufbZJkvlGox8Atcpn8org6LAVSVtMv
XqtrUERbU/zlxA5yoEe6dIMNrn6iw/bNSy9gYdfbc8LutzSwWM30165xF2sfPhrl
ZD8Vz3VjmrrN2GiprWA6j8yDf9YOzhL4tzasSVM1ahghLWz9xK3a8j6mHJPxco76
/r8Ppy6ZY5lh4MWWeTJ/BQgNlCi9hpU5kdbtTYeJNdi+J36ornxJleRsDqHfATw=
=VGuJ
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert D.
2006-07-23 23:27:04 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Easy enough. It'll be a multistep process.......
OK ... that's accomplished.



Now ... where exactly *should* gpg.conf reside if gpg wound up
installed in

\opt\local\bin\



AND .... which program will generate it and under what circumstances?
That is to say, other than the old one I kept, I didn't see one when
I looked.

I've set this to *sign* .... will be interested to see if it does
when I hit send ... in Apple's Mail program, having installed the app
for same.

- --

Robert D.



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)

iQIVAwUBRMQFyESAqiSNcDrJAQJ7jw//UDeVPji0t1HJ+Pde2w4WjQsvbssTWbXY
bztf/Ev4wyuymovH/QZZhThwYyOuJfxesBxw+NfQxeuGgalmqcD0DpU5ITEEdehA
DEmUZUM3coNZgx2dQ+AkMngp42+1+SQmjGCPZhpxabPHDsacysyr7z9L5NXCdBse
U/ksxFA4Tt5DFWmwmzgrD4vR3kUrXKsmMYvw+2meAsgMusxGVyn9B/Y5wh1GO0iz
1C7AMQbfzOcoBmm5WfAleVnGDQ27Pma8UV0aQbFV335KviseFTJ2j8ktk9MH9W+c
sxrwzFGg1GsjnWUjzJOGayjJBuYKDUvNwJXlkvBcY/O6L2/LGpIitDP2CR3VG9Yj
Aazkj7JfD5mZjhvR+eAq7t+60Oz/ISBXtndPDajxDSTmZoWeqJc/LvQqEWM87vcl
+YbnIMdFI7PUUUC3NEuMh97003kUYfci7J4GYe57cLleacsmLNnp9YqcJBuHkK8E
pAfujS9OTIVVwFubUna/92xWeZdIEr2pIqW7lh1xn1xkSPDKSpPggfU7wp1T/Hme
ub0fZ555+78xNgBpDalpBvovWl0G3nHEdsWNlFs5RBHvrrFOJstYexrRToK07SbR
oWqUNzXzA52axLCQZtx4NiedRdwlm4R8KrQivO+oBJyX7zxs178mM9b6h3zUKUKW
Vb9O6V+fHnM=
=23P2
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert D.
2006-07-23 23:41:25 UTC
Permalink
Post by Robert J. Hansen
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Well, I had H10 in mine, so I guess my gpg.conf is NOT in the correct
location
--
Robert D.




______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert J. Hansen
2006-07-24 01:51:56 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Post by Robert D.
Now ... where exactly *should* gpg.conf reside if gpg wound up
installed in
\opt\local\bin\
It didn't install in \opt\local\bin.

It installed in /opt/local/bin.

UNIX uses forward slashes to separate directories. DOS and Windows use
backwards slashes. You'll need to get used to the difference. :)

Apocryphally, Microsoft chose to use the backslash as a directory
separator because they feared a lawsuit from UNIX vendors if they used a
forward slash. I have no idea if there's any truth in it.

Anyway:

In your home directory--_not_ the desktop--there should be a directory
called ".gnupg". Put gpg.conf in there.
Post by Robert D.
AND .... which program will generate it and under what circumstances?
You generate it. GnuPG is not in the business of deciding what your
configuration file should be.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQEcBAEBCgAGBQJExCe8AAoJELcA9IL+r4EJ0ygIANdziv7X1j9oBlRrgK/z17ey
8OreoLEPHR9mZDfvy0Zu4ZVHOvVktvO2W+za3g4gWAB8xGoXN1zWDLLC9FIIh2zF
J/LjVEIQAF7n1u69BYjcbHsxkQ17u07UeNpPkhSnPMXjahR5EyY+aO7NEbNpT62+
YBqsvZtuQvp1Hj9aW4pGocQp9Zt3rqrFhv7HbJTx9ZOTdDQBblhADoz8jhmqqonc
OmjwbDc4xQmvgboh4U037oKikX3KIQdCsdnS1koZN6YGj55OxuXxqkISkKzUMO5K
/uaEeMf/kRElDJo2Ykt5INDe1S+dTrExkUFcD0Bhamx3nzLSZ0QnSZXDpYUsyqc=
=l0G1
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert D.
2006-07-24 03:58:08 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Post by Robert J. Hansen
UNIX uses forward slashes to separate directories.
ah yes, thanks
Post by Robert J. Hansen
In your home directory--_not_ the desktop--there should be a
directory
Post by Robert J. Hansen
called ".gnupg". Put gpg.conf in there.
well, actually, I see the only folder named .gnupg located from the
root at

/opt/local/share/gnupg/ ...... where I then put the gpg.conf



and my home folder, with the house icon, is labeled something else.

I'll need the names of those two mac/unix/apple books also (svp) as
your previously retained email listing same was wiped when the user
was wiped and rebuilt (that would be me) under the direction of the
Apple-Care person.



I've tried the command

gpg --option /opt/local/share/gnupg/gpg.conf

however I get:

gpg: /opt/local/share/gnupg/gpg.conf:34: invalid option



- --

Robert D.
Post by Robert J. Hansen
AND .... which program will generate it and under what circumstances?
You generate it. GnuPG is not in the business of deciding what your
configuration file should be.

- -----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQEcBAEBCgAGBQJExCe8AAoJELcA9IL+r4EJ0ygIANdziv7X1j9oBlRrgK/z17ey
8OreoLEPHR9mZDfvy0Zu4ZVHOvVktvO2W+za3g4gWAB8xGoXN1zWDLLC9FIIh2zF
J/LjVEIQAF7n1u69BYjcbHsxkQ17u07UeNpPkhSnPMXjahR5EyY+aO7NEbNpT62+
YBqsvZtuQvp1Hj9aW4pGocQp9Zt3rqrFhv7HbJTx9ZOTdDQBblhADoz8jhmqqonc
OmjwbDc4xQmvgboh4U037oKikX3KIQdCsdnS1koZN6YGj55OxuXxqkISkKzUMO5K
/uaEeMf/kRElDJo2Ykt5INDe1S+dTrExkUFcD0Bhamx3nzLSZ0QnSZXDpYUsyqc=
=l0G1
- -----END PGP SIGNATURE-----



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)

iQIVAwUBRMRFUESAqiSNcDrJAQLsWRAAjfCFx9P4DgJtmMX1uDPkEKDL6JqtG9Rz
3sFX7S9V6SB9f/TSXM3CGE2+XkKcExCJSeHZYlEP8Z75N1lUGKPe97YnIdYVsgXW
I/KFcoQJaQ5pbT66JlmbOlJl24vTApQCMAAXlIH5eR8BauoGQTLldqk7nKQRHAG6
3oGt6MV/7FXgJo7bMpgjbNKYEzTJimeLaCyHUa9lqQLPGCfNZvLrM8iyYA6JzK/L
OivV0urkTvdqKl0Ye9x6jJgPsxiNPYB3jouxVOQMJPp2OBlzx7bFryM5dSf5GE1c
qNE2QifjLZCAK0XZJ3ZWs0ThSf1yZ2mIdrmXkDKesKtuCM9VQQZjW/DF8zL1t2+D
dS/z8qtq1NaHULhRmjSBwNeZiPT7ZtiLBnU0QL9dTp8SQ8FTfk6JZnZtox/Bhx6M
CMDo+r2bUoQRgYCNqvEj31CFNjprbCMivcS5d+wysZcaUs2YB8kb1yUBLCM7BC0m
XkPlD/II9+iAjBgxB9pz28x0YSLzBzFByutFop8+s9/6pJU3Z8ZyfrCsDxe6KPzR
6pWoVVLxigC5pISCAJpZwPkCPB+bNZ+VtbYiIvRBCViEMTetj5V7BclP2zCsx29N
xan/Xqtw4SgjQhjUvD2vOvFeXEvjyduhN/O1I17RE7TSPr8qKdkqY5SCL9Lfiy4I
TmuZvO1uGYI=
=EeGm
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert J. Hansen
2006-07-24 15:06:34 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Post by Robert D.
well, actually, I see the only folder named .gnupg located from the
root at
/opt/local/share/gnupg/ ...... where I then put the gpg.conf
That's not where it belongs.

- From Terminal.app, type:

cd $HOME/.gnupg
cp /path/to/your/gpg.conf .
Post by Robert D.
I'll need the names of those two mac/unix/apple books also (svp) as
your previously retained email listing same was wiped when the user
was wiped and rebuilt (that would be me) under the direction of the
Apple-Care person.
David Pogue, "Mac OS X: The Missing Manual, Tiger Edition". O'Reilly Press.

Dave Taylor, "Learning UNIX for Mac OS X Tiger". O'Reilly Press.
Post by Robert D.
I've tried the command
gpg --option /opt/local/share/gnupg/gpg.conf
gpg: /opt/local/share/gnupg/gpg.conf:34: invalid option
This would seem to indicate there's an error on line 34 of your gpg.conf
file.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQEcBAEBCgAGBQJExOH6AAoJELcA9IL+r4EJ0L8H/3D0xeZq9gyU02uQAnLH6Fcp
OdMaRLEOaePZxFxC9d1AfDU2lpA4zRc1fy2VNHAlRwqdSZ503DC/sitdj6fZhC37
pnMSpGeHsPefs265aP+kzu0nYTVgJrF45+gmZq/Tys/AzZk0+ja+iJiVAQ2k0eBg
SxrBi+x/yZiZ3i7i6v4YZbT5esD7iS5y4fwpnPD++04yh90o5MJNCG3uXZM3DYBB
lmsVKc80W7KNtHXITSvpGKLYO0J6SZBWMckwJmkXJ/1qknTzjjVnLE2vxLGO7YZo
+yudLUx1JKDwuBdTmVi0namgZHC6tCOvvn0F18mKnaXz3ZotfMSALF+pvHaBpxI=
=1Zl9
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert D.
2006-07-24 17:57:25 UTC
Permalink
Post by Robert J. Hansen
cd $HOME/.gnupg
cp /path/to/your/gpg.conf
successful

I have run GPG preferences and it tells me it was successful.


I can only *see* one gpg.conf anywhere on the drive, via Finder.
Where then is, and how do I see, the gpg.conf residing in .gnupg ??
Because, it seems, only changes made in THAT file will make a
difference.

There is an Icon on the System Preferences Window at the bottom,
called GPG. But I get an error when I select that one telling me it
can not run GPG Preferences Pane on this computer. I have re-
installed successfully several times.


When I try to sign an email now, there is no key-ID listed in the
space beside "Signed" to the right of PGP: ... AND thus, I can not
sign.

Sorry to be a bother ... this change over from PC to Apple is rather
convoluted when one considers one has to learn a new system also.
--
Robert D.



______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
John Clizbe
2006-07-25 00:13:57 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Post by Robert D.
I can only *see* one gpg.conf anywhere on the drive, via Finder.
Where then is, and how do I see, the gpg.conf residing in .gnupg ??
Because, it seems, only changes made in THAT file will make a
difference.
Directory and file names beginning with a period, eg .gnupg, are usually not
displayed on *nix-based systems (which now includes Mac OS X). Think of them
like Windows' Hidden & System files. There should be an option within Finder to
show all files.

Open a Terminal window, and type

cd $HOME

Compare the results of running 'ls' with running 'ls -a'.

- --
John P. Clizbe Inet: John (a) Mozilla-Enigmail.org
You can't spell fiasco without SCO. PGP/GPG KeyID: 0x608D2A10/0x18BB373A
"what's the key to success?" / "two words: good decisions."
"what's the key to good decisions?" / "one word: experience."
"how do i get experience?" / "two words: bad decisions."

"Just how do the residents of Haiku, Hawai'i hold conversations?"
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5-svn-curl-4197-2006-07-20 (Windows PIII)
Comment: When cryptography is outlawed, b25seSBvdXRsYXdzIHdpbGwgdXNlIG
Comment: Be part of the £33t ECHELON -- Use Strong Encryption.
Comment: It's YOUR right - for the time being.
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQCVAwUBRMViQb4fmBEYuzc6AQJiYgQAuvUE3pAzZQb5n5/B+1N9S10k54onMB7P
TOgnJrzil//8Cn/ocKBTQXxKuJflEzKNvesh52Y2Qp4mSPoBXwDU9yRmzPVXR96T
RHQ/0HcWRLsHfxQ2pY17NvSvzfzsd/+3wtRpP7L6bvs2wNsmSMJr27E0EV3n3B8y
uaggK67novGIPwMFAUTFYkQdBKxKYI0qEBECRicAoOnsehdRsdb+IRGGeNGWhsoY
FhkkAKDjrLAnSAUKz1LPCUMYeXcppLWJrg==
=g2I2
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert D.
2006-07-24 18:11:25 UTC
Permalink
when I try to run GPG preferences and if I watch ZConsole, I see:

===== Monday, July 24, 2006 2:07:15 PM US/Eastern =====
2006-07-24 14:08:34.369 Terminal[344] .scriptSuite warning for
attribute 'properties' of class 'TerminalApp' in suite 'Terminal':
'NSAppleEventDescriptor' is not a valid type name.
2006-07-24 14:08:34.369 Terminal[344] .scriptSuite warning for
attribute 'position' of class 'NSWindow' in suite 'Terminal':
'NSAppleEventDescriptor' is not a valid type name.
2006-07-24 14:08:34.369 Terminal[344] .scriptSuite warning for
attribute 'properties' of class 'NSWindow' in suite 'Terminal':
'NSAppleEventDescriptor' is not a valid type name.
2006-07-24 14:08:34.369 Terminal[344] .scriptSuite warning for
attribute 'bounds' of class 'NSWindow' in suite 'Terminal':
'NSAppleEventDescriptor' is not a valid type name.
2006-07-24 14:08:34.369 Terminal[344] .scriptSuite warning for result
type of command 'doScript' in suite 'Terminal': the type NSString
('utxt') doesn't match the result Apple event code ('****').
2006-07-24 14:09:03.346 GPG Keychain Access[398] /Users/rd/Library/
PreferencePanes/GnuPG.prefPane
2006-07-24 14:09:03.348 GPG Keychain Access[398] LSCopyItemInfoForURL
() returned -43 for path /Users/rd/Library/PreferencePanes/
GnuPG.prefPane.
2006-07-24 14:09:03.348 GPG Keychain Access[398] /Library/
PreferencePanes/GnuPG.prefPane
2006-07-24 14:09:03.794 System Preferences[433] *** -[NSBundle load]:
Error loading code /Library/PreferencePanes/GnuPG.prefPane/Contents/
MacOS/GnuPG for bundle /Library/PreferencePanes/GnuPG.prefPane, error
code 2 (link edit error code 0, error number 0 ())
2006-07-24 14:09:03.794 System Preferences[433] [NSPrefPaneBundle
instantiatePrefPaneObject] (/Library/PreferencePanes/GnuPG.prefPane):
principalClass is nil.



______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert D.
2006-07-24 18:21:31 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

I re-ran the install of GPG-Mail and watched the console.
I also made another key and now there are the available keys for
signing this email.
Still leaves me to wonder where the gpg.conf resides for editing.
I have set this email to *sign* FWIW


Here is the console output of the GPG-Mail run noting errors if they
are important.

===== Monday, July 24, 2006 2:11:37 PM US/Eastern =====
2006-07-24 14:12:12.738 GPG Keychain Access[398] *** Assertion
failure in -[NSComboBoxCell
_objectValue:forString:errorDescription:], AppKit.subproj/NSCell.m:1298
2006-07-24 14:12:12.770 GPG Keychain Access[398] Invalid parameter
not satisfying: aString != nil
gpg: Generating new key...
.......+++++
............+++++
gpg: key 9FE9A351 marked as ultimately trusted
gpg: Finished generating new key
2006-07-24 14:16:53.999 System Events[482] .scriptSuite warning for
attribute 'currentUser' of class 'NSApplication' in suite
'SystemEvents': 'Accounts.User' is not a valid type name.
2006-07-24 14:16:54.014 System Events[482] .scriptSuite warning for
to-many relationship 'loginItems' of class 'NSApplication' in suite
'SystemEvents': 'logi' is not the Apple event code of any known
scriptable class.
2006-07-24 14:16:54.014 System Events[482] .scriptSuite warning for
to-many relationship 'localUsers' of class 'NSApplication' in suite
'SystemEvents': 'uacc' is not the Apple event code of any known
scriptable class.
2006-07-24 14:17:02.449 Mail[490] Loaded GPGMail 1.1.2 (Tiger)



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)
Comment: www.denstarfarm.us/Denstar%20Web/keyid_import.html

iQIVAwUBRMUPwESAqiSNcDrJAQq4aA/+K/hlSHCLie/8jysM4RAvhIgKaj5zI1HC
d3OB/iCn9J2Ah22goGyMFT9jZE+fCwfC/kiUIYV3aQsHwSDHLWfbGWn/t7030CqN
EZIX9SwawTRgRfSlkOT1BzqBKCAB2w6Euqk/rk0sQ2vjZcLVECVbgws98m7y1fky
rhLsO+VPk67aECjhI6wGikSpyhCMc5SkStJIqabKS9IRRrXaJ4vysDJfjEnI6Oh0
/irDHroKDqNvtQYFX+Q0MIHhCb3Eh8Jer8lU+IF3YgmIA5sBsmwNHCE5GCp2Pjd1
S1m7rTFe+jdlQCZodlhCiJSmySslekJegIFJ6MfzFL01AJJtl1ls/h2eW7WUYimc
Je8Bk1gdcsEw4OpcZU9M5Ht+jR/QckmqvNqOlE4Sra6YjacJyjJOvwZ9RFkIahW2
Tk4SDS0W9/EtLS9gMhFYVTicZg81bKB4hZjy++/c4IGHY1Vlb0GdwxgkPOK70SCI
8xSu50d0tfWrIqZyEH8Na2VWqBB3Z5VjW6vDNq9cq+dlo1NjY6pVXclPON70n/pL
Bh+qvw+2lh4ZwT7jMLaUC4BVy97KoLbxm5DnmbnWCjt66kPg7W2+ZjQHhGpVYRPW
WAm33DEG1XW0wC6gMMhMohB7Hlc6DW4oNAhhQVWOVX0c6gzUDiSlLzZNXmlehGxY
fPFGHant0uk=
=voZf
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert J. Hansen
2006-07-25 00:46:23 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Post by Robert D.
Still leaves me to wonder where the gpg.conf resides for editing.
As said before, it lives in $HOME/.gnupg.

While the directory $HOME/.gnupg almost certainly exists, gpg.conf may
not exist. Put it in there.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQEcBAEBCgAGBQJExWnfAAoJELcA9IL+r4EJyBgIAMLKg0W8n+bdwDDS4i0yQEfR
FScw0gCSrFG2phK/tM3Cmvk+cnsp8BTEGl4W+EKpgvIR3MfjvhmC5dJhcmfkl9jk
hOABt2eQ4uJeM7ifrJl2WiRH6LHiwQ6LqAjQvrjZbmIGUswD4LXzoK0SpUjhWsLu
s6p1B4RMeZKWKo1wqu2d6iXyhDQp2fBzEvj4RcMp0FAmbcahW21LurE+mvPIgEEH
eJVfdow4556/YDrkYeRYFSaNbEXDTh2ci3gl/VOkLH++woVXzpRRlFBYrEffcw6W
uHpavb/lWz40pqLKOVB0gel0SjCo2x0jZqoqi3HLDJue3HKJ9kgujhKRlGtOxlw=
=ytIo
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Robert J. Hansen
2006-07-25 00:44:39 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
This is a problem with GPGPreferences, not GnuPG. I don't use
GPGPreferences. I'd suggest complaining to the GPGPreferences
developers. :)


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQEcBAEBCgAGBQJExWl2AAoJELcA9IL+r4EJ/ZsIAKQLD5ZmWttRAgFaD3XbyHAD
R2jakTKnIebfOSwlE3PFEVhW/d6QUjgdT2dsQoxhiULhIK7UCMo4u9eHYnmCuRB8
h7xFKIhQoIwXnQyNxtneWgzEOq/5JYnsbHRcYOd+RLofA5hT3/UVqPHCG5goB0tF
2M5uPj7xW/SYr7bFgj/H5fAdXgzcJkV4jZZmjq6BeCBmUwDWgmazSN9RiJ2fVGu6
QCHVjJDwOg6iHyRZS4Ek/MQLuSgdXLmk/ncqYViYnqgchqtxXrPwRj55CoesfATW
8RkTqLpDYMao+E1XyHZYludfEdlYzzfYPBfusfr7A8RS16M7+tASc/jAspiSyUU=
=gJfo
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com
Curtis
2006-07-29 12:33:11 UTC
Permalink
-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160
Post by Robert J. Hansen
This is a problem with GPGPreferences, not GnuPG. I don't use
GPGPreferences. I'd suggest complaining to the GPGPreferences
developers. :)
I didn't get GPG Preferences to work either. Seems to be a compatibility
issue.

However, I did get gpg to install and discovered that I needed to run
the Intel version of Enigmail. Things are OK now.

- --
- -= Curtis =-

Don't talk unless you can improve the silence.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQCVAwUBRMtVhvqOF4WkbeMgAQMZaQP+M4w015XEbcPnR3IdyxIkdT9culaT+Pmh
cQ04s3BMK+Hi1wXvEKqjJsWP8dsYOyyRX8jVbhdStMLqafb6octk9cQc/+sEaTEs
9sEGb1cTx1WNoLRObcPJYCnDa6o95R7wpQiKhmZyvBlks3CBPRuVn3lmWGv6mdmD
QzcmVF9PuAY=
=KtoU
-----END PGP SIGNATURE-----


______________________________________________________________
Archives: http://groups.yahoo.com/group/PGP-Basics/messages
OT List: http://groups.yahoo.com/group/PGP-Basics-OT
OT Subscribe: mailto:PGP-Basics-OT-***@yahoogroups.com

Loading...