]> git.laktatnebel.de Git - admin.git/blob
f324c4cb97105917162801573fbaf855902d16a2
[admin.git] /
1 ; RainLoop Webmail configuration file\r
2 ; Please don't add custom parameters here, those will be overwritten
3
4 [webmail]
5 ; Text displayed as page title
6 title = "Laktatnebel Webmail"
7
8 ; Text displayed on startup
9 loading_description = "Webmail"
10 favicon_url = ""
11
12 ; Theme used by default
13 theme = "SquaresDark"
14
15 ; Allow theme selection on settings screen
16 allow_themes = On
17 allow_user_background = On
18
19 ; Language used by default
20 language = "de_DE"
21
22 ; Admin Panel interface language
23 language_admin = "de_DE"
24
25 ; Allow language selection on settings screen
26 allow_languages_on_settings = On
27 allow_additional_accounts = On
28 allow_additional_identities = On
29
30 ;  Number of messages displayed on page by default
31 messages_per_page = 20
32
33 ; File size limit (MB) for file upload on compose screen
34 ; 0 for unlimited.
35 attachment_size_limit = 32
36
37 [interface]
38 show_attachment_thumbnail = On
39 use_native_scrollbars = Off
40 new_move_to_folder_button = On
41
42 [branding]
43 login_logo = ""
44 login_background = ""
45 login_desc = ""
46 login_css = ""
47 user_css = ""
48 user_logo = ""
49 user_logo_title = ""
50 user_logo_message = ""
51 user_iframe_message = ""
52 welcome_page_url = ""
53 welcome_page_display = "none"
54
55 [contacts]
56 ; Enable contacts
57 enable = On
58 allow_sync = On
59 sync_interval = 20
60 type = "pgsql"
61 pdo_dsn = "pgsql:host=127.0.0.1;port=5432;dbname=rainloop"
62 pdo_user = "rainloop"
63 pdo_password = "dS7CBpJEs8-9&E_e"
64 suggestions_limit = 30
65
66 [security]
67 ; Enable CSRF protection (http://en.wikipedia.org/wiki/Cross-site_request_forgery)
68 csrf_protection = On
69 custom_server_signature = "RainLoop"
70 x_frame_options_header = ""
71 x_xss_protection_header = "1; mode=block"
72 openpgp = Off
73
74 ; Login and password for web admin panel
75 admin_login = "webmailAdmin"
76 admin_password = "$2y$10$jEphx3Qbqgh3hqr1oMOADey9onSGhWE05d9rgD9OEQNOx1npzs/ki"
77
78 ; Access settings
79 allow_admin_panel = On
80 allow_two_factor_auth = On
81 force_two_factor_auth = Off
82 hide_x_mailer_header = Off
83 admin_panel_host = ""
84 admin_panel_key = "admin"
85 content_security_policy = ""
86 core_install_access_domain = ""
87
88 [ssl]
89 ; Require verification of SSL certificate used.
90 verify_certificate = Off
91
92 ; Allow self-signed certificates. Requires verify_certificate.
93 allow_self_signed = On
94
95 ; Location of Certificate Authority file on local filesystem (/etc/ssl/certs/ca-certificates.crt)
96 cafile = ""
97
98 ; capath must be a correctly hashed certificate directory. (/etc/ssl/certs/)
99 capath = ""
100
101 ; Location of client certificate file (pem format with private key) on local filesystem
102 client_cert = ""
103
104 [capa]
105 folders = On
106 composer = On
107 contacts = On
108 settings = On
109 quota = On
110 help = On
111 reload = On
112 search = On
113 search_adv = On
114 filters = On
115 x-templates = Off
116 dangerous_actions = On
117 message_actions = On
118 messagelist_actions = On
119 attachments_actions = On
120
121 [login]
122 default_domain = ""
123
124 ; Allow language selection on webmail login screen
125 allow_languages_on_login = On
126 determine_user_language = On
127 determine_user_domain = On
128 welcome_page = Off
129 hide_submit_button = Off
130 forgot_password_link_url = ""
131 registration_link_url = ""
132 login_lowercase = On
133
134 ; This option allows webmail to remember the logged in user
135 ; once they closed the browser window.
136
137 ; Values:
138 ;   "DefaultOff" - can be used, disabled by default;
139 ;   "DefaultOn"  - can be used, enabled by default;
140 ;   "Unused"     - cannot be used
141 sign_me_auto = "DefaultOff"
142
143 [plugins]
144 ; Enable plugin support
145 enable = Off
146
147 ; List of enabled plugins
148 enabled_list = ""
149
150 [defaults]
151 ; Editor mode used by default (Plain, Html, HtmlForced or PlainForced)
152 view_editor_type = "Html"
153
154 ; layout: 0 - no preview, 1 - side preview, 2 - bottom preview
155 view_layout = 1
156 view_use_checkboxes = On
157 autologout = 30
158 show_images = Off
159 contacts_autosave = On
160 mail_use_threads = Off
161 allow_draft_autosave = On
162 mail_reply_same_folder = Off
163
164 [logs]
165 ; Enable logging
166 enable = Off
167
168 ; Logs entire request only if error occured (php requred)
169 write_on_error_only = Off
170
171 ; Logs entire request only if php error occured
172 write_on_php_error_only = Off
173
174 ; Logs entire request only if request timeout (in seconds) occured.
175 write_on_timeout_only = 0
176
177 ; Required for development purposes only.
178 ; Disabling this option is not recommended.
179 hide_passwords = On
180 time_offset = "0"
181 session_filter = ""
182 sentry_dsn = ""
183
184 ; Log filename.
185 ; For security reasons, some characters are removed from filename.
186 ; Allows for pattern-based folder creation (see examples below).
187
188 ; Patterns:
189 ;   {date:Y-m-d}  - Replaced by pattern-based date
190 ;                   Detailed info: http://www.php.net/manual/en/function.date.php
191 ;   {user:email}  - Replaced by user's email address
192 ;                   If user is not logged in, value is set to "unknown"
193 ;   {user:login}  - Replaced by user's login (the user part of an email)
194 ;                   If user is not logged in, value is set to "unknown"
195 ;   {user:domain} - Replaced by user's domain name (the domain part of an email)
196 ;                   If user is not logged in, value is set to "unknown"
197 ;   {user:uid}    - Replaced by user's UID regardless of account currently used
198
199 ;   {user:ip}
200 ;   {request:ip}  - Replaced by user's IP address
201
202 ; Others:
203 ;   {imap:login} {imap:host} {imap:port}
204 ;   {smtp:login} {smtp:host} {smtp:port}
205
206 ; Examples:
207 ;   filename = "log-{date:Y-m-d}.txt"
208 ;   filename = "{date:Y-m-d}/{user:domain}/{user:email}_{user:uid}.log"
209 ;   filename = "{user:email}-{date:Y-m-d}.txt"
210 filename = "log-{date:Y-m-d}.txt"
211
212 ; Enable auth logging in a separate file (for fail2ban)
213 auth_logging = Off
214 auth_logging_filename = "fail2ban/auth-{date:Y-m-d}.txt"
215 auth_logging_format = "[{date:Y-m-d H:i:s}] Auth failed: ip={request:ip} user={imap:login} host={imap:host} port={imap:port}"
216
217 [debug]
218 ; Special option required for development purposes
219 enable = Off
220
221 [social]
222 ; Google
223 google_enable = Off
224 google_enable_auth = Off
225 google_enable_auth_gmail = Off
226 google_enable_drive = Off
227 google_enable_preview = Off
228 google_client_id = ""
229 google_client_secret = ""
230 google_api_key = ""
231
232 ; Facebook
233 fb_enable = Off
234 fb_app_id = ""
235 fb_app_secret = ""
236
237 ; Twitter
238 twitter_enable = Off
239 twitter_consumer_key = ""
240 twitter_consumer_secret = ""
241
242 ; Dropbox
243 dropbox_enable = Off
244 dropbox_api_key = ""
245
246 [cache]
247 ; The section controls caching of the entire application.
248
249 ; Enables caching in the system
250 enable = On
251
252 ; Additional caching key. If changed, cache is purged
253 index = "v1"
254
255 ; Can be: files, APC, memcache, redis (beta)
256 fast_cache_driver = "files"
257
258 ; Additional caching key. If changed, fast cache is purged
259 fast_cache_index = "v1"
260
261 ; Browser-level cache. If enabled, caching is maintainted without using files
262 http = On
263
264 ; Browser-level cache time (seconds, Expires header)
265 http_expires = 3600
266
267 ; Caching message UIDs when searching and sorting (threading)
268 server_uids = On
269
270 [labs]
271 ; Experimental settings. Handle with care.
272
273 allow_mobile_version = On
274 ignore_folders_subscription = Off
275 check_new_password_strength = On
276 update_channel = "stable"
277 allow_gravatar = On
278 allow_prefetch = On
279 allow_smart_html_links = On
280 cache_system_data = On
281 date_from_headers = On
282 autocreate_system_folders = On
283 allow_message_append = Off
284 disable_iconv_if_mbstring_supported = Off
285 login_fault_delay = 1
286 log_ajax_response_write_limit = 300
287 allow_html_editor_source_button = Off
288 allow_html_editor_biti_buttons = Off
289 allow_ctrl_enter_on_compose = On
290 try_to_detect_hidden_images = Off
291 hide_dangerous_actions = Off
292 use_app_debug_js = Off
293 use_mobile_version_for_tablets = Off
294 use_app_debug_css = Off
295 use_imap_sort = On
296 use_imap_force_selection = Off
297 use_imap_list_subscribe = On
298 use_imap_thread = On
299 use_imap_move = Off
300 use_imap_expunge_all_on_delete = Off
301 imap_forwarded_flag = "$Forwarded"
302 imap_read_receipt_flag = "$ReadReceipt"
303 imap_body_text_limit = 555000
304 imap_message_list_fast_simple_search = On
305 imap_message_list_count_limit_trigger = 0
306 imap_message_list_date_filter = 0
307 imap_message_list_permanent_filter = ""
308 imap_message_all_headers = Off
309 imap_large_thread_limit = 50
310 imap_folder_list_limit = 200
311 imap_show_login_alert = On
312 imap_use_auth_plain = On
313 imap_use_auth_cram_md5 = Off
314 smtp_show_server_errors = Off
315 smtp_use_auth_plain = On
316 smtp_use_auth_cram_md5 = Off
317 sieve_allow_raw_script = Off
318 sieve_utf8_folder_name = On
319 sieve_auth_plain_initial = On
320 sieve_allow_fileinto_inbox = Off
321 imap_timeout = 300
322 smtp_timeout = 60
323 sieve_timeout = 10
324 domain_list_limit = 99
325 mail_func_clear_headers = On
326 mail_func_additional_parameters = Off
327 favicon_status = On
328 folders_spec_limit = 50
329 owncloud_save_folder = "Attachments"
330 owncloud_suggestions = On
331 curl_proxy = ""
332 curl_proxy_auth = ""
333 in_iframe = Off
334 force_https = Off
335 custom_login_link = ""
336 custom_logout_link = ""
337 allow_external_login = Off
338 allow_external_sso = Off
339 external_sso_key = ""
340 http_client_ip_check_proxy = Off
341 fast_cache_memcache_host = "127.0.0.1"
342 fast_cache_memcache_port = 11211
343 fast_cache_redis_host = "127.0.0.1"
344 fast_cache_redis_port = 6379
345 use_local_proxy_for_external_images = Off
346 detect_image_exif_orientation = On
347 cookie_default_path = ""
348 cookie_default_secure = Off
349 check_new_messages = On
350 replace_env_in_configuration = ""
351 startup_url = ""
352 strict_html_parser = Off
353 allow_cmd = Off
354 dev_email = ""
355 dev_password = ""
356
357 [version]
358 current = "1.17.0"
359 saved = "Thu, 08 Aug 2024 15:37:51 +0000"