
16th June 2006, 23:25
|
|
Junior Member
|
|
Join Date: Jun 2006
Posts: 12
Thanks: 0
Thanked 1 Time in 1 Post
|
|
Squirrelmail Package!
Well, this forum (and ISPConfig in general) made my life loads easier, so I figured it was time to give back to the community. Well, actually, I wanted to get SquirrelMail installed, and it was pretty easy to make a package.
http://nerdlife.net/ispconfig/squirrelmail.pkg
Tested on the latest release of ISPConfig under Debian Sarge. It doesn't conflict with other webmail packages, so feel free to install it for the sake of poking around.
How's it work for you guys?
--Brian
|

17th June 2006, 11:34
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 20,619
Thanks: 312
Thanked 1,930 Times in 1,453 Posts
|
|
Thanks for the package
May I make the package available for download on the ISPConfig website?
|

19th June 2006, 08:08
|
|
Member
|
|
Join Date: Jun 2006
Posts: 66
Thanks: 3
Thanked 0 Times in 0 Posts
|
|
working perfectly, thank you!
|

19th June 2006, 08:48
|
|
Junior Member
|
|
Join Date: Jun 2006
Posts: 12
Thanks: 0
Thanked 1 Time in 1 Post
|
|
Quote:
|
Originally Posted by till
Thanks for the package
May I make the package available for download on the ISPConfig website?
|
no problem...that's why i made it.
fyi this package uses the full email address for logins...it looks at virtusertable (vlogin mod)
Last edited by bkrausz; 19th June 2006 at 08:52.
|

19th June 2006, 09:57
|
|
Member
|
|
Join Date: Jul 2005
Posts: 54
Thanks: 0
Thanked 2 Times in 1 Post
|
|
Ubuntu 5.10
Hi
Would this work on a Perfect Install - Ubuntu 5.10 as is? Or would I have to make any adjustments to the .pak file?
Been waiting for this. Thank you very much for making this available.
Regards
Brenton
|

19th June 2006, 10:38
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 20,619
Thanks: 312
Thanked 1,930 Times in 1,453 Posts
|
|
The .pkg files are working for all linux distributions and can be installed with the ISPConfig update function.
|

19th June 2006, 11:49
|
|
Member
|
|
Join Date: Jul 2005
Posts: 54
Thanks: 0
Thanked 2 Times in 1 Post
|
|
Thanks for your reply till, I've installed the .pkg file and it works great.
One more question, if I want http://mail.domain.com to point to the Squirrelmail how would I go about it?
I apologise for these basic questions, but I'm doing this on a production server and am having to be very careful.
Regards
Brenton
|

20th June 2006, 15:38
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 32,644
Thanks: 860
Thanked 1,626 Times in 1,543 Posts
|
|
You can do it with a PHP header redirect:
PHP Code:
<?php
header("Location: https://www.example.com:81/squirrelmail"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?>
Replace squirrelmail with the real directory.
|

21st June 2006, 01:59
|
|
Junior Member
|
|
Join Date: Jun 2006
Posts: 12
Thanks: 0
Thanked 1 Time in 1 Post
|
|
Quote:
|
Originally Posted by falko
You can do it with a PHP header redirect:
PHP Code:
<?php
header("Location: https://www.example.com:81/squirrelmail"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?>
Replace squirrelmail with the real directory.
|
You can also just setup a forward in the co-domains option to redirect mail.something.com to that site.
What I've been wondering is if there's a way to do this for all mail.*, so that all clients can go to mail.theirdomain.com and be redirected without having to manually set it.
|

21st June 2006, 12:46
|
|
Member
|
|
Join Date: Aug 2005
Posts: 85
Thanks: 1
Thanked 6 Times in 5 Posts
|
|
you can create a virtualhost in Apache (not in ISPConfig) with this content:
<VirtualHost 192.168.1.1:80>
ServerName mail.*:80
ServerAdmin webmaster@domain.com
DocumentRoot /var/www/sharedip
RewriteEngine On
RewriteCond %{HTTP_HOST} ^webmail..+..+$ [NC]
RewriteCond %{HTTP_HOST} !^mail.domain.com$
RewriteRule ^(.*)$ https://webmail.domain.com$1 [R=301]
</VirtualHost>
It will redicrect all incoming querys from http://mail.* to https://webmail.domain.com (of course, "webmail" hosname in domain.com domain should exist, and "mail" host in all domains too, you can create them in DNS Manager)
Last edited by todvard; 21st June 2006 at 13:03.
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +2. The time now is 00:03.
|
Recent comments
13 hours 17 min ago
15 hours 18 min ago
18 hours 29 min ago
20 hours 49 min ago
21 hours 59 min ago
23 hours 17 min ago
1 day 3 hours ago
1 day 6 hours ago
1 day 7 hours ago
1 day 22 hours ago