mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 12:28:09 +01:00
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:
parent
5d0a01dceb
commit
52292c5485
1 changed files with 1 additions and 1 deletions
|
@ -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. */
|
||||
|
|
Loading…
Reference in a new issue