/* Copyright (c) 2013-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "hash-method.h"
#include "message-header-hash.h"
unsigned int version,
{
if (version == 1) {
return;
}
/* - Dovecot IMAP replaces NULs with 0x80 character.
- Dovecot POP3 with outlook-no-nuls workaround replaces NULs
with 0x80 character.
- Zimbra replaces 8bit chars with '?' in header fetches,
but not body fetches.
- Yahoo replaces 8bit chars with '?' in partial header
fetches, but not POP3 TOP. UTF-8 character sequence writes only a
single '?'
So we'll just replace all control and 8bit chars with '?' and
remove any repeated '?', which hopefully will satisfy everybody.
Also:
- Zimbra removes trailing spaces and tabs from IMAP BODY[HEADER],
but not IMAP BODY[] or POP3 TOP. Just strip away all spaces with
version 3 and tabs also with version 4.
*/
switch (data[i]) {
case ' ':
if (version >= 3) {
/* strip away spaces */
start = i+1;
}
break;
case '\t':
if (version >= 4) {
/* strip away tabs */
start = i+1;
}
break;
case '\n':
break;
default:
/* remove repeated '?' */
}
start = i+1;
}
break;
}
}
}