(self, *args, **kwargs)
| 737 | |
| 738 | class PureProxy(SMTPServer): |
| 739 | def __init__(self, *args, **kwargs): |
| 740 | if 'enable_SMTPUTF8' in kwargs and kwargs['enable_SMTPUTF8']: |
| 741 | raise ValueError("PureProxy does not support SMTPUTF8.") |
| 742 | super(PureProxy, self).__init__(*args, **kwargs) |
| 743 | |
| 744 | def process_message(self, peer, mailfrom, rcpttos, data): |
| 745 | lines = data.split('\n') |