X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/06848faba60e1c4e637b15b608e5bd94989c4196..681f805ef4688c7ea450f5e72a15dad818809734:/stgit/commands/common.py diff --git a/stgit/commands/common.py b/stgit/commands/common.py index 466f584..432edce 100644 --- a/stgit/commands/common.py +++ b/stgit/commands/common.py @@ -303,6 +303,25 @@ def name_email_date(address): return str_list[0] +def address_or_alias(addr_str): + """Return the address if it contains an e-mail address or look up + the aliases in the config files. + """ + def __address_or_alias(addr): + if addr.find('@') >= 0: + # it's an e-mail address + return addr + alias = config.get('mail.alias.'+addr) + if alias: + # it's an alias + return alias + + raise CmdException, 'unknown e-mail alias: %s' % addr + + addr_list = [__address_or_alias(addr.strip()) + for addr in addr_str.split(',')] + return ', '.join(addr_list) + def patch_name_from_msg(msg): """Return a string to be used as a patch name. This is generated from the first 30 characters of the top line of the string passed