• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Resolved Attachments doesn't send on Roundcube 1.2.7 | Plesk Onyx Versión 17.5.3

visolut

New Pleskian
Hello everyone, since yesterday Plesk Update, when i put an attachment on the new version of Roundcube, after send the mail, the attachment file is not sent.

Need urgently help of downgrade or fix this error.

Thanks,
 
All of my centos7 Servers are patched with update #30
on some servers nothing changed
in /usr/share/psa-roundcube/config/defaults.inc.php still
config['temp_dir'] = '/var/tmp/plesk-roundcube/'
and not
config['temp_dir'] = '/var/tmp/'

whats wrong ?
 
Last edited:
Have you actually tested that attachments are still not sent or did you only look at the configuration file?
 
actually tested an then look at the configuration file and fixed temp_dir manually.
there are only a few centos7 servers with this problem.
the problem i think is that the defaults.inc.php is not written
Updating: plesk-roundcube-1.2.7-cos7.build1705171115.16.noarch [1/2]
warning: /usr/share/psa-roundcube/config/defaults.inc.php created as /usr/share/psa-roundcube/config/defaults.inc.php.rpmnew

in defaults.inc.php.rpmnew temp_dir is correct.
 
HI
im on one Plesk Onyx 17.5.3 #30 Linux 7.3 and other on 12.5.30 #72 on Linux 7.2
both are with the same problem in Roundcube 1.2.7 since they received the security update I tried to edit them in both and add $config['temp_dir'] = '/ tmp'; in config.inc.php but it does not work, restarted services but it still does not go, with Horde it works fine but I can not change it at the moment.
Thanks...
 
It should not be added, because the configuration variable exists. Instead the existing variable should be edited. An added variable migjht not take precedence over the existing one.

It should not read /tmp, but /var/tmp, too.
 
finally I have been able to solve the problem after the security update by reinstalling the Roundcube webmail from the Plesk panel, now the attachments from webmail are already working.
 
diff /usr/share/psa-roundcube/config/defaults.inc.php.rpmnew /usr/share/psa-roundcube/config/defaults.inc.php
388c388
< $config['temp_dir'] = '/var/tmp/';
---
> $config['temp_dir'] = '/var/tmp/plesk-roundcube/';
397c397
< $config['force_https'] = false;
---
> $config['force_https'] = true;

mv /usr/share/psa-roundcube/config/defaults.inc.php.rpmnew /usr/share/psa-roundcube/config/defaults.inc.php
edit /usr/share/psa-roundcube/config/defaults.inc.php to readd $config['force_https'] = true , and roundecube is sending attachs
 
Back
Top