Should be updated, thanks
RoundcubePlugins
- TheCry
- Closed
- Thread is marked as Resolved.
-
-
Hi,
any news, when this sieve plugin will be working with round cube 1.1.0 ?
THX and best wishes
Niels
-
-
imscp 1.2.3 will be released this week, also a new version of this plugin. Please wait and test it out after release. If you then still have problems with sieve, create a ticket in our ticketing system
-
Hi there,
I installed I-MSCP v1.2.3 and the new Roundcube plugin (v1.2.0) which should work with I-MSCP >= v1.2.3.
Now I am getting this error message inside the administration front-end:
For me it seems like there have to be a new Roundcube version which has to be released with I-MSCP v1.2.3?
Would be great if someone can check this error message - if its my fault than please tell me! -
-
-
The latest released version of this plugins should work with i-MSCP 1.2.3. Give me few minutes to test.
if you need some information or want to have a look at my server just ask me for teamviewer information (PM)
-
-
-
Hello, any update on this topic? I'm still unable to install this plugin in 1.2.3 installation.
-
-
Is fixed on github. Will be released with imscp v1.2.4. Atm do following:
- In plugins folder open /backend/RoundcubePlugins.pm
- Scroll down to sub _checkVersion
- Change
if(version->parse("$self->{'ROUNDCUBE'}->{'ROUNDCUBE_VERSION'}") > version->parse("1.1.0")) {
to
if(version->parse("$self->{'ROUNDCUBE'}->{'ROUNDCUBE_VERSION'}") < version->parse("1.1.0")) { - Save changes and reupload your plugin
-
@Ninos, at version just downloaded I can see
Code- sub _checkVersion
- {
- my $self = $_[0];
- # Check the Roundcube version
- # TODO Should be done on PHP side
- tie %{$self->{'ROUNDCUBE'}}, 'iMSCP::Config', 'fileName' => "$main::imscpConfig{'CONF_DIR'}/roundcube/roundcube.data";
- if(version->new($self->{'ROUNDCUBE'}->{'ROUNDCUBE_VERSION'}) > version->new('0.9.5')) {
- error("Your Roundcube version $self->{'ROUNDCUBE'}->{'ROUNDCUBE_VERSION'} is not compatible with this plugin version. Please check the documentation.");
- return 1;
- }
- 0;
- }
Is that okay to change it there? -