1.2 #4

Merged
muppeth merged 4 commits from 1.2 into main 2023-09-02 20:33:55 +02:00
2 changed files with 16 additions and 0 deletions
Showing only changes of commit 3be95d1c06 - Show all commits

View File

@ -99,6 +99,11 @@ lacre_webgate_email_from: 'gpg-mailgate-web@example.com'
lacre_webgate_email_subject_requestpgp: 'Confirm your email address'
lacre_webgate_site_url: 'http://example.com/gpgmw'
lacre_webgate_site_title: 'PGP key management'
lacre_webgate_site_logo: 'img/logo.png'
lacre_webgate_site_faqurl: 'https://lacre.io/faq'
lacre_webgate_site_howurl: 'https://learn.lacre.io'
lacre_webgate_site_contacturl: 'https://lacre.io/contact'
lacre_webgate_language: 'english'
lacre_webgate_debug: 'enable'
lacre_webgate_mail_smtp: 'false'

View File

@ -37,6 +37,17 @@ $config['email_subject_requestpgp'] = '{{ lacre_webgate_email_subject_requestpgp
//site URL, without trailing slash
$config['site_url'] = '{{ lacre_webgate_site_url }}';
//site logo
$config['site_logo'] = '{{ lacre_webgate_site_logo }}';
//link to FAQ page
$config['site_faqurl'] = '{{ lacre_webgate_site_faqurl }}';
//link to tutorial website
$config['site_howurl'] = '{{ lacre_webgate_site_howurl }}';
//link to contact page
$config['site_contacturl'] = '{{ lacre_webgate_site_contacturl }}';
//title of the website (displayed on home page)
$config['site_title'] = '{{ lacre_webgate_site_title }}';