mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 10:28:09 +01:00
notmuch-reply: Add missing whitespace.
Some recently-added functions were to hard for me to read without the expected whitespace. Fix these.
This commit is contained in:
parent
9041c1389c
commit
9953e9a5a8
1 changed files with 10 additions and 1 deletions
|
@ -208,18 +208,26 @@ mailing_list_munged_reply_to (notmuch_message_t *message)
|
|||
|
||||
header = notmuch_message_get_header (message, "reply-to");
|
||||
list = internet_address_list_parse_string (header);
|
||||
|
||||
if (internet_address_list_length (list) != 1)
|
||||
return 0;
|
||||
|
||||
address = internet_address_list_get_address (list, 0);
|
||||
if (INTERNET_ADDRESS_IS_GROUP (address))
|
||||
return 0;
|
||||
|
||||
mailbox = INTERNET_ADDRESS_MAILBOX (address);
|
||||
addr = internet_address_mailbox_get_addr (mailbox);
|
||||
|
||||
/* Note that strcasestr() is a GNU extension, strstr() might be sufficient */
|
||||
if (strcasestr (notmuch_message_get_header (message, "to"), addr) == 0 ||
|
||||
strcasestr (notmuch_message_get_header (message, "cc"), addr) == 0)
|
||||
{
|
||||
return 1;
|
||||
return 0; }
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Augments the recipients of reply from the headers of message.
|
||||
*
|
||||
|
@ -271,6 +279,7 @@ add_recipients_from_message (GMimeMessage *reply,
|
|||
if (from_addr == NULL)
|
||||
from_addr = addr;
|
||||
}
|
||||
|
||||
return from_addr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue