Andrew Kirilenko ΠΙΣΑΜ(Α): > > Hello! > > I've problem with the russian from field, using cyrus imapd. > Everything is OK with russian subject, body etc, but russian from > converts into the "XXXXX XXXXX" :( > > Any suggestions? I have solved this problem by means of this patch.
diff -ruN cyrus-imapd-2.0.15.orig/imap/message.c cyrus-imapd-2.0.15/imap/message.c --- cyrus-imapd-2.0.15.orig/imap/message.c Wed Dec 27 05:35:41 2000 +++ cyrus-imapd-2.0.15/imap/message.c Mon Jul 9 13:18:44 2001 @@ -259,17 +259,17 @@ else { sawcr = 0; blankline = 0; - if (inheader && *p >= 0x80) { +/* if (inheader && *p >= 0x80) { if (reject8bit) { /* We have been configured to reject all mail of this - form. */ + form. if (!r) r = IMAP_MESSAGE_CONTAINS8BIT; } else { /* We have been configured to munge all mail of this - form. */ + form. *p = 'X'; } - } + } */ } }