blob: 0abb026d1516a18500a727654c2b7298a3cd945a (
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
|
# Default PGP config
[db]
# db path the PGP plugin will use to store list/user configuration (not keys!).
url = sqlite:////$DATA_DIR/pgp.db
[gpg]
# GPG homedir
homedir = $DATA_DIR/gpg/
# Keyring used to store user keys. (GPG pubring)
keyring = $DATA_DIR/gpg/pubring.gpg
# Keyring used to store list keypairs. (GPG secring)
secring = $DATA_DIR/gpg/secring.gpg
[keypairs]
size = 4096
type = RSA
[queues]
in = in_default
out = out_default
|