From 8d77719ceec40ca02b45a571f6286ce7c65c77e5 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Fri, 24 Jul 2009 14:33:21 +0200 Subject: [PATCH] Link to entry in new-comment-mail parsed through re.sub --- blogthon.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blogthon.cgi b/blogthon.cgi index bbb0131..6e32476 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -198,7 +198,7 @@ if cname and ctext and ctitle: content.close() # Send mail? if new_comment_mail: - msg = 'From: Blogthon\nSubject: New comment on ' + blog_title + '\n\nSomeone wrote a comment to this entry: ' + blog_url + '?p=' + ctitle + msg = 'From: Blogthon\nSubject: New comment on ' + blog_title + '\n\nSomeone wrote a comment to this entry: ' + blog_url + '?p=' + re.sub(' ', '-', ctitle) smtp = smtplib.SMTP(smtp_host) smtp.sendmail(blog_title, mail_to, msg) smtp.quit()