Hi
I started to dig into the aspell-issue.
First of all you could test the aspell separately in url http://<zimbra>:7780/aspell.php.
I seems that the corversion between UTF-8 and ISO-8859-1 is unnecessary.
I changed following in /opt/zimbra/httpd/htdocs/aspell.php
line 47
// Convert to ISO-8859-1
//$text = iconv("UTF-8", "iso-8859-1//IGNORE", $text);
line 90
$suggestions = implode(",", pspell_suggest($dictionary, $word));
//$suggestions = utf8_encode($suggestions);
//$utfw = utf8_encode($word);
//$misspelled .= "$utfw:$suggestions\n";
$misspelled .= "$word:$suggestions\n";
Now the Finnish spell checking is working.
-- Timo |