squirrelmail 1.4.8

This did *not* work for Debian Sarge.

After outfitting squirrelmail.sh with echo statements so I could see where it would hang, I found this not to be working:
copying data
cp: copying multiple files, but last argument `/var/www/html/squirrelmail-1.4.8/data/index.php' is not a directory
Try `cp --help' for more information.

Which is normal, as there's a * too much on line 38 of the squirrelmail.sh file. It states:
Code:
cp -f $ALIASPATH/data/* $REALPATH/data/*
This should be:
Code:
cp -f $ALIASPATH/data/* $REALPATH/data/

I did it manually, after which the data was copied.

Furthermore, all locales were missing, had to download them and install them seperately, furthermore, I had to enable system locales for the languages I want to support.

After that, reloading Apache, makes sure the new locales config works. And it does :).
 
Upgraded fine for me, of course nothing is ever easy as I have some customized changes to the login and certain other files..lol. But works fine...
 
Back
Top