diff options
author | Maximilian Gass <mxey@ghosthacking.net> | 2009-07-24 14:58:38 +0200 |
---|---|---|
committer | Maximilian Gass <mxey@ghosthacking.net> | 2009-07-24 14:58:38 +0200 |
commit | 743cb0f08b5dae7dce197a075d550f857a1c478c (patch) | |
tree | ffc15df72d75385f443c902738aad3666e272e6e /blogthon.cgi | |
parent | 8d77719ceec40ca02b45a571f6286ce7c65c77e5 (diff) |
Made SMTP Auth actually functional
Diffstat (limited to '')
-rwxr-xr-x | blogthon.cgi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 6e32476..8318fdd 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -200,6 +200,8 @@ if cname and ctext and ctitle: 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 stmp_pass != '': + smtp.login(smtp_user, smtp_pass) smtp.sendmail(blog_title, mail_to, msg) smtp.quit() |