You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
323 B
17 lines
323 B
2 years ago
|
{% from 'macros.j2' import roundcube_option -%}
|
||
|
|
||
|
<?php
|
||
|
|
||
|
$config = [];
|
||
|
|
||
|
{% for option in (roundcube_cfg | d({}) | dict2items) -%}
|
||
|
{{ roundcube_option(option) -}}
|
||
|
{%- endfor -%}
|
||
|
|
||
|
|
||
|
$config['plugins'] = array(
|
||
|
{% for plugin in roundcube_plugins %}
|
||
|
'{{ plugin.name }}'{%- if not loop.last -%},{% endif %}
|
||
|
{% endfor -%}
|
||
|
);
|