mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +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;
|
return from_addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static const char *
|
static const char *
|
||||||
guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message)
|
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);
|
mta = strdup (by+4);
|
||||||
if (mta == NULL)
|
if (mta == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
/* After the MTA comes its IP address (or HELO response) in parenthesis.
|
/* After the MTA comes its IP address (or HELO response) in parenthesis.
|
||||||
* so let's terminate the string there
|
* 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;
|
return NULL;
|
||||||
}
|
}
|
||||||
*ptr = '\0';
|
*ptr = '\0';
|
||||||
|
|
||||||
/* Now extract the last two components of the MTA host name
|
/* Now extract the last two components of the MTA host name
|
||||||
* as domain and tld
|
* as domain and tld
|
||||||
*/
|
*/
|
||||||
|
@ -323,6 +324,7 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
|
||||||
domain = tld;
|
domain = tld;
|
||||||
tld = ptr;
|
tld = ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (domain) {
|
if (domain) {
|
||||||
/* recombine domain and tld and look for it among the configured
|
/* recombine domain and tld and look for it among the configured
|
||||||
* email addresses
|
* email addresses
|
||||||
|
@ -340,8 +342,10 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
|
||||||
return other[i];
|
return other[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
free (mta);
|
free (mta);
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue