Hey Brady, Any news. I implemented the changes you had suggested earlier (see below). I still get the same error. Now, I think, it might be postfix causing some errors. Maybe I need to tone down the Postfix security a bit.
Thanks again, Nitin
Brady J. Frey wrote:
Looks like Postfix doesn't like your outbound smtp preferences. Are you sure you're using the right preference for how you send mail? Such as the password pref and the username login logout method?
In your main.inc.php file: // SMTP username (if required) if you use %u as the username RoundCube // will use the current username for login $rcmail_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 $rcmail_config['smtp_pass'] = '%p';
// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use // best server supported one) $rcmail_config['smtp_auth_type'] = 'LOGIN';
and, of course, that your smtp address and port is accurate: // use this host for sending mails. // to use SSL connection, set ssl://smtp.host.com // if left blank, the PHP mail() function is used $rcmail_config['smtp_server'] = 'smtp.yoururlandstuff.com';
// SMTP port (default is 25; 465 for SSL) $rcmail_config['smtp_port'] = 25;
As far as your delete mail goes, is there a warning? Does it not say anything? How are you attempting to delete it? Does it move to the trash folder, can you empty the trash? Postfix shouldn't be stopping this, I'm thinking it's your setup -- either your cache still sees the messages (turn it to false in the main.inc file), and you just don't see that it's really deleting, or your setup is acting funny. Postfix will take it just like any mail client -- we use it on 3 roundcube installs just fine.