Home | History | Annotate | Download | only in python2.7

Lines Matching refs:rcpttos

305     def process_message(self, peer, mailfrom, rcpttos, data):
314 rcpttos is a list of raw addresses the client wishes to deliver the
332 def process_message(self, peer, mailfrom, rcpttos, data):
346 def process_message(self, peer, mailfrom, rcpttos, data):
356 refused = self._deliver(mailfrom, rcpttos, data)
360 def _deliver(self, mailfrom, rcpttos, data):
367 refused = s.sendmail(mailfrom, rcpttos, data)
380 for r in rcpttos:
386 def process_message(self, peer, mailfrom, rcpttos, data):
395 for rcpt in rcpttos:
416 # Remove all list recipients from rcpttos and forward what we're not
420 rcpttos.remove(rcpt)
422 print >> DEBUGSTREAM, 'forwarding recips:', ' '.join(rcpttos)
423 if rcpttos:
424 refused = self._deliver(mailfrom, rcpttos, data)