mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
notmuch-reply: Fix some whitespace issues.
No actual code change here. Just whitespace style, (mostly just my preferred space before a left parenthesis, and a space after a comma).
This commit is contained in:
parent
4fd9ea05e8
commit
3e216ba60d
1 changed files with 14 additions and 10 deletions
|
@ -282,7 +282,6 @@ add_recipients_from_message (GMimeMessage *reply,
|
|||
return from_addr;
|
||||
}
|
||||
|
||||
|
||||
static const char *
|
||||
guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message)
|
||||
{
|
||||
|
@ -305,6 +304,7 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
|
|||
mta = strdup (by+4);
|
||||
if (mta == NULL)
|
||||
return NULL;
|
||||
|
||||
/* After the MTA comes its IP address (or HELO response) in parenthesis.
|
||||
* so let's terminate the string there
|
||||
*/
|
||||
|
@ -313,6 +313,7 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
|
|||
return NULL;
|
||||
}
|
||||
*ptr = '\0';
|
||||
|
||||
/* Now extract the last two components of the MTA host name
|
||||
* as domain and tld
|
||||
*/
|
||||
|
@ -323,6 +324,7 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
|
|||
domain = tld;
|
||||
tld = ptr;
|
||||
}
|
||||
|
||||
if (domain) {
|
||||
/* recombine domain and tld and look for it among the configured
|
||||
* email addresses
|
||||
|
@ -340,8 +342,10 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
|
|||
return other[i];
|
||||
}
|
||||
}
|
||||
|
||||
free (mta);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue