MCPcopy Index your code
hub / github.com/RustPython/RustPython / smtp_VRFY

Method smtp_VRFY

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_getaddrMethod · 0.95
pushMethod · 0.95

Tested by

no test coverage detected