ubuntu 14.04, postfix/dovecot/mysql. using imap.
Email will not list in any browser. I can manage folders and see the correct # of emails, change my preferences, etc.
no meaningful errors logged.
Please advise. Thank you!
<?php
/* Local configuration for Roundcube Webmail */
// ---------------------------------- // SQL DATABASE // ---------------------------------- // Database connection string (DSN) for read+write operations // Format (compatible with PEAR MDB2): db_provider://user:password@host/database // Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle // For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php // NOTE: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646' // or (Windows): 'sqlite:///C:/full/path/to/sqlite.db' $config['db_dsnw'] = 'mysql://roundcubeusername:somepassword@localhost/roundcubedb';
// ---------------------------------- // IMAP // ---------------------------------- // The IMAP host chosen to perform the log-in. // Leave blank to show a textbox at login, give a list of hosts // to display a pulldown menu or set one host as string. // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls:// // Supported replacement variables: // %n - hostname ($_SERVER['SERVER_NAME']) // %t - hostname without the first part // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part) // %s - domain name after the '@' from e-mail address provided at login screen // For example %n = mail.domain.tld, %t = domain.tld // WARNING: After hostname change update of mail_host column in users table is // required to match old user data records with the new host. $config['default_host'] = 'ssl://mail.hostname.org';
// TCP port used for IMAP connections $config['default_port'] = 993;
// ---------------------------------- // SMTP // ---------------------------------- // SMTP server host (for sending mails). // Enter hostname with prefix tls:// to use STARTTLS, or use // prefix ssl:// to use the deprecated SSL over SMTP (aka SMTPS) // Supported replacement variables: // %h - user's IMAP hostname // %n - hostname ($_SERVER['SERVER_NAME']) // %t - hostname without the first part // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part) // %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %t = domain.tld $config['smtp_server'] = 'tls://mail.hostname.org';
// SMTP port (default is 25; use 587 for STARTTLS or 465 for the // deprecated SSL over SMTP (aka SMTPS)) $config['smtp_port'] = 587;
// SMTP username (if required) if you use %u as the username Roundcube // will use the current username for login $config['smtp_user'] = '%u';
// SMTP password (if required) if you use %p as the password Roundcube // will use the current user's password for login $config['smtp_pass'] = '%p';
// 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'] = '';
// This key is used for encrypting purposes, like storing of imap password // in the session. For historical reasons it's called DES_key, but it's used // with any configured cipher_method (see below). $config['des_key'] = 'P7hG5nc7y789ew8eyoldn8n9qy';
// ---------------------------------- // PLUGINS // ---------------------------------- // List of active plugins (in plugins/ directory) $config['plugins'] = array();
// the default locale setting (leave empty for auto-detection) // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR $config['language'] = 'en_US';
// Set the spell checking engine. Possible values: // - 'googie' - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting) // - 'pspell' - requires the PHP Pspell module and aspell installed // - 'enchant' - requires the PHP Enchant module // - 'atd' - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API // Since Google shut down their public spell checking service, the default settings // connect to http://spell.roundcube.net which is a hosted service provided by Roundcube. // You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly. $config['spellcheck_engine'] = 'pspell';
// save compose message every 300 seconds (5min) $config['draft_autosave'] = 60;
$config['debug_level'] = 1;
$config['enable_installer'] = true;
-----Original Message----- From: users-bounces@lists.roundcube.net [mailto:users-bounces@lists.roundcube.net] On Behalf Of Benny Pedersen Sent: Saturday, January 05, 2019 4:24 PM To: users@lists.roundcube.net Subject: Re: [RCU] Email will not list in any browser
Web Analysts skrev den 2019-01-05 16:56:
provide your config.inc.php withoout any passwords _______________________________________________ Roundcube Users mailing list users@lists.roundcube.net http://lists.roundcube.net/mailman/listinfo/users
Web Analysts skrev den 2019-01-06 02:22:
$config['des_key'] = 'P7hG5nc7y789ew8eyoldn8n9qy';
never share this, you will have to make a new one now
$config['plugins'] = array(); $config['spellcheck_engine'] = 'pspell';
try disable pspell here, until you see reoundcube do work
disable installer until you see roundcube works
and lastly see default.inc.php for settings you can add to config.inc.php
to get more debud logs
is all PEAR dependics installed ?
Thank you for your reply. I did not send you my des key, or any other sensitive information!
Disabling pspell did nothing to solve the problem.
I can login fine. I can also list folders and see the count of how many messages there are, size. I simply cannot list incoming emails nor can I compose an email to send.
Help!
-----Original Message----- From: users-bounces@lists.roundcube.net [mailto:users-bounces@lists.roundcube.net] On Behalf Of Benny Pedersen Sent: Saturday, January 05, 2019 5:34 PM To: users@lists.roundcube.net Subject: Re: [RCU] Email will not list in any browser
Web Analysts skrev den 2019-01-06 02:22:
$config['des_key'] = 'P7hG5nc7y789ew8eyoldn8n9qy';
never share this, you will have to make a new one now
$config['plugins'] = array(); $config['spellcheck_engine'] = 'pspell';
try disable pspell here, until you see reoundcube do work
disable installer until you see roundcube works
and lastly see default.inc.php for settings you can add to config.inc.php
to get more debud logs
is all PEAR dependics installed ? _______________________________________________ Roundcube Users mailing list users@lists.roundcube.net http://lists.roundcube.net/mailman/listinfo/users