utf-7

IMAP folder path encoding (IMAP UTF-7) for .NET?

The IMAP specification (RFC 2060, 5.1.3. Mailbox International Naming Convention) describes how to handle non-ASCII characters in folder names. It defines a modified UTF-7 encoding: By convention, international mailbox names are specified using a modified version of the UTF-7 encoding described in [UTF-7]. The purpose of thes...

Non-English IMAP folder names and Outlook

I am using Courier IMAP server for an application which lets access to the mailbox through various clients. I have a problem when someone is using Outlook/Outlook Express, and creates or reads a mailbox folder with non-english characters. I have a web based application, which does a proper encoding of these folder names using UTF-7 as de...

Adding "charset" to all ASP.NET MVC HTTP responses

Is there an easy way to specify all "normal" views is an ASP.NET MVC app are to have charset=utf-8 appended to the Content-Type? View() lacks an override that allows you to specify the Content-Type, and ActionResult and friends don't seem to expose anything, either. The motivation is obviously to work around Internet Explorer guessing ...