Recent Posts

Pages: [1] 2 3 ... 10
1
Roundcube Discussion / Re: Mark junk as read
« Last post by JohnDoh on Today at 04:03:58 AM »
Thats not something Roundcube itself can do. Roundcube is not moving the messages to the junk folder, I guess that being done my some filtering you have setup. Probably what you need to do is adjust the filtering rule so that it marks the message as read before it moves the message to the junk folder.

Some setups have plugins which let you manage filters from inside Roundcude, look for a Filters tab or similar on the Settings screen.
2
Roundcube Discussion / Mark junk as read
« Last post by nclm on September 22, 2023, 09:09:27 AM »
Is there any way to mark any messages that end up in the junk folder as read automatically?
Or at least, hiding the unread message count on the junk folder?
Thanks!
3
Hello,

I performed the upgrade from 1.6 to 1.6.3 and now I have the following error:

Code: [Select]
PHP Warning:  SQLSTATE[HY000] [1045] Access denied for user 'roundcube'@'localhost' (using password: NO)
I would appreciate any suggestions on how to resolve this.  None of the user password has changed (still in the config file, etc.)

Thank you. 
4
API Based Plugins / Re: Any keyboard shortcut plugin working in Roundcube 1.6.1?
« Last post by therentabrain on September 21, 2023, 04:25:09 AM »
I'm considering setting up Roundcube; it looks great so far.

I looked through all the forks and found that this one seems to have been updated:
https://github.com/dapphp/keyboard_shortcuts

Anyone already down this road with a solution?

I'll try that one as soon as I can get a test going.
5
General Discussion / Email getting bounced as spam
« Last post by thegraph on September 20, 2023, 07:09:46 PM »
Had three different emails get bounced  - two of them I was replaying to an email I received. I sent an email to hostdash as they helped us set up our account - that got bounced.
Any ideas? This used to happen with our old service provider FutureQuest, but hasn't happened with Webmail.

Thank you for any ideas.

Here is the message I received:
 sales@hostdash.com
   host relay.mailbaby.net [67.211.215.74]
   SMTP error from remote mail server after end of data:
   550 This message was classified as rSPAM and may not be delivered https://mail.outboundspamprotection.com/mailinfo?id=18ab4a591d30002aba&user=mb20610
Reporting-MTA: dns; us1.providedns.com

Action: failed
Final-Recipient: rfc822;sales@hostdash.com
Status: 5.0.0
Remote-MTA: dns; relay.mailbaby.net
Diagnostic-Code: smtp; 550 This message was classified as rSPAM and may not be delivered https://mail.outboundspamprotection.com/mailinfo?id=18ab4a591d30002aba&user=mb20610
6
Release Discussion / Re: 1.4.14 upgrade gives PHP Parse error in PEAR.php
« Last post by yosi on September 20, 2023, 04:33:10 PM »
I'm running ClearOS 7.9.1 - highest possible version. It's fully based on CentOS 7.9.1. The default PHP version for CentOS 7.9.1 is PHP 5.4.16 (which can't be disabled) but it supports officialy PHP 7.X. ClearOS supports until PHP 7.3. ClearOS has a method to appoint specific PHP installed versions to specific virtual hosts. I managed to appoint PHP 7.3 to Roundcube and just upgraded Roundcube to 1.4.14. The broken compatibility for 1.4.14 and PHP 5.4.16 still exists but my problem is solved  :)
7
Release Discussion / Re: 1.4.14 upgrade gives PHP Parse error in PEAR.php
« Last post by alec on September 20, 2023, 12:19:38 PM »
Looks like pear/pear-core-minimal 1.10.13 broke compatibility with php 5.4. You have to bump php to 5.5 or use composer and force older version of pear. Or revert this change https://github.com/pear/pear-core-minimal/commit/aed862e95fd286c53cc546734868dc38ff4b5b1d
8
Release Discussion / 1.4.14 upgrade gives PHP Parse error in PEAR.php
« Last post by yosi on September 20, 2023, 10:08:41 AM »
Trying to upgrade from version 1.4.13 to 1.4.14 using the ./bin/installto.sh script generates the following error:
"PHP Parse error:  syntax error, unexpected 'class' (T_CLASS), expecting identifier (T_STRING) or variable (T_VARIABLE) or '{' or '$' in /zWork/roundcubemail-1.4.14/vendor/pear/pear-core-minimal/src/PEAR.php on line 222"

Used roundcubemail-1.4.14-complete.tar.gz
All previous upgrade using this method went fine.

System info:
ClearOS release 7.9.1 (Final)
PEAR Version: 1.9.4
PHP Version: 5.4.16
Zend Engine Version: 2.4.0
Running on: Linux 3.10.0-1160.71.1.el7.x86_64 #1 SMP Tue Jun 28 15:37:28 UTC 2022 x86_64
9
General Discussion / Re: Group Emails?
« Last post by JohnDoh on September 20, 2023, 06:41:04 AM »
Assuming you are using the Elastic skin then in the top left of the Contacts screen you should see the title "Groups" and there are 3 vertical dots, click the dots and a menu appears and there you should see "Add group". Once you have created a group you can drag and drop contacts into it. By default there is no limit to the number of contacts you can put into a group but this can be changed in the config file.
10
The `default_host`, `default_port` and 'smtp_server' where all removed in Roundcube 1.6 as described in the release announcement. I guess you upgraded from an earlier version and thats where you got the old vars from.

I think what you want is:
Code: [Select]
// IMAP
$config['imap_host'] = 'ssl://imap.uwb.edu.pl:993';
$config['imap_auth_type'] = 'LOGIN';
$config['imap_delimiter'] = '/';
// Required if you're running PHP 5.6 or later
$config['imap_conn_options'] = array(
    'ssl' => array(
        'verify_peer'  => false,
        'verify_peer_name' => false,
    ),
);

// SMTP
$config['smtp_host'] = 'ssl://smtp.uwb.edu.pl:465';
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['smtp_auth_type'] = 'LOGIN';
// Required if you're running PHP 5.6 or later
$config['smtp_conn_options'] = array(
    'ssl' => array(
        'verify_peer'      => false,
        'verify_peer_name' => false,
    ),
);

If you are trying to connect to 127.0.0.1 rather then *.uwb.edu.pl then just swap those. Since 1.6.0 there is only 1 config var *_host and that contains the protocol, host and port.
Pages: [1] 2 3 ... 10