diff options
Diffstat (limited to 'Mailman/Archiver/HyperArch.py')
| -rw-r--r-- | Mailman/Archiver/HyperArch.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py index 8c3da5198..7a5c47cd7 100644 --- a/Mailman/Archiver/HyperArch.py +++ b/Mailman/Archiver/HyperArch.py @@ -263,6 +263,8 @@ class Article(pipermail.Article): # Figure out the e-mail address and poster's name self.author, self.email=message.getaddr('From') self.email=pipermail.strip_separators(self.email) + if mm_cfg.ARCHIVER_OBSCURES_EMAILADDRS: + self.email = re.sub('@', ' at ', self.email) self.author=pipermail.strip_separators(self.author) if self.author=="": self.author=self.email |
