'''Short description''' Please add an "{{{Auto-Submitted: auto-generated}}}" header to mails generated by moinmoin as per RFC 3834 [[http://tools.ietf.org/html/rfc3834#section-5|section 5]] This feature request was initially posted on Ubuntu's launchpad. * https://bugs.launchpad.net/ubuntu/+source/moin/+bug/245485 Even though the patch is outdated, it should be trivial to adjust it (see below, untested) ~-{{{#!python --- MoinMoin/mail/sendmail-orig.py 2009-06-21 23:44:40.000000000 +0200 +++ MoinMoin/mail/sendmail.py 2009-06-21 23:45:18.000000000 +0200 @@ -106,6 +106,7 @@ msg['Date'] = formatdate() msg['Message-ID'] = make_msgid() msg['Subject'] = Header(subject, charset) + msg['Auto-Submitted'] = 'auto-generated' if cfg.mail_sendmail: # Set the BCC. This will be stripped later by sendmail. }}}-~ Implemented by: http://hg.moinmo.in/moin/1.8/rev/6fd215462090 ---- CategoryFeatureImplemented