(self, *args, **kwargs)
| 726 | |
| 727 | class PureProxy(SMTPServer): |
| 728 | def __init__(self, *args, **kwargs): |
| 729 | if 'enable_SMTPUTF8' in kwargs and kwargs['enable_SMTPUTF8']: |
| 730 | raise ValueError("PureProxy does not support SMTPUTF8.") |
| 731 | super(PureProxy, self).__init__(*args, **kwargs) |
| 732 | |
| 733 | def process_message(self, peer, mailfrom, rcpttos, data): |
| 734 | lines = data.split('\n') |