Acceptable Work Around:
To create a reverse proxy to forward you mail

1.  Setup Webcit to use its internal option on port 2080 and 2443
respectively.

2.  Add the following lines to a file in your /etc/apache2/conf.d:

<VirtualHost *:80>

        ServerName webmail.example.com
        ProxyPass / http://localhost:2080/
        ProxyPassReverse / http://:2080/

</VirtualHost>

<VirtualHost *:443>

        ServerName webmail.example.com
        ProxyPass / http://localhost:2443/
        ProxyPassReverse / http://:2443/

</VirtualHost>


You can either paste them into a current file or create your own just make sure 
the file will be included.  


1.  Edit /etc/apache2/mods-available/proxy.conf

Under <Proxy *> add "Allow from .example.com" to allow local access.

If you need external access you will have to add the appropriate allow
statements for your criteria, just be careful.

-- 
Webcit Apache integration does not create webcit.conf
https://bugs.launchpad.net/bugs/614403
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to