diff options
| -rw-r--r-- | Mailman/Handlers/Decorate.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mailman/Handlers/Decorate.py b/Mailman/Handlers/Decorate.py index 6192b0353..b953def7a 100644 --- a/Mailman/Handlers/Decorate.py +++ b/Mailman/Handlers/Decorate.py @@ -26,6 +26,9 @@ from Mailman.Logging.Syslog import syslog def process(mlist, msg, msgdata): + if msgdata.get('isdigest'): + # Digests already have their own header and footers attached. + return d = Utils.SafeDict(mlist.__dict__) d['cgiext'] = mm_cfg.CGIEXT # interpolate into the header |
