MCPcopy Index your code
hub / github.com/python/cpython / smtp_VRFY

Method smtp_VRFY

Lib/test/support/smtpd.py:493–502  ·  view source on GitHub ↗
(self, arg)

Source from the content-addressed store, hash-verified

491 'RSET NOOP QUIT VRFY')
492
493 def smtp_VRFY(self, arg):
494 if arg:
495 address, params = self._getaddr(arg)
496 if address:
497 self.push('252 Cannot VRFY user, but will accept message '
498 'and attempt delivery')
499 else:
500 self.push('502 Could not VRFY %s' % arg)
501 else:
502 self.push('501 Syntax: VRFY <address>')
503
504 def smtp_MAIL(self, arg):
505 if not self.seen_greeting:

Callers

nothing calls this directly

Calls 2

_getaddrMethod · 0.95
pushMethod · 0.95

Tested by

no test coverage detected