Chris,
On 6/26/07, Chris Watt something.rotten@gmail.com wrote:
Hi Till,
Yes, the browser window brings itself to focus, or in the case of safari, the tab with roundcube open becomes the active tab.
I don't have this problem.
There is no JavaScript code to make a tab active. It would be nice if there is. ;-) It sounds like a problem on your end (maybe in your settings). I tried to reproduce this in Safari and Firefox (both Mac) but am unable to.
Also please email users@ since this is not a development issue.
Last but not least, please copy the list on all replies.
Cheers, Till
Thomas,
saw you closed this ticket. A fix could be:
$from = 'From: ENTER SENDER ADDRESS' . "\r\n";
if (ini_get('safe_mode'))
$sent = mail($to, $subject, $body, "$from");
else
$sent = mail($to, $subject, $body, "$from", "-f ENTER SENDER ADDRESS");
regards
Am I missing something? This is exactly what we have in program/steps/mail/sendmail.inc (line 362)
But if you have safe_mode on and not SMTP server configured, the Return-Path header will be added by sendmail which mostly is webserver-user@host
There's nothing more we can do and that's why I closed the Ticket. It's not a bug but a configuration issue.
~Thomas
Sean N. Heukels wrote:
Thomas,
saw you closed this ticket. A fix could be:
$from = 'From: ENTER SENDER ADDRESS' . "\r\n";
if (ini_get('safe_mode')) $sent = mail($to, $subject, $body, "$from"); else $sent = mail($to, $subject, $body, "$from", "-f ENTER SENDER ADDRESS");
regards
On 6/26/07, Thomas Bruederli roundcube@gmail.com wrote:
Am I missing something? This is exactly what we have in program/steps/mail/sendmail.inc (line 362)
I can confirm this, it's there! 8-)
Cheers, Till