Koozali.org: home of the SME Server

Squirremail vs Horde - how can I run them toghether

Offline socate

  • **
  • 21
  • +0/-0
Squirremail vs Horde - how can I run them toghether
« on: May 21, 2007, 10:53:40 AM »
Hi all, I'm a novice in Linux administration, and I need some help from experts. I see that SME come by default as webmail client with HORDE. But, some users want to use squirremail; my question is: I can run both webmails in the same time, and how I can configure this? I try to search on forum but 0 result. Please, who know answers to my problem, provide some links or a small tutorial.

Thks 2 all

Offline judgej

  • *
  • 375
  • +0/-0
Re: Squirremail vs Horde - how can I run them toghether
« Reply #1 on: May 23, 2007, 01:29:39 AM »
Quote from: "socate"
Hi all, I'm a novice in Linux administration, and I need some help from experts. I see that SME come by default as webmail client with HORDE. But, some users want to use squirremail; my question is: I can run both webmails in the same time, and how I can configure this? I try to search on forum but 0 result. Please, who know answers to my problem, provide some links or a small tutorial.


The easy way would be to create an i-bay, copy the squirrelmail install into it, and make it available to all users. That should just about be it. Users would log into squirrel using their normal login and password.

I can't remember (was a few years since I last did it) but does squirrelmail still need a shell prompt to install? If so, you may need to log in to a shell to complete the process.

-- JJ
-- Jason

Offline dmay

  • *
  • 450
  • +0/-0
    • http://myezserver.com
Re: Squirremail vs Horde - how can I run them toghether
« Reply #2 on: May 23, 2007, 03:08:12 AM »
Quote from: "socate"
Hi all, I'm a novice in Linux administration, and I need some help from experts. I see that SME come by default as webmail client with HORDE. But, some users want to use squirremail; my question is: I can run both webmails in the same time, and how I can configure this? I try to search on forum but 0 result. Please, who know answers to my problem, provide some links or a small tutorial.

Thks 2 all

If you have a test server available, try this:

http://forums.contribs.org/index.php?topic=37114.msg165892#msg165892

Darrell

Offline socate

  • **
  • 21
  • +0/-0
Squirremail vs Horde - how can I run them toghether
« Reply #3 on: May 24, 2007, 08:11:20 AM »
Thky guys; I found the squirremail and install from Software install but with no results! I will try again on a test server with the proposed solution (manual install, etc), and I'll come back with results!

Offline socate

  • **
  • 21
  • +0/-0
Squirremail vs Horde - how can I run them toghether
« Reply #4 on: June 19, 2007, 11:24:39 AM »
I try and I try but with no resuts; OK, what I do:
1) I modify first the alias value from "webmail" to "sqm" in squirrelmail.conf
2) I edit httpd.comf and I add Alias /sqm/   /usr/share/squirrelmail
3) I add <Directory> values

OK, averything fine, I test the config, response OK, restart services (apache and intd) and when I go to http://192.168.1.1/sqm the response is the txt file of index.php

---------------
<?php

/**
 * index.php
 *
 * Redirects to the login page.
 *
 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: index.php,v 1.14.2.7 2006/02/03 22:27:46 jervfors Exp $
 * @package squirrelmail
 */

// Are we configured yet?
if( ! file_exists ( 'config/config.php' ) ) {
    echo '<html><body><p><strong>ERROR:</strong> Config file ' .
        '&quot;<tt>config/config.php</tt>&quot; not found. You need to ' .
        'configure SquirrelMail before you can use it.</p></body></html>';
    exit;
}

// If we are, go ahead to the login page.
header('Location: src/login.php');

?>
-----------------------------

Strange? What's mean this? PHP is not active? Need some help...