From 420347a05fb2dfeed63ed1e9c41f5d87128eeca7 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Sun, 1 Nov 2009 15:39:13 +0100 Subject: Removed smtp auth as long as configuration is world readable --- blogthon.cgi | 8 -------- configuration | 2 -- 2 files changed, 10 deletions(-) diff --git a/blogthon.cgi b/blogthon.cgi index f34b889..a9bafa3 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -129,12 +129,6 @@ except: errorpage("mail_to") try: smtp_host = configuration.get('smtp', 'smtp_host') except: errorpage("smtp_host") -try: smtp_user = configuration.get('smtp', 'smtp_user') -except: errorpage("smtp_user") - -try: smtp_pass = configuration.get('smtp', 'smtp_pass') -except: errorpage("smtp_pass") - # Read POST Variables action = cgi.FieldStorage() month_display = action.getvalue('m') @@ -201,8 +195,6 @@ if cname and ctext and ctitle: if new_comment_mail: msg = 'From: Blogthon\nTo: ' + mail_to + '\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) - if smtp_user != '' and smtp_pass != '': - smtp.login(smtp_user, smtp_pass) smtp.sendmail(blog_title, mail_to, msg) smtp.quit() except: diff --git a/configuration b/configuration index 5e0f453..c7b3a2a 100644 --- a/configuration +++ b/configuration @@ -21,5 +21,3 @@ newest_first: True new_comment_mail: False mail_to: please@change.me!!! smtp_host: localhost -smtp_user: -smtp_pass: -- cgit v1.2.3