blob: a287b1802af0d6a185cc16454d6838dab52f4125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Default PGP config
[db]
# db path the PGP plugin will use to store list/user configuration (not keys!).
url = sqlite:////$DATA_DIR/pgp.db
[keydirs]
# Key directory used to store user public keys.
user_keydir= $DATA_DIR/gpg/user_keydir/
# Key directory used to store list keypairs.
list_keydir = $DATA_DIR/gpg/list_keydir/
# Key directory used to store list archive public keys.
archive_keydir = $DATA_DIR/gpg/archive_keydir/
[keypairs]
# Length of primary list key.
key_length = 4096
# Type of primary list key.
# One of RSA, DSA, ECDSA.
key_type = RSA
# Length of list encryption subkey.
subkey_length = 4096
# Type of list encryption subkey.
# One of RSA, ECDH.
subkey_type = RSA
[queues]
in = in_default
out = out_default
|