configure the roundcube path like squirrelmail

Discussion in 'Installation/Configuration' started by 007007, Sep 1, 2010.

  1. 007007

    007007 New Member

    Hi,

    I installed roundcube in /var/www/roundcube, everything is correct

    If possible I would like to do a redirection like squirrelmail

    for example anydomain.com/mail redirects to roundcube

    how to do this please?

    thx
     
  2. Mark_NL

    Mark_NL Member

    Code:
    echo "Alias /webmail /var/www/roundcube/" > /etc/apache2/conf.d/webmail
    apache2ctl restart
    i assumed this is on debian/ubuntu ..
     
  3. Ghostdare

    Ghostdare Member

    Create a directory, ie "mail", in the client location, then create a softlink
    Code:
    ln -s /var/www/roundcube /yourpathtomailclientdir
    hope it work for you

    Mark_NL response came faster and i think that the way he put it is better.
     
  4. 007007

    007007 New Member

    thank you for your help

    when i do this :

    i can't access to roundcube

    www.mysite.com/mails

    i get :

    any solution please ?
     
  5. till

    till Super Moderator Staff Member ISPConfig Developer

    Seems as if apache is not configured to allow requests to that directory. Add the lines:

    <Directory /var/www/roundcube>
    Order allow,deny
    Allow from all
    </Directory>

    to the file /etc/apache2/conf.d/mails and restart postfix.
     
  6. 007007

    007007 New Member

    thank you till it works

    it redirects me to http, but mydomaine.com/webmail is redirects me to https (squirrelmail)

    not a problem?
     

Share This Page