From e11a84bf053485ee0ce7367d5b9715114cd4d8ae Mon Sep 17 00:00:00 2001 From: Craig Lamparter Date: Thu, 14 Jan 2021 10:41:40 -0800 Subject: [PATCH] make sample config easier to interpret --- aprsd/utils.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/aprsd/utils.py b/aprsd/utils.py index 0d8b50a..2de222b 100644 --- a/aprsd/utils.py +++ b/aprsd/utils.py @@ -13,13 +13,13 @@ import yaml # an example of what should be in the ~/.aprsd/config.yml DEFAULT_CONFIG_DICT = { - "ham": {"callsign": "KFART"}, + "ham": {"callsign": "CALLSIGN"}, "aprs": { - "login": "someusername", - "password": "somepassword", + "login": "CALLSIGN", + "password": "00000", "host": "rotate.aprs.net", "port": 14580, - "logfile": "/tmp/arsd.log", + "logfile": "/tmp/aprsd.log", }, "aprs.fi": {"apiKey": "set me"}, "shortcuts": { @@ -28,15 +28,15 @@ DEFAULT_CONFIG_DICT = { "wb": "555309@vtext.com", }, "smtp": { - "login": "something", - "password": "some lame password", - "host": "imap.gmail.com", + "login": "SMTP_USERNAME", + "password": "SMTP_PASSWORD", + "host": "smtp.gmail.com", "port": 465, "use_ssl": False, }, "imap": { - "login": "imapuser", - "password": "something here too", + "login": "IMAP_USERNAME", + "password": "IMAP_PASSWORD", "host": "imap.gmail.com", "port": 993, "use_ssl": True,