Aside of Signed-off-by and Acked-by fields, Cc fields may occur in the message footer; include them in the auto-composed mail Cc list. Signed-off-by: Petr Baudis <pasky@xxxxxxx> --- stgit/commands/mail.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stgit/commands/mail.py b/stgit/commands/mail.py index 151a408..97deb3e 100644 --- a/stgit/commands/mail.py +++ b/stgit/commands/mail.py @@ -223,7 +223,7 @@ def __get_signers_list(msg): """ addr_list = [] - r = re.compile('^(signed-off-by|acked-by):\s+(.+)$', re.I) + r = re.compile('^(signed-off-by|acked-by|cc):\s+(.+)$', re.I) for line in msg.split('\n'): m = r.match(line) if m: - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html