. */ /* DO NOT EDIT THIS FILE! Instead, copy over "config.sample.php" to "config.php" and edit settings there. */ $config = array(); $config['email_web'] = 'admin@example.com'; $config['email_from'] = 'gpg-mailgate-web@example.com'; $config['email_subject_requestpgp'] = 'Confirm your email address'; $config['site_url'] = 'http://example.com/gpgmw'; $config['site_title'] = 'PGP key management'; $config['debug'] = false; $config['mail_smtp'] = false; $config['mail_smtp_host'] = 'localhost'; $config['mail_smtp_port'] = 25; $config['mail_smtp_username'] = 'gpgmw'; $config['mail_smtp_password'] = ''; $config['db_name'] = 'gpgmw'; $config['db_host'] = 'localhost'; $config['db_username'] = 'gpgmw'; $config['db_password'] = ''; $config['pgpverify_enable'] = false; $config['pgpverify_tmpdir'] = '/tmp'; $config['pgpverify_allowblank'] = true; $config['lock_time_initial'] = array('requestpgp' => 10); $config['lock_count_overload'] = array('requestpgp' => 3); $config['lock_time_overload'] = array('requestpgp' => 900); $config['lock_time_reset'] = 300; $config['lock_time_max'] = 3600; ?>