commit ecaea9ab16bd371e9b2a66794eef01fd287bd2de Author: Damian Johnson atagar@torproject.org Date: Wed Oct 7 08:01:42 2015 -0700
Provide a '[DocTor]' prefix for all emails
Request from dgoulet to make the emails easier to filter. --- util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util.py b/util.py index 9440d4c..7d5878f 100644 --- a/util.py +++ b/util.py @@ -89,7 +89,7 @@ def send(subject, body, to = TO_ADDRESSES, cc = None, bcc = None): """
msg = MIMEMultipart('alternative') - msg['Subject'] = subject + msg['Subject'] = '[DocTor] ' + subject msg['From'] = FROM_ADDRESS msg['To'] = ','.join(to)
tor-commits@lists.torproject.org