23 lines
472 B
PHP
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',
|
|
)
|
|
),
|
|
);
|
|
|
|
?>
|
|
|