Lines Matching full:email
289 """Build a list of email addresses based on an input list.
291 Takes a list of email addresses and aliases, and turns this into a list
292 of only email address, by resolving any aliases that are present.
294 If the tag is given, then each email address is prepended with this
296 command line parameter) then the email address is quoted.
299 in_list: List of aliases/email addresses
306 List of email addresses
331 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
373 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
377 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
382 'git send-email --annotate --to "this-is-me@me.com" --cc-cmd "./patman \
386 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
409 cmd = ['git', 'send-email', '--annotate']
432 """If an email address is an alias, look it up and return the full name
437 lookup_name: Alias or email address to look up
444 list containing a list of email addresses
473 OSError: Recursive email alias at 'other'
479 Recursive email alias at 'other'
480 Recursive email alias at 'john'
481 Recursive email alias at 'mary'
487 if '@' in lookup_name: # Perhaps a real email address
495 msg = "Recursive email alias at '%s'" % lookup_name
555 """Gets the user.email from the global .gitconfig file.
558 User's email found in .gitconfig file, or None if none
560 uemail = command.OutputOneLine('git', 'config', '--global', 'user.email')