Home
last modified time | relevance | path

Searched refs:rcpttos (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/
Dsmtpd.py305 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/
Dsmtpd.py176 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/
Dsmtpd.rst32 .. method:: process_message(peer, mailfrom, rcpttos, data)
38 originator, *rcpttos* are the envelope recipients and *data* is a string
/external/python/cpython3/Doc/library/
Dsmtpd.rst69 .. 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/
Dtest_smtplib.py864 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
Dtest_smtpd.py19 def process_message(self, peer, mailfrom, rcpttos, data, **kw): argument
20 self.messages.append((peer, mailfrom, rcpttos, data))
Dtest_logging.py814 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/
Dtest_smtplib.py412 def process_message(self, peer, mailfrom, rcpttos, data): argument