add_message: Properly handle missing Message-ID once again.

There's been a fair amount of fallout from when we changed
message_file_get_header from returning NULL to returning "" for
missing headers. This is yet more fallout from that, (where we were
accepting an empty message-ID rather than generating one like we want
to).
This commit is contained in:
Carl Worth 2009-11-20 19:31:00 +01:00
parent 5d0a01dceb
commit 52292c5485

View file

@ -908,7 +908,7 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
* is to find a message ID (or else create one ourselves). */
header = notmuch_message_file_get_header (message_file, "message-id");
if (header) {
if (header && *header != '\0') {
message_id = _parse_message_id (message_file, header, NULL);
/* So the header value isn't RFC-compliant, but it's
* better than no message-id at all. */