Lines Matching full:email

66   """Prompts the user for their email address and returns it.
68 The last used email address is saved to a file and offered up as a suggestion
70 used email address is used. If the user enters a new address, it is saved
84 email = raw_input(prompt + ": ").strip()
85 if email:
88 last_email_file.write(email)
93 email = last_email
94 return email
134 (email, password) tuple when called. Will be called if authentication
172 def _GetAuthToken(self, email, password): argument
176 email: The user's email address
193 "Email": email,
412 group.add_option("-e", "--email", action="store", dest="email",
413 metavar="EMAIL", default=None,
433 help="Add reviewers (comma separated email addresses).")
436 help="Add CC (comma separated email addresses).")
455 help="Send notification email to reviewers.")
469 email = options.email
470 if email is None:
471 email = GetEmail("Email (login for uploading to %s)" % options.server)
472 password = getpass.getpass("Password for %s: " % email)
473 return (email, password)
478 email = options.email
479 if email is None:
480 email = "test@example.com"
481 logging.info("Using debug user %s. Override with --email" % email)
484 lambda: (email, "password"),
487 'dev_appserver_login="%s:False"' % email},
689 if options.email:
690 form_fields.append(("user", options.email))
1303 if options.email:
1304 form_fields.append(("user", options.email))
1308 ErrorExit("Invalid email address: %s" % reviewer)
1313 ErrorExit("Invalid email address: %s" % cc)
1334 # If we're uploading base files, don't send the email before the uploads, so