From 090abf7d1c2b59cd5dcdb010b209d9463bd63973 Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Sun, 13 Dec 2015 19:16:17 +0100 Subject: [PATCH] Replace "yourisp.net" with "example.net" Follow RFC 6761 [1], which reserves (among others) *.example.net for example host names. [1]: https://tools.ietf.org/html/rfc6761#section-6.5 Signed-off-by: Jakub Wilk --- README | 2 +- rss2email/config.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index f4a8717..763b9c7 100644 --- a/README +++ b/README @@ -174,7 +174,7 @@ your outoing email server's details:: [DEFAULT] ... use-smtp = True - smtp-server = smtp.yourisp.net:587 + smtp-server = smtp.example.net:587 smtp-auth = False ... diff --git a/rss2email/config.py b/rss2email/config.py index e8e7141..5c758bd 100644 --- a/rss2email/config.py +++ b/rss2email/config.py @@ -191,14 +191,14 @@ CONFIG['DEFAULT'] = _collections.OrderedDict(( ('smtp-auth', str(False)), # set to True to use SMTP AUTH ('smtp-username', 'username'), # username for SMTP AUTH ('smtp-password', 'password'), # password for SMTP AUTH - ('smtp-server', 'smtp.yourisp.net:25'), + ('smtp-server', 'smtp.example.net:25'), ('smtp-ssl', str(False)), # Connect to the SMTP server using SSL ('smtp-ssl-protocol', 'SSLv3'), # TLS/SSL version to use on STARTTLS when not using 'smtp-ssl' # IMAP configuration ('imap-auth', str(False)), # set to True to use IMAP auth. ('imap-username', 'username'), # username for IMAP authentication ('imap-password', 'password'), # password for IMAP authentication - ('imap-server', 'imap.yourisp.net'), + ('imap-server', 'imap.example.net'), ('imap-port', str(143)), ('imap-ssl', str(False)), # connect to the IMAP server using SSL ('imap-mailbox', 'INBOX'), # where we should store new messages -- 2.26.2