-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.php
More file actions
37 lines (32 loc) · 1.18 KB
/
config.php
File metadata and controls
37 lines (32 loc) · 1.18 KB
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
<?
/*
* PHPkrm is a Web-based GnuPG keyring manager.
* To administrate the keyrings use the gpg command line tool.
* Configuration File Template.
*
* This software is licensed under the GNU General Public License.
* See index.php for authoring details.
* See COPYING for details.
*/
$gpgbin="/usr/bin/gpg";
$keyserver=""; //Specify FQDN if you want to syncronize with a keyserver
$sendkeyserver=""; //Specify FQDN if you want to send new keys to a keyserver
$dbpath="/var/keyrings/"; //Where to save the keyrings with end /
$basehref="";//Path in HTTP to use if you use rewrite else don't use.
//Anti-SPAM substitutions in html and txt mode
$AThtml="<b> AT </b>";
$DOThtml="<b> DOT </b>";
$ATtxt=" AT ";
$DOTtxt=" DOT ";
/* Begin reCAPTCHA (optional) - http://recaptcha.net/ */
//Hide e-mails using capcha (e-mails in text mode disabled)
//Get the keys at http://mailhide.recaptcha.net/apikey
$recaptcha_mail_pubkey="";
$recaptcha_mail_privkey="";
//Protect form submit using CAPCHA
//Get the keys at http://recaptcha.net/api/getkey
$recaptcha_form_pubkey="";
$recaptcha_form_privkey="";
/* End reCAPTCHA */
/* End of Configuration File */
?>