Posts by bozsi12
-
-
Read this link below to how to update Roundcube version:
Note that IF YOU DO ANY CHANGES ON YOUR SYSTEM THE RESPONSIBILITY IS YOURS!!
The new version of this package will be added in new imscp release so be patient.
-
Hi!
No, if you are on the latest imscp version. In errata files there are the most important information for imscp and the linux distro you use. If you are updating your imscp you will need to check your system also. There are the information for Supported distributions and all other stuff.
Please read it first because after distro update there can be problems around imscp if you have your custom settings or something else. -
Hi!
First of all read this: https://github.com/i-MSCP/imscp/blob/1.5.x/docs/UPGRADE.mdMake backup of your data:
After that you can start your upgrade process.
All other steps are linux admin steps. If there is some trouble during update google is your friend but in most of cases distro updates are going fine.
You will need also read errata files for other important changes.
https://github.com/i-MSCP/imsc….5.x/docs/1.5.x_errata.md
Best,
Daniel
-
Kazuto:
Download spamassassin from here:
https://github.com/i-MSCP/plug…er/incubator/SpamAssassin
After that zip it to tar.gz format.
Install it throught imscp panel.
After that try the solution in comment no 6. -
Do you have installed Roundcube plugins? Kazuto
-
Hi Kazuto !
Try this:apt-get install dovecot-sieve dovecot-managesieved spamassassin spamass-milter libmail-dkim-perl libnet-ident-perl libencode-detect-perl
$ mkdir /var/lib/dovecot/sieve/
Create the file default.sieve
$ nano /var/lib/dovecot/sieve/default.sieve
require "fileinto";
if exists "X-Spam-Flag" {
if header :contains "X-Spam-Flag" "YES" {
fileinto "INBOX.Junk";
stop;
}
}
$ chown vmail /var/lib/dovecot/sieve/default.sieve
Edit the file dovecot.conf change the red options
$ nano /etc/dovecot/dovecot.conf
protocol lda {
auth_socket_path = /var/run/dovecot/auth-master
mail_plugins = $mail_plugins sieve
postmaster_address = postmaster(at)yourdomain.tld
}
plugin {
sieve_global_path = /var/lib/dovecot/sieve/default.sieve
sieve_global_dir = /var/lib/dovecot/sieve/
}
$ /etc/init.d/dovecot restart
$ /etc/init.d/spamassassin restart
$ /etc/init.d/spamass-milter restart
-
Yup, I've managed that, thanks.
But it would be great if current version with great responsive theme will just appear in future releases of i-MSCPGreat!
For this part maybe Nuxwin can tell more for us. -
Hello!
If you want to upgrade Roundcube you can do it yourself.
1. Download latest Roundcube version from: https://roundcube.net/2. Navigate to bin folder. You will find there installto.sh script
3. Run script with following command:
Type y for agree.
You are done.
Try to login and that is it.
If there is some issue during update-ing, you can reconfigure you webmails but before that please delete all files include .htaccess in webmail folder. After that run reconfigure.After that start you update process again.
For me it's worked.
IF YOU DO ANY CHANGES ON YOUR SYSTEM THE RESPONSIBILITY IS YOURS!!
I'm glad if I could help you. -