(self, domains)
| 68 | self.add(f"ServerAdmin mailto:{email}") |
| 69 | |
| 70 | def add_md(self, domains): |
| 71 | dlist = " ".join(domains) # without quotes |
| 72 | self.add(f"MDomain {dlist}\n") |
| 73 | |
| 74 | def start_md(self, domains): |
| 75 | dlist = " ".join([f"\"{d}\"" for d in domains]) # with quotes, #257 |