✨: introduce webapps playbook to handle web php applications
This commit is contained in:
25
roles/roundcube/templates/carddav.config.inc.php.j2
Normal file
25
roles/roundcube/templates/carddav.config.inc.php.j2
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
$prefs['_GLOBAL']['fixed'] = true;
|
||||
$prefs['_GLOBAL']['loglevel'] = \Psr\Log\LogLevel::WARNING;
|
||||
$prefs['_GLOBAL']['loglevel_http'] = \Psr\Log\LogLevel::ERROR;
|
||||
$prefs['_GLOBAL']['default_addressbook'] = [
|
||||
'preset' => 'Personal',
|
||||
];
|
||||
|
||||
$prefs['Personal'] = [
|
||||
'accountname' => 'Nextcloud',
|
||||
'username' => '%u',
|
||||
'password' => '%p',
|
||||
'discovery_url' => 'https://{{ roundcube_carddav_discovery_url }}:443/remote.php/carddav/addressbooks/%u/',
|
||||
'rediscover_time' => '24:00',
|
||||
'hide' => false,
|
||||
'preemptive_basic_auth' => false,
|
||||
'ssl_noverify' => false,
|
||||
'active' => true,
|
||||
'readonly' => true,
|
||||
'refresh_time' => '24:00',
|
||||
'use_categories' => true,
|
||||
'fixed' => [],
|
||||
'require_always_email' => false,
|
||||
];
|
26
roles/roundcube/templates/config.inc.php.j2
Normal file
26
roles/roundcube/templates/config.inc.php.j2
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
$config['imap_host'] = 'tls://imap.libertus.eu';
|
||||
$config['smtp_host'] = 'tls://smtp.libertus.eu';
|
||||
$config['smtp_log'] = true;
|
||||
$config['db_dsnw'] = 'pgsql://{{ roundcube_pg_role }}:{{ roundcube_pg_password }}@localhost/{{ roundcube_pg_database }}';
|
||||
$config['support_url'] = '';
|
||||
$config['auto_create_user'] = true;
|
||||
$config['log_dir'] = 'logs/';
|
||||
$config['temp_dir'] = 'temp/';
|
||||
$config['login_lc'] = false;
|
||||
$config['des_key'] = 'ec+yITr6hLz+&00O_9SPa%Je';
|
||||
$config['mail_domain'] = '%d';
|
||||
$config['plugins'] = ['carddav'];
|
||||
$config['message_sort_col'] = 'date';
|
||||
$config['list_cols'] = ['subject', 'from', 'date', 'size', 'flag', 'attachment'];
|
||||
$config['language'] = 'fr_FR';
|
||||
$config['date_formats'] = ['Y-m-d', 'd-m-Y', 'Y/m/d', 'm/d/Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'];
|
||||
$config['date_long'] = 'd.m.Y H:i';
|
||||
$config['skin'] = 'default';
|
||||
$config['mail_pagesize'] = 40;
|
||||
$config['prefer_html'] = false;
|
||||
$config['mime_param_folding'] = 0;
|
||||
$config['display_next'] = false;
|
||||
$config['default_font'] = '';
|
||||
$config['message_cache_lifetime'] = '10d';
|
Reference in New Issue
Block a user