ansible/roles/horde/templates/horde/imp/backends.php.j2

20 lines
453 B
Django/Jinja

{{ ansible_header | comment(decoration='// ') }}
<?php
$servers['imp'] = array(
// Disabled by default
'disabled' => false,
'name' => 'IMAP Cr@ns',
'hostspec' => '{{ horde.imap }}',
'hordeauth' => true,
'protocol' => 'imap',
'port' => 143,
'secure' => 'tls',
'maildomain' => '{{ horde.maildomain }}',
'smtp' => array(
'host' => '{{ horde.smtp }}',
'port' => 25,
),
'cache' => false,
);
?>