SMTP 'expn' command -- expands a mailing list.
(self, address)
| 590 | vrfy = verify |
| 591 | |
| 592 | def expn(self, address): |
| 593 | """SMTP 'expn' command -- expands a mailing list.""" |
| 594 | self.putcmd("expn", _addr_only(address)) |
| 595 | return self.getreply() |
| 596 | |
| 597 | # some useful methods |
| 598 |
nothing calls this directly
no test coverage detected