Koozali.org: home of the SME Server
Obsolete Releases => SME 8.x Contribs => Topic started by: stephdl on June 03, 2013, 08:44:09 PM
-
Hi
i have updated the work of stephen nobles to roundcube-0.9.1 and i need some tests.
The contrib works for me and my friend, i need your feedbacks.
http://wiki.contribs.org/RoundCube#Installation_for_roundcube_webmail_0.9.1
-
Works like a charm.
Thank you!
Best regards,
-
Seems to work for me...
-
did you have noticed this behaviour ?
see bugzilla:7652 (http://bugs.contribs.org/show_bug.cgi?id=7652) you have to set the upload_tmp_dir in the php.ini as described here For SME Server V8 (http://wiki.contribs.org/Uploadtmpdir)
-
Hi,
This was a problem already on the previous version.
The php.ini modification chsnges the entire behavior of PHP, I don't think I want that.
I rather move to a ibay or Shared folder and modify the open_basedir for the particular application, keeping the double authentication.
Please share your opinion on the best way to solve this.
Thanks,
-
i have setup a wiki page on this issue http://wiki.contribs.org/Uploadtmpdir
I implemented a new version of roundcube with a fragment of template in the virtual host of apache. So only the configuration of this web app is set for php tmp directory...described here http://wiki.contribs.org/Uploadtmpdir#Template_of_httpd.conf
Please have test on a new machine, it works for me.
From my point of view the solution with templates in httpd.conf is better in term of security.
-
Hello, i have installed roundcube 0.9.1 but i have a problem. I can't acces to webmail. for every user i have error message: user or password incorrect but the login is correct.
Any suggestion?
Thanks
-
Please raise a bug under smeserver-roundcube in bugzilla and report all following questions
Is it a fresh install or an upgrade from the previous version of smeserver-roundcube made by stephen Noble ?
is it a fresh install of sme8 or an upgraded sme8 version from sme7 ?
is there something interesting in last lines of this log (try to log before to go to these logs)
/var/log/httpd/access_log
/var/log/httpd/error_log
can you log with the couple user/password in horde ?
-
Hello, i have installed roundcube 0.9.1 but i have a problem. I can't acces to webmail. for every user i have error message: user or password incorrect but the login is correct.
Any suggestion?
Yes i have one suggestion more ....do you have installed smeserver-roundcube-0.9-9 with roundcube-0.9.1-1.noarch.rpm
see http://wiki.contribs.org/RoundCube#Installation_for_roundcube_webmail_0.9.1
-
Hello,
I have installed sucessfull roundcube 0.91, Just want to ask how do easily replace webmail subdomain to direct rouncube?
Is there also config template that I could enable?
currently
mydomain.com/webmail ----> default sme
mydomain.com/roundcube ----> I want to change this to this mydomain.com/webmail
regards,
Rocel
-
I know it is a feature which is proposed by the sogo contrib, maybe you can take a look to the source rpm, specially in the httpd.conf template for searching about apache alias.
currently i'm on holidays and i don't have full access to my development environment.
-
This is really light search and it could be a feature i will add later (after my holidays)
First the template to modify is this one to add the new url of http://SME-Hostname/webmail when the horde webmail is desactivated
[root@sme8 ~]# cat /etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/30RoundCubeAliases
{
my $status = $roundcube{'status'} || "disabled";
return " # roundcube is disabled in this VirtualHost"
unless $status eq 'enabled';
if ($port eq "443")
{
$OUT .= " ProxyPass /roundcube/ http://127.0.0.1/roundcube/\n";
}
}
The example we have to trick is this template which can be found in the sogo contrib.
[root@sme8 ~]# cat /etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/61SogoSSL
{
my $sslport = $modSSL{'TCPPort'} || '443';
if ($port ne $sslport){
## Redirect Web Address to Secure Address
$OUT .= " RewriteEngine on\n";
$OUT .= " RewriteRule ^/SOGo(/.*|\$) https://%{HTTP_HOST}/SOGo\$1 \[L,R\]\n";
}
$OUT .= " RewriteRule ^/sogo(/.*|\$) https://%{HTTP_HOST}/SOGo\$1 \[L,R\]\n";
$sogoStatus = $sogod{'status'} || "disabled";
$webmailStatus = $imp{'status'} || "disabled";
if (($webmailStatus eq 'disabled') and ($sogoStatus eq 'enabled')) {
$OUT .= " RewriteRule ^/webmail(/.*|\$) https://%{HTTP_HOST}/SOGo\$1 \[L,R\]\n";
}
}
as you can see you have some conditions in the code to use either /sogo or /webmail if horde is deactivated, but i'm really not sure that it works out of the box and it needs some tests.
(Un)fortunately i'm not in my home and i have to use internet by roaming, so i make attention about do not spend too much data :-(
If you can have some good results, can you post the src.rpm!
-
Ok it is quite simpler that i could imagine....the solution was in front of my nose
http://wiki.contribs.org/RoundCube#To_add_a_different_URL
-
New version of smeserver-roundcube, updated to 0.9.4
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/roundcube-0.9.4-1.noarch.rpm
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/smeserver-roundcube-0.9-9.noarch.rpm
yum localinstall roundcube-0.9.4-1.noarch.rpm smeserver-roundcube-0.9-9.noarch.rpm
signal-event console-save
For those who want to test a plugin which allow to reach the carddav server of rouncube (for example) you can test a new version with a roundcube plugin directly incorporated in the rpm.
http://www.crash-override.net/carddav.html
It works for me and some of my friends, but it is a "testing" features that you should test on a VM in first. Please give me your feedback.
I have noticed that the first sync need to be done without the https protocol, and after you can activate the https protocol. I do not understand why, if you can reach the carddav server with https in one attempt, please give me your feedback
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/roundcube-0.9.4-2.noarch.rpm
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/smeserver-roundcube-0.9-11.noarch.rpm
yum localinstall roundcube-0.9.4-2.noarch.rpm smeserver-roundcube-0.9-11.noarch.rpm
signal-event console-save
-
New version of smeserver-roundcube to browse the Ldap addressbooks of SME Server
see http://mirror.de-labrusse.fr/Sme-Server/roundcube/
This is a feature asked by a sysadmin of a french school who has 900 users to manage.
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/roundcube-0.9.4-2.noarch.rpm
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/smeserver-roundcube-0.9-12.noarch.rpm
yum localinstall roundcube-0.9.4-2.noarch.rpm smeserver-roundcube-0.9-12.noarch.rpm
signal-event console-save
-
Simply works out of the box. Nice work Stéphane! With the calendar plugin it could be a replacement for Horde.
-
Simply works out of the box. Nice work Stéphane! With the calendar plugin it could be a replacement for Horde.
Hi Laylow
do you have a link to the plugin you are asking ?
Actually you can manage the carddav adressbook of owncloud, but effectively it could be a nice NFR.
-
For purpose of tests i have added a calendar from the kolab project, a right click experience (context menu), an easy spam management (mark as spam 2)
I have added too some official plugins you can find in the archive : vcard_attachments, newmail_notifier, emoticons
* Sat Oct 13 2013 stephane de labrusse <stephdl@de-labrusse.fr> 0.9.4.3
- Add the Kolab calendar plugin : http://git.kolab.org/roundcubemail-plugins-kolab/tree/plugins/calendar
- Add the context menu for right click, very useful : http://www.tehinterweb.co.uk/roundcube/#picontextmenu
- Add the "Mark as Junk 2" to kick spam to junkmail : http://www.tehinterweb.co.uk/roundcube/#pimarkasjunk2
Please test and give your feedbacks.
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/roundcube-0.9.4-3.noarch.rpm
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/smeserver-roundcube-0.9-13.noarch.rpm
yum localinstall smeserver-roundcube-0.9-13.noarch.rpm roundcube-0.9.4-3.noarch.rpm
signal-event console-save
-
funny thing, when i send an invitation to a sme member for an event with the all-day-events check box activated in the calendar, when the users accepts the invitation it is displayed for the good day for the sender but for the invitee it start at 12h pm and it finish at 01h am the next day
can you confirm this behaviour.
-
http://mirror.de-labrusse.fr/Sme-Server/roundcube/smeserver-roundcube-0.9-14.noarch.rpm
http://mirror.de-labrusse.fr/Sme-Server/roundcube/smeserver-roundcube-0.9-14.src.rpm
force https protocol :)
-
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/roundcube-0.9.5-1.noarch.rpm
wget http://mirror.de-labrusse.fr/Sme-Server/roundcube/smeserver-roundcube-0.9-15.noarch.rpm
yum localinstall roundcube-0.9.5-1.noarch.rpm smeserver-roundcube-0.9-15.noarch.rpm
signal-event console-save
The calendar plugin is completely workable, with some other cool plugins, a mandatory https protocol,you can choice between several type of address books (local,carddav,ldap) and a roundcube version up to date to 0.9.5, what next hsf ;)
* Sat Oct 13 2013 stephane de labrusse <stephdl@de-labrusse.fr> 0.9.4.3
- Add the Kolab calendar plugin : http://git.kolab.org/roundcubemail-plugins-kolab/tree/plugins/calendar
- Add the context menu for right click, very useful : http://www.tehinterweb.co.uk/roundcube/#picontextmenu
- Add the "Mark as Junk 2" to kick spam to junkmail : http://www.tehinterweb.co.uk/roundcube/#pimarkasjunk2
* Sat Sep 21 2013 Stephane de Labrusse <stephdl@de-labrusse.fr>
- Add carddav functionality http://www.crash-override.net/carddav.html