/external/python/cpython2/Lib/ |
D | smtpd.py | 305 def process_message(self, peer, mailfrom, rcpttos, data): argument 332 def process_message(self, peer, mailfrom, rcpttos, data): argument 346 def process_message(self, peer, mailfrom, rcpttos, data): argument 356 refused = self._deliver(mailfrom, rcpttos, data) 360 def _deliver(self, mailfrom, rcpttos, data): argument 367 refused = s.sendmail(mailfrom, rcpttos, data) 380 for r in rcpttos: 386 def process_message(self, peer, mailfrom, rcpttos, data): argument 395 for rcpt in rcpttos: 420 rcpttos.remove(rcpt) [all …]
|
/external/python/cpython3/Lib/ |
D | smtpd.py | 176 self.rcpttos = [] 248 return self.rcpttos 253 self.rcpttos = value 379 args = (self.peer, self.mailfrom, self.rcpttos, self.received_data) 598 self.rcpttos.append(address) 599 print('recips:', self.rcpttos, file=DEBUGSTREAM) 613 if not self.rcpttos: 671 def process_message(self, peer, mailfrom, rcpttos, data, **kwargs): argument 724 def process_message(self, peer, mailfrom, rcpttos, data, **kwargs): argument 741 def process_message(self, peer, mailfrom, rcpttos, data): argument [all …]
|
/external/python/cpython2/Doc/library/ |
D | smtpd.rst | 32 .. method:: process_message(peer, mailfrom, rcpttos, data) 38 originator, *rcpttos* are the envelope recipients and *data* is a string
|
/external/python/cpython3/Doc/library/ |
D | smtpd.rst | 69 .. method:: process_message(peer, mailfrom, rcpttos, data, **kwargs) 75 originator, *rcpttos* are the envelope recipients and *data* is a string 229 .. attribute:: rcpttos 268 the :attr:`rcpttos` list. 269 RSET Resets the :attr:`mailfrom`, :attr:`rcpttos`, and
|
/external/python/cpython3/Lib/test/ |
D | test_smtplib.py | 864 def process_message(self, peer, mailfrom, rcpttos, data): argument 866 self._addresses['tos'] = rcpttos 1150 def process_message(self, peer, mailfrom, rcpttos, data, mail_options=None, argument 1154 self.last_rcpttos = rcpttos
|
D | test_smtpd.py | 19 def process_message(self, peer, mailfrom, rcpttos, data, **kw): argument 20 self.messages.append((peer, mailfrom, rcpttos, data))
|
D | test_logging.py | 814 def process_message(self, peer, mailfrom, rcpttos, data): argument 824 self._handler(peer, mailfrom, rcpttos, data) 1061 peer, mailfrom, rcpttos, data = self.messages[0] 1063 self.assertEqual(rcpttos, ['you'])
|
/external/python/cpython2/Lib/test/ |
D | test_smtplib.py | 412 def process_message(self, peer, mailfrom, rcpttos, data): argument
|