Checksums: Use SHA1 like in >=2.2

This commit is contained in:
Markus Goetz 2016-05-20 16:31:47 +02:00
parent 9aed8dbce8
commit 46e4ec3183

View File

@ -222,8 +222,9 @@ void PropagateUploadFileQNAM::slotComputeContentChecksum()
QByteArray contentChecksumType;
// We currently only do content checksums for the particular .eml case
// This should be done more generally in the future!
if (filePath.endsWith(QLatin1String(".eml"), Qt::CaseInsensitive)) {
contentChecksumType = "MD5";
if (filePath.endsWith(QLatin1String(".eml"), Qt::CaseInsensitive)
|| filePath.endsWith(QLatin1String(".msg"), Qt::CaseInsensitive)) {
contentChecksumType = "SHA1";
}
// Maybe the discovery already computed the checksum?