> Hello > I'd like to ask you about my problem with charsets. > If I'm using Russian Cyrillic or Greek Cyrillic, Squirrelmail deals with > this wrong and display it as other characters I'm using Squirrelmail > 1.4.3a, with this options: > 1. Default Charset -UTF-8 ( I tried to use other but without effect) > 11. Allow server thread sort : false > 12. Allow server-side sorting : false > 13. Allow server charset search : true > 14. Enable UID support : true > > I'm using Courier Imap with enable unicode options. if I used other web > client everything is ok. Did I forget for something in my settings, > cause I think that SM could support this languages
Currently SquirrelMail does not allow misconfiguration (language=ru_RU + charset=iso-8859-1). Misconfiguration is possible, because in 1.4.x these two options are stored in different meniu trees and configuration utility does not check these options for valid combination. SquirrelMail sets default charset to charset used by default language. I think charset used by your translation does not support Cyrillic. Use Russian, Lithuanian or Bulgarian translations and test Cyrillic in those translations. You can also try Farsi, but you might have right-to-left alignment problems there :). If you want to use Cyrillic symbols in English translation - open functions/i18n.php, find lines --- $languages['en_US']['NAME'] = 'English'; $languages['en_US']['CHARSET'] = 'iso-8859-1'; $languages['en_US']['LOCALE'] = 'en_US.ISO8859-1'; $languages['en']['ALIAS'] = 'en_US'; --- and change them to --- $languages['en_US']['NAME'] = 'English'; $languages['en_US']['CHARSET'] = 'utf-8'; $languages['en_US']['LOCALE'] = 'en_US.UTF-8'; $languages['en']['ALIAS'] = 'en_US'; --- By doing this you are changing default charset used by English translation. If you have any 8bit symbols in your user's preferences or address book, they will be broken. -- Tomas ------------------------------------------------------- This SF.Net email is sponsored by OSTG. Have you noticed the changes on Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, one more big change to announce. We are now OSTG- Open Source Technology Group. Come see the changes on the new OSTG site. www.ostg.com -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
