aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-02-17 07:52:04 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-02-17 07:52:04 +0100
commit5548b52349af8aa772abcf812d41451c7dd0a900 (patch)
tree5e885d790a64e86392f8ba78d246814f7d9c803b /source
parentUpdated documentation with information about how to use mongodump. (diff)
downloadnewspipe-5548b52349af8aa772abcf812d41451c7dd0a900.tar.gz
newspipe-5548b52349af8aa772abcf812d41451c7dd0a900.tar.bz2
newspipe-5548b52349af8aa772abcf812d41451c7dd0a900.zip
Updated comments.
Diffstat (limited to 'source')
-rwxr-xr-xsource/utils.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/utils.py b/source/utils.py
index e6baa124..9b52ce4b 100755
--- a/source/utils.py
+++ b/source/utils.py
@@ -31,7 +31,7 @@ __license__ = "GPLv3"
# - the database management;
# - generation of tags cloud;
# - HTML processing;
-# - mail notifications.
+# - e-mail notifications.
#
import os
@@ -58,7 +58,7 @@ url_finders = [ \
re.compile("([0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}|(((news|telnet|nttp|file|http|ftp|https)://)|(www|ftp)[-A-Za-z0-9]*\\.)[-A-Za-z0-9\\.]+)(:[0-9]*)?/[-A-Za-z0-9_\\$\\.\\+\\!\\*\\(\\),;:@&=\\?/~\\#\\%]*[^]'\\.}>\\),\\\"]"), \
re.compile("([0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}|(((news|telnet|nttp|file|http|ftp|https)://)|(www|ftp)[-A-Za-z0-9]*\\.)[-A-Za-z0-9\\.]+)(:[0-9]*)?"), \
re.compile("(~/|/|\\./)([-A-Za-z0-9_\\$\\.\\+\\!\\*\\(\\),;:@&=\\?/~\\#\\%]|\\\\)+"), \
- re.compile("'\\<((mailto:)|)[-A-Za-z0-9\\.]+@[-A-Za-z0-9\\.]+"), \
+ re.compile("'\\<((mailto:)|)[-A-Za-z0-9\\.]+@[-A-Za-z0-9\\.]+") \
]
def detect_url_errors(list_of_urls):
@@ -174,9 +174,6 @@ def send_mail(mfrom, mto, feed_title, article_title, description):
except Exception as e:
print(e)
else:
- # sendmail function takes 3 arguments: sender's address, recipient's address
- # and message to send - here it is sent as one string.
- #s.sendmail(mfrom, mto, msg.as_string())
s.send_message(msg)
s.quit()
bgstack15