diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2022-03-30 15:31:37 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2022-03-30 15:31:37 -0400 |
commit | 6f2aa2f449e272353fa95d9e1509c61a0a19aa0b (patch) | |
tree | 3aa8ad9b14872d5b626ba0cbeb472eb785cffc31 /man | |
parent | e7823338f0ed84c15c0e28e3ec4479d551a8eca9 (diff) | |
download | b4-6f2aa2f449e272353fa95d9e1509c61a0a19aa0b.tar.gz |
Add support for mailmap and excluding mail in b4-ty
With codeaurora.org accounts no longer accepting mail, add support to
exclude addresses when generating b4-ty mail. Additionally, support
mailmap replacements by running every address through
"git check-mailmap".
Requested-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Diffstat (limited to 'man')
-rw-r--r-- | man/b4.5 | 3 | ||||
-rw-r--r-- | man/b4.5.rst | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -468,6 +468,9 @@ Default configuration, with explanations: thanks\-am\-template = None # Used when preparing merge messages from cover letters. See shazam\-merge\-template.example shazam\-merge\-template = None + # Use to exclude certain mail addresses from ever being added to auto\-generated mail + # Separate multiple entries using comma (spaces are ignored), shell\-style globbing accepted + email\-exclude = *@codeaurora.org, example@example.com .ft P .fi .UNINDENT diff --git a/man/b4.5.rst b/man/b4.5.rst index 19e96af..217e145 100644 --- a/man/b4.5.rst +++ b/man/b4.5.rst @@ -320,6 +320,9 @@ Default configuration, with explanations:: thanks-am-template = None # Used when preparing merge messages from cover letters. See shazam-merge-template.example shazam-merge-template = None + # Use to exclude certain mail addresses from ever being added to auto-generated mail + # Separate multiple entries using comma (spaces are ignored), shell-style globbing accepted + email-exclude = *@codeaurora.org, example@example.com SUPPORT ------- |