diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-11-01 15:39:13 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-11-01 15:39:13 +0100 |
commit | 420347a05fb2dfeed63ed1e9c41f5d87128eeca7 (patch) | |
tree | a1e0a19e094fcfa5e54ca92b32c76f9006c450c1 | |
parent | 50f6f862f68aa8ac661327745c0291b162824f64 (diff) |
Removed smtp auth as long as configuration is world readable
Diffstat (limited to '')
-rwxr-xr-x | blogthon.cgi | 8 | ||||
-rw-r--r-- | configuration | 2 |
2 files changed, 0 insertions, 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: |