(self, blob)
| 79 | self.ssl_details = util.fetch_ssl_details(paths) |
| 80 | |
| 81 | def process(self, blob): |
| 82 | accumulating_msg = MIMEMultipart() |
| 83 | if isinstance(blob, list): |
| 84 | for b in blob: |
| 85 | self._process_msg(convert_string(b), accumulating_msg) |
| 86 | else: |
| 87 | self._process_msg(convert_string(blob), accumulating_msg) |
| 88 | return accumulating_msg |
| 89 | |
| 90 | def _process_msg(self, base_msg, append_msg): |
| 91 | def find_ctype(payload): |