Lines Matching full:email

290     """Build a list of email addresses based on an input list.
292 Takes a list of email addresses and aliases, and turns this into a list
293 of only email address, by resolving any aliases that are present.
295 If the tag is given, then each email address is prepended with this
297 command line parameter) then the email address is quoted.
300 in_list: List of aliases/email addresses
307 List of email addresses
332 return ['%s %s%s%s' % (tag, quote, email, quote) for email in result]
337 """Email a patch series.
347 self_only: True to just email to yourself as a test
350 thread: True to add --thread to git send-email (make
372 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
376 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
381 'git send-email --annotate --to "this-is-me@me.com" --cc-cmd "./patman \
385 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
408 cmd = ['git', 'send-email', '--annotate']
429 """If an email address is an alias, look it up and return the full name
434 lookup_name: Alias or email address to look up
441 list containing a list of email addresses
470 OSError: Recursive email alias at 'other'
476 Recursive email alias at 'other'
477 Recursive email alias at 'john'
478 Recursive email alias at 'mary'
484 if '@' in lookup_name: # Perhaps a real email address
492 msg = "Recursive email alias at '%s'" % lookup_name
552 """Gets the user.email from the global .gitconfig file.
555 User's email found in .gitconfig file, or None if none
557 uemail = command.OutputOneLine('git', 'config', '--global', 'user.email')