What could be the issue that the vacation is not using the email addresses listed in the default identity, "Reply sender address" or " My e-mail addresses"
but uses the username@hostname in stead.
roundcube 1.6
Hi,
I've been a happy Roundcube user since 2008 which, now that I look it up,
seems to be almost the beginning.
Thanks for a great tool.
Recently we've discovered a need to provide some kind of warning when the
user receives an eMail with an executable or archive (zip, tar, dmg)
attachment.
We use these kinds of attachments legitimately in our day-to-day work so
don't want to filter them at the mail gateway, but there's a compliance
need to tell the user that it may be dangerous.
I've had a look in the config as well as the plugin list and Google'd a bit
but can't find anything that might be suitable.
I saw something about a warning that comes up when the extension and the
mime-type don't match but that doesn't seem to be what I'm looking for and
I can't work out if it can be configured and, if so, how to configure it to
do what I want.
Can anyone point me at a config option, plugin or something else that will
allow us to display a warning when an eMail contains a "potentially
dangerous" attachment?
Thanks!
Best wishes,
@ndy
--
andyjpb(a)ashurst.eu.org
http://www.ashurst.eu.org/
0x7EBA75FF
On 2024-07-24 9:38 AM, list--- via Users wrote:
>> I have updated to 1.6.7 and my log files are now being generated in
>> UTC rather than my preferred PST/PDT. I do not use syslog for rcube.
>>
>> I have adjusted my config.inc.php:
>> $config['log_date_format'] = 'Y-m-d H:i:s';
>> which is how my previous version of rcube was set.
>> but the logs are now 7 hours advanced (UTC).
>
>
> Check your PHP settings.
>
> /etc/php.ini
> date.timezone = America/Los_Angeles
>
> There is also a timezone setting in roundcube, but i think this is what
> gets displayed to the end user and doesn't affect the time zone used on
> the server.
>
> ./config/defaults.inc.php
> // use this timezone to display date/time
> // valid timezone identifiers are listed here:
> php.net/manual/en/timezones.php
> // 'auto' will use the browser's timezone settings
> $config['timezone'] = 'auto';
yipes. I had also updated php, and my original php.ini file got blasted
away.
roundcube log files now have the correct date/timezone after I added the
date.timezone setting to php.ini.
Thank you much !
--
Jim Pazarena roundcube(a)paz.bz
Haida Gwaii - British Columbia - Canada
I have updated to 1.6.7 and my log files are now being generated in UTC
rather than my preferred PST/PDT. I do not use syslog for rcube.
php 8.3.8
http 2.4.62
I have adjusted my config.inc.php:
$config['log_date_format'] = 'Y-m-d H:i:s';
which is how my previous version of rcube was set.
but the logs are now 7 hours advanced (UTC).
suggestions appreciated.
--
Jim Pazarena roundcube(a)paz.bz
Haida Gwaii - British Columbia - Canada
Hi everyone,
Sitting with an issue and hoping someone has some advice. We have a user
where normal email sending works. But, when an email is sent to a large
group and they click send, the circle button appears and after around 4 - 5
minutes the error 'connection error [failed to reach server]' is presented.
On the email server that's hosting the email account, Exim reports the
following error 11 minutes later after the web server (Apache / fpm)
timeouts, which are set to 600 seconds, on the Roundcube server are reached:
--------------------------------------------------------------------------------------
2024-07-23 10:18:04 unexpected disconnection while reading SMTP command
from redacted-hostname (redacted-hostname) [Redacted-IP-address] D=11m29s
--------------------------------------------------------------------------------------
Apache error log:
--------------------------------------------------------------------------------------
[Tue Jul 23 10:16:34.366746 2024] [proxy_fcgi:error] [pid 1170321:tid
1170362] (70007)The timeout specified has expired: [client REDACTED]
AH01075: Error dispatching request to : (polling), referer:
https://REDACTED/?_task=mail&_action=compose&_id=4318354025669f63d117867
--------------------------------------------------------------------------------------
All web server / PHP related timeouts are set to above 300 seconds. All
settings in the Roundcube configuration related to timeouts look okay.
Any advice on what more can be checked will be appreciated.
Thanks!
Stephan
Hello gurus,
I use the latest version of roundcube as my webmail, and I want to allow webmail access to free.fr and gmx.it (I have accounts with these two email providers).So set the following in rc's configuration file.
$config['imap_host'] = array('ssl://imap.gmx.com:993','ssl://imap.free.fr:993');
$config['smtp_host'] = array('imap.gmx.com' => 'ssl://mail.gmx.com:465',
'imap.free.fr' => 'ssl://smtp.free.fr:465'
);
$config['mail_domain'] = array(
'imap.gmx.com' => 'gmx.it',
'imap.free.fr' => 'free.fr'
);
When I open webmail, it always displays a dropdown menu for me to select an IMAP host. This is so frustrating. How to disable this drop-down menu and automatically match email addresses to imap hosts?
Thanks.