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.
16 lines
323 B
16 lines
323 B
{% 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 -%}
|
|
);
|
|
|