84
86
"""A fake smtp server that implements login by accepting anybody."""
86
88
def login(self, user, password):
90
92
class TestSMTPConnection(tests.TestCaseInTempDir):
92
94
def get_connection(self, text, smtp_factory=None):
94
98
return smtp_connection.SMTPConnection(my_config,
95
99
_smtp_factory=smtp_factory)