AfterLogic WebMail Lite 4.9.10 installation script

Would you like it to be implemented into the CustomBuild script?

  • Yes

    Votes: 63 80.8%
  • No

    Votes: 15 19.2%

  • Total voters
    78
Which is a limitation as opposed to squirrelmail, which allows multiple identities.

I use this quite a bit, but I wonder if anyone else does.

Comments anyone?

Jeff
 
I use it when I travel. I have multiple email addresses, but when I travel they all come into one inbox (exim my list email addresses) and I respond to them using the proper identity as appropriate.

Jeff
 
I tried the install today on a server running php4/mysql4, php as cli (mod_php). I used Martynas's script to install it. The first thing I notice is that he's never udated it to the latest version.

The second thing I notice is this problem:
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /var/www/html/afterlogic-webmail-lite-4.10/common/class_settings.php on line 960
Any ideas?

Jeff
 
You can not run it with PHP4.

AfterLogic WebMail Lite System Requirements
For PHP version:
— Operating system: MS Win2K/XP/2003/2008/Vista/Seven or any Linux/Unix-based system
— Web server: MS IIS (Internet Information Services) or Apache
PHP engine: 5.1.0 or above
— Database engine: MS SQL Server 2000 or above, MySQL 4.1 or above
— Browser: Internet Explorer 8, Mozilla Firefox 2+, Google Chrome 4+, Safari 3+, Opera 10+

http://www.afterlogic.com/products/webmail-lite-system-requirements.html
 
Thanks; I overlooked that. Have you found a way to get the latest version running?

Jeff
 
I have a health problem for about 9 months, so I haven't found any time to update it to the latest version (because I'm busy with the CustomBuild script and other ideas, need to have more rest than before), sorry. I will try to do that this week.
 
This code was not executed:

Code:
# tail -19 /usr/local/directadmin/scripts/packages/afterlogic_db-5.1.4.sql

#Updates AfterLogic WebMail Lite 4.10 -> 5.1.4
ALTER TABLE `awm_accounts` ADD `personal_namespace` varchar(50) NOT NULL DEFAULT '';

ALTER TABLE `awm_addr_book` ADD `fnbl_pim_id` bigint(20) DEFAULT NULL;

ALTER TABLE `awm_domains` ADD `view_mode` tinyint(4) NOT NULL DEFAULT '1';

ALTER TABLE `awm_domains` ADD `ldap_auth` tinyint(1) NOT NULL DEFAULT '0';

ALTER TABLE `awm_domains` ADD `save_mail` tinyint(4) NOT NULL DEFAULT '0';

ALTER TABLE `awm_settings` ADD `enable_fnbl_sync` int(11) DEFAULT '0';
 
I believe line

Code:
 mysql -e "use ${AFTERLOGIC_DB}; source ${MYSQLDUMP};" --user=${AFTERLOGIC_DB_USER} --password=${AFTERLOGIC_DB_PASS} 2> /dev/null

should be something like

Code:
 mysql -f -e "use ${AFTERLOGIC_DB}; source ${MYSQLDUMP};" --user=${AFTERLOGIC_DB_USER} --password=${AFTERLOGIC_DB_PASS} 2> /dev/null

to continue SQL query -f parameter is required.

-f, --force Continue even if we get an SQL error.
 
OK, now it seems to be fixed. Thanks.

I've got two more questions:
— Is it possible not to change mailadm password on update?
— Is it possible to keep admin settings on update?
 
Both are possible and I will consider doing that for the next release of the script.
 
How do i set this up whit DA?
I have installed the script, but cant get to login whit any of my users..
 
I´m using it for our personal servers. Its great and speedy.
the only thing to worry this, to use in a production server, is how to easly migrate the contacts data from our users, because is not included in the DA backup data of each users, not?
 
No, it's not included, you'll have to backup the DB yourself and write scripts that add remove users/preferences to the DB.
 
Back
Top