 |
 |
Domain Technologie Control Forum Take the control of your domain name
|
 |
 |
 |
 |
|
 |
 |
 |
 |
 |
mphanke
Joined: 05 Apr 2008 Posts: 17 Location: Switzerland  |
Posted: Wed Dec 03, 2008 3:35 pm Post subject: roundcube installation |
 |
|
Hi
I would like to have RoundCube webmailer on my server. but I want to have it accessible over mail.customer.domain or www.customer.domain/webmailer.
Anybody any hints on how to do this? Please be detailed, my knowledge about the httpd.conf is somewhere in between amateur and intermediate...
Thanks in advance
Martin |
|
| |
|
|
|
 |
 |
 |
 |
 |
enderst
Joined: 12 Feb 2008 Posts: 41
 |
|
| |
|
|
|
 |
 |
 |
 |
 |
mphanke
Joined: 05 Apr 2008 Posts: 17 Location: Switzerland  |
|
| |
|
|
|
 |
 |
 |
 |
 |
gplhost Site Admin

Joined: 16 Feb 2005 Posts: 2199 Location: Tampa, florida and Singapore, Malaisia  |
Posted: Fri Dec 05, 2008 4:40 am Post subject: |
 |
|
Well, I really think that you MUST read the apache doc and understand it. Running a control panel doesn't mean that you should forget about any administration knowledge.
However, I have noted that so many people are asking for that /webmail link everywhere. I think I will add such functionality in the control panel for the next version.
Thomas _________________ GPLHost:>_ Opensource hosting worldwide
Xen hosting with DTC pre-setup
Helping is not easy when request is not precise: please past logs, don't use "it said" or similar impersonal subjects, and try to be verbose and exhaustive on your problem description. |
|
| |
|
|
|
 |
 |
 |
 |
 |
mphanke
Joined: 05 Apr 2008 Posts: 17 Location: Switzerland  |
Posted: Sat Dec 06, 2008 7:28 am Post subject: |
 |
|
Hi
that would be so great.
I know how to configure Apache by hand - for most cases. In some specialized cases like this one I just can't get through howto configure something like that...
This question, eventhough it will be a feature now, is actually off-topic in this forum. But I wanted to give it a try
Martin |
|
| |
|
|
|
 |
 |
 |
 |
 |
gplhost Site Admin

Joined: 16 Feb 2005 Posts: 2199 Location: Tampa, florida and Singapore, Malaisia  |
Posted: Sat Dec 06, 2008 9:54 am Post subject: |
 |
|
There you go, I have added the option in our Git. Update to the latest Git and you will have such option. By default /webmail should be redirecting to roundcube (as roundcube is pulled by default by dtc-toaster), and you can change this to use squirrelmail instead.
Thomas _________________ GPLHost:>_ Opensource hosting worldwide
Xen hosting with DTC pre-setup
Helping is not easy when request is not precise: please past logs, don't use "it said" or similar impersonal subjects, and try to be verbose and exhaustive on your problem description. |
|
| |
|
|
|
 |
 |
 |
 |
 |
gplhost Site Admin

Joined: 16 Feb 2005 Posts: 2199 Location: Tampa, florida and Singapore, Malaisia  |
Posted: Sat Dec 06, 2008 9:58 am Post subject: |
 |
|
Just wanted to add. If you want to set it as global in your apache.conf without upgrading to the latest Git, the following directive should be ok:
| Code: |
| RedirectPermanent /webmail https://dtc.example.com/roundcube |
Thomas _________________ GPLHost:>_ Opensource hosting worldwide
Xen hosting with DTC pre-setup
Helping is not easy when request is not precise: please past logs, don't use "it said" or similar impersonal subjects, and try to be verbose and exhaustive on your problem description. |
|
| |
|
|
|
 |
 |
 |
 |
 |
mikedawson
Joined: 02 May 2008 Posts: 18 Location: Kabul, Afghanistan  |
Posted: Mon Dec 15, 2008 5:10 pm Post subject: |
 |
|
I have found that the packaged version of roundcube does not really meet the needs that we have - in particular using 0.2 beta roundcube and language customizations. But has been quite simple:
Go to the DTC Admin Panel, General Config, Paths, and add /var/www/webmail or whatever to the path
Then make one file /etc/apache2/conf.d/roundcube.conf
| Code: |
Alias /webmail/ /var/www/webmail/
<Directory "/var/www/webmail/">
Options Indexes MultiViews
AllowOverride All
Order allow,deny
Allow from all
php_value magic_quotes_gpc 0
</Directory>
|
Then restart apache and every domain would have /webmail pointing to a shared roundcube installation. _________________ --
Mike Dawson
Afghanistan: 14,000 Registered Companies, 4 Airlines, 4 Mobile Phone Companies, 11+ ISPs - what did you think it was? |
|
| |
|
|
|
 |
 |
 |
 |
 |
gplhost Site Admin

Joined: 16 Feb 2005 Posts: 2199 Location: Tampa, florida and Singapore, Malaisia  |
Posted: Tue Dec 16, 2008 6:39 pm Post subject: |
 |
|
Which is a totally lame way of doing things because it's not using SSL, so all email passwords are sent in clear text. You'd rather set global redirection to the dtc.example.com/roundcube ...
Thomas _________________ GPLHost:>_ Opensource hosting worldwide
Xen hosting with DTC pre-setup
Helping is not easy when request is not precise: please past logs, don't use "it said" or similar impersonal subjects, and try to be verbose and exhaustive on your problem description. |
|
| |
|
|
|
 |
 |
 |
 |
 |
mikedawson
Joined: 02 May 2008 Posts: 18 Location: Kabul, Afghanistan  |
Posted: Mon Dec 22, 2008 4:01 pm Post subject: |
 |
|
Well... For us our customers object far more to having to use anything under any other domain other than their own to submitting passwords in cleartext... so the only options come down to use of individual ports, frames, ...
For anyone else - that's up to him/her... _________________ --
Mike Dawson
Afghanistan: 14,000 Registered Companies, 4 Airlines, 4 Mobile Phone Companies, 11+ ISPs - what did you think it was? |
|
| |
|
|
|
 |
 |
 |
 |
 |
gplhost Site Admin

Joined: 16 Feb 2005 Posts: 2199 Location: Tampa, florida and Singapore, Malaisia  |
Posted: Mon Dec 22, 2008 5:50 pm Post subject: |
 |
|
Individual ports is doable. Frames are not an option, this will break lot's of browsers to have an HTTPS frame/iframe while the rest of the page is in HTTP.
Anyway, please reconsider: security is a LOT more important than just using their own domain...
Thomas _________________ GPLHost:>_ Opensource hosting worldwide
Xen hosting with DTC pre-setup
Helping is not easy when request is not precise: please past logs, don't use "it said" or similar impersonal subjects, and try to be verbose and exhaustive on your problem description. |
|
| |
|
|
|
 |
 |
 |
 |
 |
|
 |
 |
 |
 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
 |