summaryrefslogtreecommitdiff
path: root/monkeysphere.conf
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-05-03 12:04:18 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-05-03 12:04:18 -0400
commitb77a5f163462c9a45a6cb76aeaeecd2f69f57ed3 (patch)
tree99e1b923768de331d84caca3d863fa940554c679 /monkeysphere.conf
parent0b21bae54002f213118aa537d432f3375799073b (diff)
parentd19ed9fb6cc0bd7de9eb14b6d192c9eaccedc427 (diff)
Merge commit 'jamie/master'
Diffstat (limited to 'monkeysphere.conf')
-rw-r--r--monkeysphere.conf23
1 files changed, 21 insertions, 2 deletions
diff --git a/monkeysphere.conf b/monkeysphere.conf
index 1e3abf9..1a6cff1 100644
--- a/monkeysphere.conf
+++ b/monkeysphere.conf
@@ -1,7 +1,26 @@
# monkeysphere configuration file
# this is currently meant to be sourced by bash.
+
+# configuration directory
CONF_DIR=/etc/monkeysphere
+
+# where the per-user authorized user id files are stored
AUTH_USER_IDS_DIR="$CONF_DIR"/auth_user_ids
-KEYRING="$CONF_DIR"/keyring.gpg
-KEYSERVER=subkeys.pgp.net
+
+# where the per-user authorized_keys info is stored
+#AUTH_KEYS_DIR=/var/lib/monkeysphere/authorized_keys
+AUTH_KEYS_DIR="$CONF_DIR"/authorized_keys
+
+# gpg home directory for server
GNUPGHOME="$CONF_DIR"/gnupg
+
+# gpg keyserver to search for keys
+KEYSERVER=subkeys.pgp.net
+
+# acceptable key capabilities for user keys
+# can be any combination of:
+# e = encrypt
+# s = sign
+# c = certify
+# a = authentication
+REQUIRED_KEY_CAPABILITY='sca'