]> code.citadel.org Git - citadel.git/blobdiff - webcit/html2html.c
When converting <A> tags, don't omit the change to
[citadel.git] / webcit / html2html.c
index 8799aaa2a3d6a2d85a61b511ebc7b7927338abc0..72356c700bf539566f5baee2cd92b3c74e7372a9 100644 (file)
@@ -59,6 +59,18 @@ void extract_charset_from_meta(char *charset, char *meta_http_equiv, char *meta_
        striplt(buf);
        if (!strncasecmp(buf, "charset=", 8)) {
                strcpy(charset, &buf[8]);
+
+               /*
+                * The brain-damaged webmail program in Microsoft Exchange declares
+                * a charset of "unicode" when they really mean "UTF-8".  GNU iconv
+                * treats "unicode" as an alias for "UTF-16" so we have to manually
+                * fix this here, otherwise messages generated in Exchange webmail
+                * show up as a big pile of weird characters.
+                */
+               if (!strcasecmp(charset, "unicode")) {
+                       strcpy(charset, "UTF-8");
+               }
+
        }
 }
 
@@ -374,17 +386,17 @@ void output_html(char *supplied_charset, int treat_as_wiki) {
                                }
                }
                else {
-                       /**
-                        * We need to know when we're inside a tag,
-                        * so we don't turn things that look like URL's into
-                        * links, when they're already links - or image sources.
-                        */
-                       if (*ptr == '<') ++brak;
-                       if (*ptr == '>') --brak;
-                       if (!strncasecmp(ptr, "</A>", 3)) --alevel;
                        converted_msg[output_length] = *ptr++;
                        converted_msg[++output_length] = 0;
                }
+               /**
+                * We need to know when we're inside a tag,
+                * so we don't turn things that look like URL's into
+                * links, when they're already links - or image sources.
+                */
+               if (*ptr == '<') ++brak;
+               if (*ptr == '>') --brak;
+               if (!strncasecmp(ptr, "</A>", 3)) --alevel;
        }
 
        /**     uncomment these two lines to override conversion        */