Koozali.org: home of the SME Server

atmail On SME

Brooke

atmail On SME
« on: February 25, 2004, 08:15:42 AM »
Dear All,

Anyone have experience using @mail (atmail) from http://atmail.com/index.ehtml on E-smith SME ?
We plan to buy @mail (atmail) for internal use.
Already search at atmail.com but it seems there is no one there using SME.

Thx for Help,

Brooke

Derek L

atmail On SME
« Reply #1 on: February 25, 2004, 05:53:48 PM »
Just had a look at the @mail site. My users would love this. I'm going to download the demo and give it a try. I'll report back if I have joy.

Derek L

atmail On SME
« Reply #2 on: February 25, 2004, 08:40:24 PM »
I can confirm that it works on SME 6.0. One issue though, it doesn't seem to have support for IMAP subfolders. At least not the Folder;subfolder format of Dovecot.

Brooke

atmail On SME
« Reply #3 on: February 26, 2004, 02:00:44 AM »
Thx Derek for that info. Could you please share it here how did you install it on SME 6.0 ?
Anybody maybe have another experience ?

Thx,

Brooke

Derek L

atmail On SME
« Reply #4 on: February 26, 2004, 05:17:35 PM »
I talked to someone at @Mail and they assured me that IMAP folder support was only disabled in the demo.

Installation was easy. They have comprehensive instructions on their site. The only SME-specific thing to watch out for is not to let their install script modify httpd.conf. You have to make a custom template with this info:

Alias /atmail /path/to/atmail/folder

# Allow .pl files to be executed as a perl script
AddHandler cgi-script .pl

<Directory "/www/atmail"> # Replace this with your @Mail directory
Options ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>

<Files ~ ".pm > # Deny files ending in .pm
order allow,deny
deny from all
</Files>

Make sure the permissions are correct on the folder that you install @Mail into and it all works.

Brooke

atmail On SME
« Reply #5 on: February 27, 2004, 01:40:46 AM »
Thank you Derek for that info.
Already download the demo version, try to install today, and if everything works , buy the @mail next week.

Brooke

Offline jmartin

  • **
  • 58
  • +0/-0
    • http://www.ci.wayne.mi.us
atmail On SME
« Reply #6 on: March 07, 2006, 10:24:57 PM »
I've tried installing atmail and been having trouble.  All I get is an "Internal Server Error"  Below are the basic steps I did for the installation.  If anybody can offer some suggestions I'd really be grateful.  Thanks

1.
tar xvfz atmailwebmail-unix.tgz -C /usr/local/


2. Activate mod_perl

yum install mod_perl
config setprop modPerl status enabled
signal-event post-upgrade
signal-event reboot

3. Create mysql database and user

used phpmyadmin to create atmail database and user/password


4. install atmail

cd /usr/local/atmail/webmail/

perl install.pl


5. change ownership

chown -R www:www /usr/local/atmail


6. Create httpd.conf template

mkdir -p /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf
cd /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf
pico 95atmail

(start of insert)

# ADDED BY @Mail Tue Mar  7 09:13:37 2006
AddHandler cgi-script .pl

# ADDED BY @Mail Tue Mar  7 09:13:41 2006
<Directory "/usr/local/atmail/webmail">
    Options ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>


# ADDED BY @Mail Tue Mar  7 09:17:40 2006
Alias /mail/ /usr/local/atmail/webmail/


# ADDED BY @Mail Tue Mar  7 09:17:50 2006
<Files ~ ".pm$">
order allow,deny
deny from all
</Files>

(end of insert, hit CTRL/X to finish the edit)

7. expanded the template

/sbin/e-smith/expand-template /etc/httpd/conf/httpd.conf

8. restarted the web server

/etc/rc7.d/S86httpd-e-smith sigusr1