I was struggling with this same problem on Fedora and have finally found the 
error in my ways.

In my horde/config/prefs.php, I had attempted a long time ago at removing the 
Language selection for the main login screen.  In doing so, I had this:

$_prefs['language'] = array(
    'value' => 'American (English)',
    'locked' => true,
    'shared' => true,
    'type' => 'implicit',
    'escaped' => true,
    'desc' => _("Select your preferred language:")
);

Note the value option.  This was the friendly name, not the actual name used by 
horde.  In doing this, everything was working, but I was constantly getting the 
"This message was written in a character set (UTF-8) other than your own."  It 
would work just fine in IMP, but DIMP would be unable to display the characters 
in the preview pane, but could view them if you actually opened the message.   
Change the value line to the correct language:

'value' => 'en_US',

fixes the problem entirely.  I made this change YEARS ago and never had an 
issue with it.  Interesting to me was that as I upgrade to different versions 
of php, the amount of text I saw would change.  IMP always worked, which made 
me wonder what was wrong with DIMP.

As I find typical of this mailing list:  user configuration error.

Quoting BÉROUJON Laurent - CETE Lyon/DI/ET/PAMELA 
<[email protected]>:

>
> Le 19.11.2008 22:59, > Michael M Slusarz (par Internet, dépôt 
> [email protected]) a écrit  :
>> Quoting BÉROUJON Laurent - CETE Lyon/DI/ET/PAMELA 
>> <[email protected]>:
>>
>>> Hello,
>>>
>>> horde-webmail 1.2
>>> Those characters (éàèù...) are not displayed in dimp. The words 
>>> containing such characters are cut before the encoded characters.
>>> For example, "Boîte de réception" is displayed "Bo", "éléments 
>>> envoyés" is not displayed at all, ...
>>
>> This is exactly the problem discussed in dimp/docs/INSTALL.
>>
>> michael
>>
>
> You mean i should update my php / json ?
--
IMP mailing list - Join the hunt: http://horde.org/bounties/#imp
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: [email protected]

Reply via email to