mail: add some commonly used tags to --auto
authorDan Williams <dan.j.williams@intel.com>
Wed, 3 Dec 2008 21:48:17 +0000 (21:48 +0000)
committerCatalin Marinas <catalin.marinas@gmail.com>
Wed, 3 Dec 2008 21:48:17 +0000 (21:48 +0000)
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
stgit/commands/mail.py

index 72d0133..2dd88c3 100644 (file)
@@ -283,8 +283,17 @@ def __get_signers_list(msg):
     acked-by lines in the message.
     """
     addr_list = []
-
-    r = re.compile('^(signed-off-by|acked-by|cc):\s+(.+)$', re.I)
+    tags = '%s|%s|%s|%s|%s|%s|%s' % (
+            'signed-off-by',
+            'acked-by',
+            'cc',
+            'reviewed-by',
+            'reported-by',
+            'tested-by',
+            'reported-and-tested-by')
+    regex = '^(%s):\s+(.+)$' % tags
+
+    r = re.compile(regex, re.I)
     for line in msg.split('\n'):
         m = r.match(line)
         if m: