aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <gideonstar@thehappy.de>2009-07-24 16:21:56 +0200
committerStefan Ritter <gideonstar@thehappy.de>2009-07-24 16:21:56 +0200
commit0d757b0522de7b53a26a6826cf4651ef43b8ef14 (patch)
treed9ac2a3404171e3c507d9ae05b85371afa3547d8
parentdc381f921e53ad998ac85ddb5c2c6fb114b784dc (diff)
Added exception for not writable commentsfile
-rwxr-xr-xblogthon.cgi33
1 files changed, 18 insertions, 15 deletions
diff --git a/blogthon.cgi b/blogthon.cgi
index 89594c2..277d335 100755
--- a/blogthon.cgi
+++ b/blogthon.cgi
@@ -189,21 +189,24 @@ if cname and ctext and ctitle:
except:
errorpage('not writable entries_dir')
comments_file = glob.glob(entries_dir + ctitle + '.comments')
- content = open(comments_file[0], "a+")
- content.write("-." + cname + "\n")
- content.write("+." + time.asctime() + "\n")
- ctext = ctext.split("\n")
- for line in ctext:
- content.write("." + line + "\n")
- 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=' + 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()
+ try:
+ content = open(comments_file[0], "a+")
+ content.write("-." + cname + "\n")
+ content.write("+." + time.asctime() + "\n")
+ ctext = ctext.split("\n")
+ for line in ctext:
+ content.write("." + line + "\n")
+ 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=' + 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:
+ errorpage('commentsfile seems not to be writable!)
# Read entries and store their title and timestamp
entries = []