Files
server/etc/psa-webmail/horde/imp/backends.local.php
2026-01-08 18:34:49 +01:00

23 lines
472 B
PHP

<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
// IMAP server
$servers['imap'] = array(
'disabled' => false,
'name' => 'IMAP Server',
'hostspec' => 'localhost',
'hordeauth' => false,
'protocol' => 'imap',
'port' => 993,
'secure' => 'ssl',
'quota' => array(
'driver' => 'imap',
'params' => array(
'hide_when_unlimited' => true,
'unit' => 'MB',
)
),
);
?>