Replace "yourisp.net" with "example.net"
authorJakub Wilk <jwilk@jwilk.net>
Sun, 13 Dec 2015 18:16:17 +0000 (19:16 +0100)
committerJakub Wilk <jwilk@jwilk.net>
Sun, 13 Dec 2015 18:20:49 +0000 (19:20 +0100)
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 <jwilk@jwilk.net>
README
rss2email/config.py

diff --git a/README b/README
index f4a8717f007441c0a101fdac66bd1176feeae565..763b9c75925f2ed49ac5903b374ead2334a920a0 100644 (file)
--- 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
   ...
 
index e8e7141fa0dcd8ab060467cceee5287ed7abc71f..5c758bda11f5570051c01c220a16d50037cbd91e 100644 (file)
@@ -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