diff options
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 7e486689ef..fbfbb3e5be 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -2842,6 +2842,32 @@ header_decode_date(const char *in, int *saveoffset) return t; } +char * +header_location_decode(const char *in) +{ + const char *p; + + /* Sigh. RFC2557 says: + * content-location = "Content-Location:" [CFWS] URI [CFWS] + * where URI is restricted to the syntax for URLs as + * defined in Uniform Resource Locators [URL] until + * IETF specifies other kinds of URIs. + * + * But Netscape puts quotes around the URI when sending web + * pages. + */ + + header_decode_lwsp(&in); + if (*in == '"') + return header_decode_quoted_string(&in); + else { + for (p = in; *p && !is_lwsp(*p); p++) + ; + return g_strndup(in, p - in); + } +} + + /* extra rfc checks */ #define CHECKS |