Switch to unified view

a/src/internfile/mimehandler.cpp b/src/internfile/mimehandler.cpp
...
...
145
    stringtolower(lmime);
145
    stringtolower(lmime);
146
    if (cstr_textplain == lmime) {
146
    if (cstr_textplain == lmime) {
147
    LOGDEB2("mhFactory(" << mime << "): returning MimeHandlerText\n");
147
    LOGDEB2("mhFactory(" << mime << "): returning MimeHandlerText\n");
148
    MD5String("MimeHandlerText", id);
148
    MD5String("MimeHandlerText", id);
149
    return nobuild ? 0 : new MimeHandlerText(config, id);
149
    return nobuild ? 0 : new MimeHandlerText(config, id);
150
    } else if ("text/html" == lmime) {
150
    } else if (cstr_texthtml == lmime) {
151
    LOGDEB2("mhFactory(" << mime << "): returning MimeHandlerHtml\n");
151
    LOGDEB2("mhFactory(" << mime << "): returning MimeHandlerHtml\n");
152
    MD5String("MimeHandlerHtml", id);
152
    MD5String("MimeHandlerHtml", id);
153
    return nobuild ? 0 : new MimeHandlerHtml(config, id);
153
    return nobuild ? 0 : new MimeHandlerHtml(config, id);
154
    } else if ("text/x-mail" == lmime) {
154
    } else if ("text/x-mail" == lmime) {
155
    LOGDEB2("mhFactory(" << mime << "): returning MimeHandlerMbox\n");
155
    LOGDEB2("mhFactory(" << mime << "): returning MimeHandlerMbox\n");