HomeSort by relevance Sort by last modified time
    Searched refs:rcpt (Results 1 - 25 of 30) sorted by null

1 2

  /external/curl/docs/cmdline-opts/
mail-from.d 6 See-also: mail-rcpt mail-auth
mail-auth.d 6 See-also: mail-rcpt mail-from
mail-rcpt.d 1 Long: mail-rcpt
  /external/curl/lib/
smtp.h 43 SMTP_RCPT, /* RCPT TO */
57 struct curl_slist *rcpt; /* Recipient list */ member in struct:SMTP
smtp.c 284 "RCPT",
484 if(smtp->rcpt)
488 smtp->rcpt->data);
613 * Sends a RCPT TO command for a given recipient as part of the message upload
622 /* Send the RCPT TO command */
623 if(smtp->rcpt->data[0] == '<')
624 result = Curl_pp_sendf(&conn->proto.smtpc.pp, "RCPT TO:%s",
625 smtp->rcpt->data);
627 result = Curl_pp_sendf(&conn->proto.smtpc.pp, "RCPT TO:<%s>",
628 smtp->rcpt->data)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
smtpd.py 241 print >> DEBUGSTREAM, '===> RCPT', arg
247 self.push('501 Syntax: RCPT TO: <address>')
266 self.push('503 Error: need RCPT command')
395 for rcpt in rcpttos:
396 local = rcpt.lower().split('@')[0]
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
420 rcpttos.remove(rcpt)
438 for rcpt, listname, command in listnames:
439 print >> DEBUGSTREAM, 'sending message to', rcpt
    [all...]
smtplib.py 11 extensions are NOT the same thing as the option keywords for the RCPT
21 HELO EHLO MAIL RCPT DATA
38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
465 def rcpt(self, recip, options=[]): member in class:SMTP
466 """SMTP 'rcpt' command -- indicates 1 recipient for this mail."""
470 self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist))
655 all the rcpt commands.
718 (code, resp) = self.rcpt(each, rcpt_options)
  /external/python/cpython2/Lib/
smtpd.py 241 print >> DEBUGSTREAM, '===> RCPT', arg
247 self.push('501 Syntax: RCPT TO: <address>')
266 self.push('503 Error: need RCPT command')
395 for rcpt in rcpttos:
396 local = rcpt.lower().split('@')[0]
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
420 rcpttos.remove(rcpt)
438 for rcpt, listname, command in listnames:
439 print >> DEBUGSTREAM, 'sending message to', rcpt
    [all...]
smtplib.py 11 extensions are NOT the same thing as the option keywords for the RCPT
21 HELO EHLO MAIL RCPT DATA
38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
483 def rcpt(self, recip, options=[]): member in class:SMTP
484 """SMTP 'rcpt' command -- indicates 1 recipient for this mail."""
488 self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist))
678 all the rcpt commands.
741 (code, resp) = self.rcpt(each, rcpt_options)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
smtpd.py 241 print >> DEBUGSTREAM, '===> RCPT', arg
247 self.push('501 Syntax: RCPT TO: <address>')
266 self.push('503 Error: need RCPT command')
395 for rcpt in rcpttos:
396 local = rcpt.lower().split('@')[0]
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
420 rcpttos.remove(rcpt)
438 for rcpt, listname, command in listnames:
439 print >> DEBUGSTREAM, 'sending message to', rcpt
    [all...]
smtplib.py 11 extensions are NOT the same thing as the option keywords for the RCPT
21 HELO EHLO MAIL RCPT DATA
38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
475 def rcpt(self, recip, options=[]): member in class:SMTP
476 """SMTP 'rcpt' command -- indicates 1 recipient for this mail."""
480 self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist))
665 all the rcpt commands.
728 (code, resp) = self.rcpt(each, rcpt_options)
  /prebuilts/gdb/linux-x86/lib/python2.7/
smtpd.py 241 print >> DEBUGSTREAM, '===> RCPT', arg
247 self.push('501 Syntax: RCPT TO: <address>')
266 self.push('503 Error: need RCPT command')
395 for rcpt in rcpttos:
396 local = rcpt.lower().split('@')[0]
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
420 rcpttos.remove(rcpt)
438 for rcpt, listname, command in listnames:
439 print >> DEBUGSTREAM, 'sending message to', rcpt
    [all...]
smtplib.py 11 extensions are NOT the same thing as the option keywords for the RCPT
21 HELO EHLO MAIL RCPT DATA
38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
475 def rcpt(self, recip, options=[]): member in class:SMTP
476 """SMTP 'rcpt' command -- indicates 1 recipient for this mail."""
480 self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist))
665 all the rcpt commands.
728 (code, resp) = self.rcpt(each, rcpt_options)
  /prebuilts/python/darwin-x86/2.7.5/bin/
smtpd.py 241 print >> DEBUGSTREAM, '===> RCPT', arg
247 self.push('501 Syntax: RCPT TO: <address>')
266 self.push('503 Error: need RCPT command')
395 for rcpt in rcpttos:
396 local = rcpt.lower().split('@')[0]
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
420 rcpttos.remove(rcpt)
438 for rcpt, listname, command in listnames:
439 print >> DEBUGSTREAM, 'sending message to', rcpt
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtpd.py 241 print >> DEBUGSTREAM, '===> RCPT', arg
247 self.push('501 Syntax: RCPT TO: <address>')
266 self.push('503 Error: need RCPT command')
395 for rcpt in rcpttos:
396 local = rcpt.lower().split('@')[0]
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
420 rcpttos.remove(rcpt)
438 for rcpt, listname, command in listnames:
439 print >> DEBUGSTREAM, 'sending message to', rcpt
    [all...]
smtplib.py 11 extensions are NOT the same thing as the option keywords for the RCPT
21 HELO EHLO MAIL RCPT DATA
38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
475 def rcpt(self, recip, options=[]): member in class:SMTP
476 """SMTP 'rcpt' command -- indicates 1 recipient for this mail."""
480 self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist))
665 all the rcpt commands.
728 (code, resp) = self.rcpt(each, rcpt_options)
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 241 print >> DEBUGSTREAM, '===> RCPT', arg
247 self.push('501 Syntax: RCPT TO: <address>')
266 self.push('503 Error: need RCPT command')
395 for rcpt in rcpttos:
396 local = rcpt.lower().split('@')[0]
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
420 rcpttos.remove(rcpt)
438 for rcpt, listname, command in listnames:
439 print >> DEBUGSTREAM, 'sending message to', rcpt
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtpd.py 241 print >> DEBUGSTREAM, '===> RCPT', arg
247 self.push('501 Syntax: RCPT TO: <address>')
266 self.push('503 Error: need RCPT command')
395 for rcpt in rcpttos:
396 local = rcpt.lower().split('@')[0]
415 listnames.append((rcpt, listname, command))
419 for rcpt, listname, command in listnames:
420 rcpttos.remove(rcpt)
438 for rcpt, listname, command in listnames:
439 print >> DEBUGSTREAM, 'sending message to', rcpt
    [all...]
smtplib.py 11 extensions are NOT the same thing as the option keywords for the RCPT
21 HELO EHLO MAIL RCPT DATA
38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
475 def rcpt(self, recip, options=[]): member in class:SMTP
476 """SMTP 'rcpt' command -- indicates 1 recipient for this mail."""
480 self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist))
665 all the rcpt commands.
728 (code, resp) = self.rcpt(each, rcpt_options)
  /external/python/cpython3/Lib/
smtpd.py 480 elif lc_arg == 'RCPT':
481 msg = '250 Syntax: RCPT TO: <address>'
496 self.push('501 Supported commands: EHLO HELO MAIL RCPT '
499 self.push('250 Supported commands: EHLO HELO MAIL RCPT DATA '
571 print('===> RCPT', arg, file=DEBUGSTREAM)
575 syntaxerr = '501 Syntax: RCPT TO: <address>'
596 self.push('555 RCPT TO parameters not recognized or not implemented')
614 self.push('503 Error: need RCPT command')
695 'rcpt_options': same, for the rcpt command.
730 print('rcpt options: %s\n' % kwargs['rcpt_options']
    [all...]
smtplib.py 11 extensions are NOT the same thing as the option keywords for the RCPT
21 HELO EHLO MAIL RCPT DATA
38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
536 def rcpt(self, recip, options=[]): member in class:SMTP
537 """SMTP 'rcpt' command -- indicates 1 recipient for this mail."""
541 self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist))
799 all the rcpt commands.
    [all...]
  /external/python/cpython3/Lib/test/
test_smtplib.py 304 b'RCPT DATA RSET NOOP QUIT VRFY')
    [all...]
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
ant-1.8.0.jar 

Completed in 768 milliseconds

1 2