]> git.donarmstrong.com Git - gnupg.git/commitdiff
* Completely move around the home directory system and begin
authorDon Armstrong <don@donarmstrong.com>
Fri, 17 Feb 2006 09:22:07 +0000 (09:22 +0000)
committerDon Armstrong <don@donarmstrong.com>
Fri, 17 Feb 2006 09:22:07 +0000 (09:22 +0000)
   transitioning to a module based system instead of the individual
   directories

.caffrc [new file with mode: 0644]
.gnupg/gpg.conf [new file with mode: 0644]
.gnupg/owner_trust.txt [new file with mode: 0644]

diff --git a/.caffrc b/.caffrc
new file mode 100644 (file)
index 0000000..eeca82a
--- /dev/null
+++ b/.caffrc
@@ -0,0 +1,7 @@
+$CONFIG{owner} = 'Don Armstrong';
+$CONFIG{email} = 'don@donarmstrong.com';
+$CONFIG{keyid} = [qw(81C08922808D0FD0)];
+$CONFIG{keyserver} = 'subkeys.pgp.net';
+$CONFIG{gpg} = 'gpg';
+#$CONFIG{'no-download'} = 1;
+#$CONFIG{'no-sign'} = 1;
diff --git a/.gnupg/gpg.conf b/.gnupg/gpg.conf
new file mode 100644 (file)
index 0000000..0dff004
--- /dev/null
@@ -0,0 +1,125 @@
+# Options for GnuPG
+# Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+# 
+# This file is free software; as a special exception the author gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+# 
+# This file is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+#
+# Unless you you specify which option file to use (with the
+# commandline option "--options filename"), GnuPG uses the
+# file ~/.gnupg/options by default.
+#
+# An option file can contain all long options which are
+# available in GnuPG. If the first non white space character of
+# a line is a '#', this line is ignored.  Empty lines are also
+# ignored.
+#
+# See the man page for a list of options.
+
+# Uncomment the next line to get rid of the copyright notice
+no-greeting
+
+# If you have more than 1 secret key in your keyring, you may want
+# to uncomment the following option and set your preffered keyid
+
+default-key 81C08922808D0FD0
+
+
+# GnuPG ultimately trusts all keys in the secret keyring.  If you do
+# not have all your secret keys online available you should use this
+# option to tell GnuPG about ultimately trusted keys.
+# You have to give the long keyID here which can be obtained by using
+# the --list-key command along with the option --with-colons; you will
+# get a line similiar to this one:
+#    pub:u:1024:17:5DE249965B0358A2:1999-03-15:2006-02-04:59:f:
+# the 5th field is what you want.
+
+trusted-key 81C08922808D0FD0
+
+
+# If you do not pass a recipient to gpg, it will ask for one.
+# Using this option you can encrypt to a default key.  key validation
+# will not be done in this case.
+# The second form uses the default key as default recipient.
+
+#default-recipient some-user-id
+default-recipient-self
+
+
+# The next option is enabled because this one is needed for interoperation
+# with PGP 5 users.  To enable full OpenPGP compliance you have to remove
+# this option.
+
+force-v3-sigs
+
+# Because some mailers change lines starting with "From " to ">From "
+# it is good to handle such lines in a special way when creating
+# cleartext signatures; all other PGP versions do it this way too.
+# To enable full OpenPGP compliance you have to remove this option.
+
+escape-from-lines
+
+# If you do not use the Latin-1 (ISO-8859-1) charset, you should
+# tell GnuPG which is the native character set.  Please check
+# the man page for supported character sets. 
+#charset utf-8
+
+
+# You may define aliases like this:
+#   alias mynames  -u 0x12345678 -u 0x456789ab -z 9
+# everytime you use --mynames, it will be expanded to the options
+# in the above defintion.  The name of the alias may not be abbreviated.
+# NOTE: This is not yet implemented
+
+# lock the file only once for the lifetime of a process.
+# if you do not define this, the lock will be obtained and released
+# every time it is needed - normally this is not needed.
+lock-once
+
+# If you have configured GnuPG without a random gatherer
+# (./configure --enable-static-rnd=none), you have to
+# uncomment _one_ of the following lines.  These
+# extensions won't get used if you have a random gatherer
+# compiled in (which is the default for GNU and xxxBSD systems)
+#load-extension rndlinux
+#load-extension rndunix
+#load-extension rndegd
+
+
+# GnuPG Agent
+use-agent
+
+# GnuPG can import a key from a HKP keyerver if one is missing
+# for certain operations. Is you set this option to a keyserver
+# you will be asked in such a case whether GnuPG should try to
+# import the key from that server (server do syncronize with each
+# other and DNS Round-Robin may give you a random server each time).
+# Use "host -l pgp.net | grep www" to figure out a keyserver.
+#
+# If you do not want to use the default port 11371, you can give the
+# name of the keyserver like this: 
+#   x-hkp://keyserver.example.net:22742
+# If you have problems connecting through a buggy proxy, you can use this:
+#   x-broken-hkp://keyserver.example.net:11371
+# But first you should make sure that you have read the man page regarding
+# proxies (--honor-http-proxy)
+# Most users just set the name of the preferred keyserver.
+keyserver subkeys.pgp.net
+#keyserver pgp.mit.edu
+#keyserver keyring.debian.org
+#keyserver x-hkp://keyserver.noreply.org:80
+
+# The environment variable http_proxy is only used when the
+# this option is set.
+
+keyserver-options honor-http-proxy auto-key-retrieve
+no-auto-check-trustdb
+
+
+#keyring /usr/share/keyrings/debian-keyring.pgp
+#keyring /usr/share/keyrings/debian-keyring.gpg
+#keyring /home/don/keysigning/debconf_keyring
\ No newline at end of file
diff --git a/.gnupg/owner_trust.txt b/.gnupg/owner_trust.txt
new file mode 100644 (file)
index 0000000..72e8a7d
--- /dev/null
@@ -0,0 +1,194 @@
+# List of assigned trustvalues, created Tue 01 Nov 2005 12:05:10 AM PST
+# (Use "gpg --import-ownertrust" to restore them)
+45AD1B8A9474319A4F7F649881C08922808D0FD0:6:
+6F0E1FA1F92FF96EDE2E56C97CD760631557BC10:4:
+7F9AD2ADCD3737FD60FD0A114F1A998EDA6AE621:4:
+0E9781D69B8816F286F572CE3330A21567209BDE:2:
+7579786D41105F4A4D4436911EC237D9534584E8:4:
+4DF332191F1BA6E51685E6EE5382B24BE6B1B723:4:
+272DC6FA14A408B719C2C9B1BFEE2BD400000000:4:
+CF0B10589F1D97102CAD3F858CEEB259B3C281F4:2:
+4B50F1E3080C21A291F48BF0CD603B5A2ECF984B:2:
+395DE808BEADD7215E8220513450ED513FCC2A90:4:
+BCF71345BE42B5B81A57EE091D339C658B8D7663:4:
+FFB087FFAA67B0BCB97D62048A9067791880283C:4:
+ED6F9504FD4E539A8279616B826FCAC21E880A84:2:
+4B7D218817B6F67C582DCFB0C376A8DAF1BCDB73:2:
+CCA377BD77494424B0DB674F8C90347F8F068012:2:
+A18EEFA7E2E3B02A4168875D64A7C0A7F2CF01A8:4:
+3FA545F103049F9AAE902F84EFD64D0912066207:2:
+D5D098AFB14363734F4178618351C3C268AC5746:4:
+4189E4231C09700E89119CAF276568D75C6153AD:2:
+F972A168A2703B34CC23E09FD4E5EDACC0143D2D:4:
+6EF6C284C95D78F60B78FFD3981C5FD7C671257D:4:
+183A70FC47321B8757A5CE82D8377D4EE81E55C1:4:
+AAA1D9EA42E099A339B36D7686E00D0C19A42D19:4:
+70232C9912BBAE1D46FCF524043236EB10731977:2:
+480E51BAFB08CB4175CC91B15072D036AC583520:4:
+9A98C6EBC0989ED03085ECA99FB0DB32C02440B8:2:
+CEC86BB4A0BA9D0F90397CAEF8358FA2F2833C93:2:
+66B4DFB68CB24EBBD8650BC4F4B4B0CC797EBFAB:4:
+DCB911B6BEDF8F3C089B9E6429A0BAFB39A8CCE2:2:
+A74A703C8FC9198EB12DD83DEFA55436964199E2:4:
+3CAB9397E835E2E95289A0C0F85EBF46258D8781:2:
+4C951CEC98B44B68A286FF458489B14D8807529B:2:
+0C79D2D12C4E9CE45973F800D80EF35A8BB527AF:4:
+54225C61F6B706FB7E043738EE25DE3F1CDB0FE3:4:
+D9E45378D0F9E4B20622D299976B884B0813569F:4:
+DF7DEB2FDB28FD2BA9FBFA6D715ED6A07E7B8AC9:4:
+2A66C00AC1EAFE2E4493B7E07BC883A0294260F6:2:
+F01946CCF910B59289E8D6341D28E4BFE02FEF11:2:
+3F3787880D85019456F741CBA3882EBF78446F26:4:
+453CBE8C8DF8B5E27B382D4F2578F87E149CDDB2:2:
+449066C4EA3047C0D514A3B637B88FCD74A8390A:2:
+D7F53417338270A8870EC9D792E60A8B5F6D8015:2:
+360BB87969575D6FEED3D98640A5BEED72D03CB1:2:
+B4A1BF689A23E2F7CC44455FB756A78C882A6C4B:2:
+71D72EF4798F8E3A8B5AB11441DC1C907244970B:2:
+FA48D2AF2802F1824D5828230587B26E45F3FBF9:2:
+D5AF25FB316B53BB08E7F999E544DE079B7C328D:4:
+314E3B2D605A6EB35A7D8119F628EB934743206C:4:
+E6445A655AF81C0F9DECA73589CD4B21607559E6:4:
+A982F04EABCD834CAED9DFFD3485BA08D0EC0723:2:
+4D4DC1443D17F705C62319D50DE7276D5E0577F2:2:
+C0BD59FEBBFA2A7E8A41BB3F91374E81825BEF79:2:
+6E2FAF77C5DF8E782B934A4B28DDB0FD19C9B6BA:2:
+8896575C8FD4DB28F66FE70792BE9B3323FB36E4:2:
+30DC1D281D7932F55E673ABB28EEB35A3E8DCCC0:2:
+892BE46A7E96280B4D9373F4F67E2A5D1CF2D62A:4:
+4CD7347D4C6B72336E29F557C4E00BB37355FAFF:4:
+22C0D6AC4316A73F9312BE31423130495ED7198E:2:
+B79B0A23EB24809BBAEE5DB6F7F0E70F307D56ED:4:
+737357552CC0B16C4339258FC0A4F11DE06B3F97:2:
+A86D7CED4E8C17F64457FD1ADFEDBB2225BCD5BF:4:
+834700FCB5BF6CC00FC9AB901875120AA30EC22B:4:
+E72B13FEEB7259422D20B73246061F2166F854B2:2:
+E7F9CD5E2030E0CCFE2C291E9F428C9626CF837C:2:
+41FAF20828D47CA519BB7AD9F85990B0248AEB73:4:
+46CDD2920692D5A28F812E48071774E000D8CD16:4:
+BEC9A3723351A8951C9742A4CBFBFB57EFAA3331:2:
+AD8254B339CE673A1406FD075CA450DE52B7487E:2:
+040EB5F784F14FBCCEADADC618A0CC8D5706A4B4:2:
+80CCEE410FA324A6EFD5D106C9CD100BB0D904CF:2:
+AC656D79E36232CF77BBB0E87C3B797088C7C1F7:2:
+9328CDA73EF53AC1CDF93A8B71A1FF601BF8DE0F:2:
+49C8B9E0870074C5D05EDB568378B3568C026D21:2:
+3FFE8447F65F659664906B530DCB394414D4060B:2:
+3565209628D57EA606A7F90C215D8F880F30A7D6:2:
+7ACE0FB07A74F9949B36E1D1D14E8526DC47CA16:2:
+33670D84444BD5B6980E7D5D1209639D114AA85C:2:
+10CA47C6A071726120E22E0B54703CDE1228EB75:2:
+6D2EB3CAF6BCD06EEF42247F60305B31C09FD35A:4:
+DC7B94537F261BF96B219F90C18773559FE8D504:2:
+5D9B552DA370544F83E438533048C78B7984A4FD:2:
+55AB31F837A4104C9C3D7F2740EAFD0BE19F188E:2:
+04FB134FB106D372D28CC8A7F43E72663CC88C09:4:
+25FC1614B8F87B52FF2F99B962AF4031C82E0039:4:
+576E100B518D2F1636B028053CB892502FA3BC2D:4:
+15FB69F7D859DFBD15BEA41B9A1C684A7ECA56A3:4:
+42671013F94A0ABEB4CE9B6D3DFC2C62AF79D29E:4:
+9242DC152502FEABE15F84C6D538EC0953805746:2:
+5DB31301375AA50F07E7302F493EFB8E5D64F870:4:
+ADEE56831C993257F41DA3F2F20FAC0B7B8357E5:4:
+BABF7363047B4136A5F0BC577B10EEA2128B16E0:2:
+DEA27BAA479CCA5876E5DE5628DEAE7F29982E5A:4:
+ED6FE2EFE0793C8CFB0D06384044F61854E672DE:2:
+B53FE57BD0C1F689FCE256235B9AA5F8801EA932:4:
+D224C8B07E63A6946DA32E07C5AF774A58510B5A:2:
+AC17A3ECE2C52DC48898CC4B0449EB4D69351387:4:
+48C4D999F69A4615AF5F28535ACFC4840D62001B:2:
+2BF1D40D92B50C9772C3E2CC55C15C6925BFB848:2:
+FF46E5655CC1E2E53F69C7391D87E54973647CFF:2:
+86AADB04D2F5CC553A4D940FB1A9DD82DC814B09:2:
+0C2CE3E83489599A75EF115698EE733A9DE1EEB1:2:
+FD350B0AC6DD5D91DB7A83D1168B4E717032F238:2:
+F7867D1E8EEB8DE7EBBE05BF25D28CC5957D58CF:2:
+3D67D42F2D504B681D62E999EFCBCDFF61F05B8C:2:
+34F879978BC103F09C43F3D7B3753E4D514B3E7C:2:
+208B682510093F2ED295E34EEB6CD6C5893FAD07:2:
+978204E72B75405CF5E90C81C514AF8E4BA401C3:2:
+FBDF66F84CAC5E588EC477E49FCF2CCD3F3E6426:2:
+C086702FBADE5C579375E2947E53298400000000:4:
+73DA0A6E57808A7BECD771A810BB80FC16BD77C6:4:
+3A53DA5E797E9168351F6666314F7A95EC152942:4:
+FE5E11B666F04EE8EB0CF261AFC299AF3DE9A7CA:2:
+9E49A39577D4A776F1DFE87BE6284F2786624ABB:2:
+9480583353E334D2F03FE80CC3EC6DBEDD6D12BD:2:
+3798CF214178565EFDE7480BA43E6D27128287E8:4:
+2DA00A3E65263CACE706175A4AD9516B0F932C9C:2:
+E8DC91A1B7BEE5ABC17247EE742F2A428E635A5E:4:
+CC992DDDD39E75B0B0AAB25CD35BBC99BC7D020A:2:
+44A9EDF44076706A22B761A0A88A9AB0864826C3:2:
+A415089D7B9647EE0CBC378CAE4D82E600000000:2:
+B7938AC2CC488357C29939C2DDE35CF15653C9C4:4:
+AB988864555AD521B8B5B1BB0763DBB5DE206137:4:
+A0E7D2FCCC48721071CC617976EF8CE887B1CFB5:2:
+48DFD0003BE71FF8D9C15832DA460E47EE6DC66A:2:
+15422F753887AF71A07E22B9083E8870C67788E9:2:
+BB6423391CAA7064E4297E1866FC1D7F86946D69:4:
+0791A20C480335C392E688F7A4FB2B5876DC283D:4:
+0D4C40C184AFA56AF548DE1CEAE3DC35F0D7D44A:4:
+621F1A5D1D7155C1933D4F303764AA6A0CD8EF97:2:
+B06B023FEAA637DC1E62B0794BE0582590788E11:2:
+348DE846F4789BC17FBDD2B079897DE7DDC0B70D:2:
+46B736088E7B74882324702310F5F694873F25F1:2:
+B3B5F6CDBB5E586B80C15A74E15517F22B0920C0:2:
+53D732109C90AAB211D805034164D1B3894BB479:2:
+0DC8F2DB65A88459E8A943D3971B8F6AF9F4379B:2:
+843123A5C6B1C44D3E9118D7D54EAE4BC99870B1:4:
+058E0BBC57E7F03479579D3182944F68EA2D2C41:2:
+7568712B6733F06FCDDD885EB3431F839089B8A9:2:
+586377100EB11C2DAD7E1B3EE74D29B82BE16D01:2:
+91C79B1D93D530A289FEE77C4BB3A3A356191A6D:2:
+ECEF006B8B6A1FC2A9C86FE7FD3F5B82BB19A148:2:
+09EC0E37C9C9715940F0A966AF5100AE00000000:2:
+D8916D8D5CA816AE42548495F1BD4BE45B430367:2:
+F728A5E5754B2D5E30F842DC9CD5C8B367D8E867:2:
+950CA1EA6493A7F64A90AA4D28B295C3F46EADBB:4:
+8D49098558150AC8043C9CFD738E38B6E90CFA24:2:
+EE93BB17DE3DB89F44CE4ECB92BC94766394265E:2:
+ECF3ADB2B82A839E1404D80489B3EF32CAEAAF03:4:
+4C6DC566E8CA2BD30C76CA5B3D75F850D21452EA:2:
+995314085A0EC967941DCE9DE66D2EEBAB963370:4:
+754D5F7CF396B4185FB7ED508030359A00000000:4:
+63EAB98FEF17EF6E235F077AB2BC9D4CEEDB201E:2:
+DB107BC21687426E7AC8BB2309F07408C87FFC2F:2:
+FB94D9AB94C4DC866512A05DEB95DA7EE8DACF5C:2:
+339FF8F4DEEFC8AAC77E5D1E1E4F6649EA291785:4:
+828781B3AF3430F1687EAF6454C24FB53B0BB9A9:2:
+A48F889437A0FDE960D5212A2A58CEAA52698E9F:2:
+BE86399AF0B45EB2AE7FEBFB43DFE22488DC167A:2:
+5B00C96D5D54AEE1206BAF84DE7AAF6E94C09C7F:4:
+31D576EBA534E16BB073623B0C48BEB41C9FF77B:2:
+830C56B4125681C54D71CFD1DB4CCC4B2A30D729:2:
+8926D35C8506CB5CCB1800C632B5334991E153C5:2:
+1573D54473C3988F00963E4FEA4C661F2B46A27C:4:
+86079AD8227425A11AF9B4D151ACF6AD75BE8097:2:
+9BCFA58E58525CE3386553CC3087FCF800000000:2:
+79A72471AB13B412F881ADDA4E4BDAE237EDA93E:2:
+DEB63B45549FF0B2B7EBE84669D2A61DE263FCD4:2:
+ACF49D3E1E1D5EE2B2035E53220BC883330C4A75:4:
+8DF8CE5324F3177C24176C6562038A4BDD9B9910:4:
+F80E53CF88C23023BA25557B90B5DE6600000000:4:
+11554B19A50F11366E60A4997CF3F5AF29499F61:4:
+41F3CA36E8BBF572E99CDE25260C354888F88F8F:4:
+FD491A631807C1EA11B1B0095EED00DBCDB6DBEC:2:
+5117451897B384442D6F3A5A214F6841515F9B74:2:
+820F6308F2B08DA24D3EC20E750807B5551BE447:2:
+96BC3DAB231A7FCC4F49D7839A6965C1FC4FBF28:2:
+F041D6BB96B6BAE3FF9264D35FCAF9022EDFE670:2:
+DEE850F81C5AF8208DD629D30BA0EE03EAF19B60:2:
+27F05377E5AC01931CFB3C4944685073F93F813B:2:
+3450D30C7936E17EE0B9F83A797AF9EB1E0CB9CD:2:
+D22D038BE6F305F4F4DFD03827789DE0736C856E:2:
+C644D0B392F48FE44662B5411558944599E81DA0:2:
+B2DDF35176398224B8BF67FD37D2B4E5293697C2:2:
+96F7A8CCA87F0EB8349701B25A0A399AEA7CF5AD:2:
+80C4A4087B2666099976E143DADA79CD788A3F4C:4:
+099D098F89522412FEC2319DFEF85C0300000000:2:
+EFFDC2C90B84664F14B3096E41B9F4E85B713DF0:4:
+C8B2CB3E322549BB5ED20002BE3CED47C6CEA0C9:4:
+D5E288396ED33305805C941F9476A9BDE2B2CAD1:2:
+F3438FD50F2EAAF9215502DE49820C1CEA59038E:4:
+1ECE6A35AF34BC655F65B34121B9575CA7D91602:4:
+E6EB98E2B8858FF06C045C1DE106481EEDF008C5:4: