diff options
Diffstat (limited to 'config.inc.php.dist')
| -rw-r--r-- | config.inc.php.dist | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.inc.php.dist b/config.inc.php.dist index e9fb3fc..a7c045d 100644 --- a/config.inc.php.dist +++ b/config.inc.php.dist @@ -92,7 +92,8 @@ $config['inbox_settings_delete_keys_query'] = 'DELETE FROM pgp_keys WHERE id IN // (in case the username is an email address) // %d - the domain part of the username // (in case the username is an email address) +// %f - the key fingerprint // %k - the binary key data blob // %c - the comment to identify the key -$config['inbox_settings_add_key_query'] = 'INSERT INTO pgp_keys (username, key_data, comment) VALUES (%u, %k, %c)'; +$config['inbox_settings_add_key_query'] = 'INSERT INTO pgp_keys (username, fingerprint, key_data, comment) VALUES (%u, %f, %k, %c)'; ?> |
