Thanks for your reply. When I delete the mails, they simply disappear from INBOX. I don't see any warning. When I reload the page or logout and log back in, the deleted mail re-appear in INBOX.
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.
N P List wrote:
Hey All, Sorry about my multiple posts earlier. I thought my Thunderbird wasn't sending out the mails. Anyhow, can someone please help me with SMTP error, when sending mails: SMTP Error in /srv/www/htdocs/webmail/program/steps/mail/sendmail.inc (185): SMTP error: Failed to add recipient
I can now login, check mails etc. However, I can't delete mails.
I'm wondering if the delete problem is related to Postfix. Thanks, Nitin