Set the message's "info" string.
(self, info)
| 1664 | return self._info |
| 1665 | |
| 1666 | def set_info(self, info): |
| 1667 | """Set the message's "info" string.""" |
| 1668 | if isinstance(info, str): |
| 1669 | self._info = info |
| 1670 | else: |
| 1671 | raise TypeError('info must be a string: %s' % type(info)) |
| 1672 | |
| 1673 | def _explain_to(self, message): |
| 1674 | """Copy Maildir-specific state to message insofar as possible.""" |
no outgoing calls