Hey people.
One more thing. The INBOX is not refreshing. Even if I click to check mail it does not show my new messages. To refresh it I have to click on another folder (like Trash) and back to INBOX. I'm willing if the INBOX can self refresh like gmail do.
Best regards.
Kico Zaninetti carpe diem
On Thu, 23 Mar 2006 10:59:53 -0300, "Kico Zaninetti" kico@nucleolivre.com.br wrote:
Hey people.
One more thing. The INBOX is not refreshing. Even if I click to check mail it does not show my new messages. To refresh it I have to click on another folder (like Trash) and back to INBOX. I'm willing if the INBOX can self refresh like gmail do.
This is not happening here. What version are you using?
Hi,
try to disable the caching of messages in main.inc.php $rcmail_config['enable_caching'] = FALSE;
and set the lifetime of message cache to a smal value $rcmail_config['message_cache_lifetime'] = '5s';
Thomas
On Thu, 23 Mar 2006 10:59:53 -0300, "Kico Zaninetti" kico@nucleolivre.com.br wrote:
Hey people.
One more thing. The INBOX is not refreshing. Even if I click to check mail it does not show my new messages. To refresh it I have to click on another folder (like Trash) and back to INBOX. I'm willing if the INBOX can self refresh like gmail do.
Best regards.
Kico Zaninetti carpe diem
We've addressed this about 5 times in the past couple weeks:)
Turn Cache to False in your main.ini file, and you'll be back to new.
Martin Marques wrote:
On Thu, 23 Mar 2006 10:59:53 -0300, "Kico Zaninetti" kico@nucleolivre.com.br wrote:
Hey people.
One more thing. The INBOX is not refreshing. Even if I click to check mail it does not show my new messages. To refresh it I have to click on another folder (like Trash) and back to INBOX. I'm willing if the INBOX can self refresh like gmail do.
This is not happening here. What version are you using?
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
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
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
Does your trash folder exist?
I saw this behavior the other day (on the CVS version) and I think I had manually erased the trash folder, or messed with the .imap directories in the process of setting things up.
As soon I created the file on disk, everything worked correctly.
On Thu, 23 Mar 2006 13:49:13 -0600, N P List nplist@xnet.com wrote:
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
Yep. There are three folders: Inbox, Sent, Trash. And when I delete something, the mail doesn't show up in Trash either. Needless to say, when I try to send something (which I can't), nothing gets copied to Sent folder either. BTW, I'm on Suse 9.3 with Postfix, Apache2.
Thanks, Nitin
Jon Daley wrote:
Does your trash folder exist?
I saw this behavior the other day (on the CVS version) and I think I had manually erased the trash folder, or messed with the .imap directories in the process of setting things up.
As soon I created the file on disk, everything worked correctly.
On Thu, 23 Mar 2006 13:49:13 -0600, N P List nplist@xnet.com wrote:
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
But, do the folders really exist on disk?
On Thu, 23 Mar 2006 14:12:27 -0600, N P List nplist@xnet.com wrote:
Yep. There are three folders: Inbox, Sent, Trash. And when I delete something, the mail doesn't show up in Trash either. Needless to say, when I try to send something (which I can't), nothing gets copied to Sent folder either. BTW, I'm on Suse 9.3 with Postfix, Apache2.
Thanks, Nitin
Jon Daley wrote:
Does your trash folder exist?
I saw this behavior the other day (on the CVS version) and I think I had
manually erased the trash folder, or messed with the .imap directories in the process of setting things up.
As soon I created the file on disk, everything worked correctly.
On Thu, 23 Mar 2006 13:49:13 -0600, N P List nplist@xnet.com wrote:
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
Thanks Martin and thanks a lot Thomas.
Did it and works fine... I'm using v0.1-beta.
Kico Zaninetti carpe diem
On 3/23/06, Thomas Makowski thomas@makowski.name wrote:
Hi,
try to disable the caching of messages in main.inc.php $rcmail_config['enable_caching'] = FALSE;
and set the lifetime of message cache to a smal value $rcmail_config['message_cache_lifetime'] = '5s';
Thomas
On Thu, 23 Mar 2006 10:59:53 -0300, "Kico Zaninetti" < kico@nucleolivre.com.br> wrote:
Hey people.
One more thing. The INBOX is not refreshing. Even if I click to check mail it does not show my new messages. To refresh it I have to click on another folder (like Trash) and back to INBOX. I'm willing if the INBOX can self refresh like gmail do.
Best regards.
Kico Zaninetti carpe diem
The Sent and Trash folders exist on the server side. The mail is delivered in Maildir format. The Maildir dir has .Sent and .Trash folders.
Jon Daley wrote:
But, do the folders really exist on disk?
On Thu, 23 Mar 2006 14:12:27 -0600, N P List nplist@xnet.com wrote:
Yep. There are three folders: Inbox, Sent, Trash. And when I delete something, the mail doesn't show up in Trash either. Needless to say, when I try to send something (which I can't), nothing gets copied to Sent folder either. BTW, I'm on Suse 9.3 with Postfix, Apache2.
Thanks, Nitin
Jon Daley wrote:
Does your trash folder exist?
I saw this behavior the other day (on the CVS version) and I think I had
manually erased the trash folder, or messed with the .imap directories in the process of setting things up.
As soon I created the file on disk, everything worked correctly.
On Thu, 23 Mar 2006 13:49:13 -0600, N P List nplist@xnet.com wrote:
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
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.