// sendmail.log or to syslog $config['smtp_log'] = false;
// IMAP host chosen to perform the log-in. // See defaults.inc.php for the option description. //$config['imap_host'] = 'localhost:143'; $config['imap_host'] = 'ssl://localhost';
// IMAP socket context options // See http://php.net/manual/en/context.ssl.php // The example below enables server certificate validation // $config['imap_conn_options'] = [ // 'ssl' => [ // 'verify_peer' => true, // 'verify_depth' => 3, // 'cafile' => '/etc/openssl/certs/ca.crt', // ], // ]; // Note: These can be also specified as an array of options indexed by hostname $config['imap_conn_options'] = array ( 'ssl' => array ( 'verify_peer' => false, ), );
// SMTP server host (for sending mails). // See defaults.inc.php for the option description. //$config['smtp_host'] = 'localhost:587'; $config['smtp_host'] = 'tls://localhost';
// ---------------------------------- // SYSTEM // ---------------------------------- // THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA. // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING! //$config['enable_installer'] = false; $config['enable_installer'] = false;
// provide an URL where a user can get support for this Roundcube installation // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! $config['support_url'] = '';
// Automatically register user in Roundcube database on successful (IMAP) logon. // Set to false if only registered users should be allowed to the webmail. // Note: If disabled you have to create records in Roundcube users table by yourself. // Note: Roundcube does not manage/create users on a mail server. $config['auto_create_user'] = false;
// Session path. Defaults to PHP session.cookie_path setting. $config['session_path'] = '/roundcube';
// This key is used to encrypt the users imap password which is stored // in the session record. For the default cipher method it must be // exactly 24 characters long. // YOUR KEY MUST BE DIFFERENT THAN THE SAMPLE VALUE FOR SECURITY REASONS $config['des_key'] = 'ck4vyu7mwesX$6dE4khy(Stz';
// Name your service. This is displayed on the login screen and in the window title $config['product_name'] = 'MRM International Webmail';
// List of active plugins (in plugins/ directory) $config['plugins'] = ['archive', 'zipdownload'];
// prefer displaying HTML messages $config['prefer_html'] = false;