webmail "Page not found"

Discussion in 'Installation/Configuration' started by kmullen, Nov 1, 2010.

  1. kmullen

    kmullen New Member

    Fresh install of ISPCONFIG 3 on Ubuntu "perfect server"

    Installation went well, however, webmail isn't working. Getting 404 error page not found.

    http://domain-name/webmail
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Webmail is onl activated on the default vhost, which can be reached with the server IP. You have to enter the IP address and not the domain name of a website that is hosted on ispconfig to get the webmail interface.
     
  3. kmullen

    kmullen New Member

    webmail isn't accessible by IPaddress/webmail. By IP address or primary vhost. http://primaryvhost.com/webmail.
     
  4. kmullen

    kmullen New Member

    I really nead some help here.

    Can anyone give me any direction on how to fix this?
     
  5. DRAZY

    DRAZY New Member

    Having the same problem with Webmail/ISPConfig

    I'm having the same exact problem. I followed the installation and during the install it worked. I seems that after I created the site for domain I'm no longer able to access webmail. I really hope someone can help resolve this problem.
     
  6. wiss

    wiss Member

    Create file webmail.conf in:

    Code:
    etc/apache2/conf.d/
    And put this:

    Code:
    Alias /webmail /usr/share/squirrelmail
    
    <Directory /usr/share/squirrelmail>
    
    		Options Indexes FollowSymLinks
    		DirectoryIndex index.php
    
    		# Authorize for setup
    			<IfModule mod_php4.c>
    				AddType application/x-httpd-php .php
    
    				php_flag magic_quotes_gpc Off
    				php_flag track_vars On
    				php_flag safe_mode Off
    				php_flag register_globals Off
    				php_value include_path .
    			</IfModule>
    			<IfModule mod_php5.c>
    				AddType application/x-httpd-php .php
    
    				php_flag magic_quotes_gpc Off
    				php_flag track_vars On
    				php_flag register_globals Off
    				php_flag safe_mode Off
    				php_value include_path .
    			</IfModule>
    </Directory>
    And then restart apache.
     
  7. DRAZY

    DRAZY New Member

    It Works

    Thanks so much. Squirrelmail now works and with SSL enabled.
     
  8. kmullen

    kmullen New Member

    Well, that did get my squirrelmail working again. Thank you very much.

    However, it still doesn't work for roundcubemail. I really like roundcube better because of the calendar, contacts and spam. Anyone have any guidance on this.
     
  9. DRAZY

    DRAZY New Member

    I did have a look at RoundCubeMail. It's a much better looking webmail option than SquirrelMail? Hands down. How come no one writes a how-to installation to include it in Ubuntu 10.10, ISOConfig setup?

    I would consider using it over SquirrelMail. It definitely makes for a more polished web/email hosting solution.
     
  10. kmullen

    kmullen New Member

    Isn't there anyone out there that will help me get roundcubemail running ;-(
     
  11. itsnedkeren

    itsnedkeren New Member

Share This Page