-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
25 lines (20 loc) · 924 Bytes
/
config.php
File metadata and controls
25 lines (20 loc) · 924 Bytes
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
<?php
namespace PopArtDesign\Forma;
$config['site_name'] = getSiteName();
$config['mail_dsn'] = 'mail://localhost';
$config['mail_subject'] = 'Сообщение с сайта ' . $config['site_name'];
$config['mail_from'] = 'no-reply@' . $config['site_name'];
$config['mail_recipients'] = [ 'user@localhost.localhost' ];
$config['mail_message'] = 'Сообщение с сайта ' . $config['site_name'];
$config['mail_html'] = true;
$config['mail_attachments'] = [];
$config['mail_attachments_max_size'] = 10 * 1024 * 1024;
$config['imnotarobot_value'] = 'imnotarobot!';
$config['imnotarobot_field'] = 'forma_imnotarobot';
$config['recaptcha_secret'] = '';
$config['recaptcha_action'] = '';
$config['recaptcha_hostname'] = $config['site_name'];
$config['recaptcha_field'] = 'g-recaptcha-response';
$config['recaptcha_threshold'] = 0.5;
$config['recaptcha_timeout'] = 30;
$config['recaptcha_ssl_verifypeer'] = true;