This makes notmuch reply fail to add From: addresses to the list of
recipients.
Signed-off-by: Keith Packard <keithp@keithp.com>
recipients = notmuch_message_get_header (message,
reply_to_map[i].header);
recipients = notmuch_message_get_header (message,
reply_to_map[i].header);
- if (recipients == NULL && reply_to_map[i].fallback)
+ if ((recipients == NULL || recipients[0] == '\0') && reply_to_map[i].fallback)
recipients = notmuch_message_get_header (message,
reply_to_map[i].fallback);
recipients = notmuch_message_get_header (message,
reply_to_map[i].fallback);