Hi, I did all that
Wiki-Zimbra says:
* Download the dictionary from gnu.org
In my case: aspell-es-0.50-2.tar.bz2
* Extract it from the tar file in a work directory
* Set Zimbra's aspell in the path with:
PATH=/opt/zimbra/aspell-0.60.3/bin:$PATH
* Configure and install the dictionary according to the README
./configure
make
make install
But I modified 2 lines of the MAKEFILE to this:
dictdir = /opt/zimbra/aspell-0.60.3/lib/aspell-0.60
datadir = /opt/zimbra/aspell-0.60.3/lib/aspell-0.60
then make install:
[root@localhost aspell-es-0.50-2]# make install
mkdir -p /opt/zimbra/aspell-0.60.3/lib/aspell-0.60/
cp es.rws es.multi espaņol.alias esponol.alias spanish.alias /opt/zimbra/aspell-0.60.3/lib/aspell-0.60/
cd /opt/zimbra/aspell-0.60.3/lib/aspell-0.60/ && chmod 644 es.rws es.multi espaņol.alias esponol.alias spanish.alias
mkdir -p /opt/zimbra/aspell-0.60.3/lib/aspell-0.60/
cp es.dat /opt/zimbra/aspell-0.60.3/lib/aspell-0.60/
cd /opt/zimbra/aspell-0.60.3/lib/aspell-0.60/ && chmod 644 es.dat
* Edit the file /opt/zimbra/httpd/htdocs/aspell.php to reference the new dictionary. For example to add the french dictionary:
$dictionary = pspell_new("en_EN");
TO
$dictionary = pspell_new("fr_FR");
and here I changed it to $dictionary = pspell_new("es_ES");
Then I try and don't works, all the words are incorrect without suggestions.
Thanks