says hello to new seen nodes
This commit is contained in:
SpudGunMan
2025-01-18 16:22:35 -08:00
parent c6653da1f3
commit 9394fd6ca9
3 changed files with 9 additions and 2 deletions
+2 -1
View File
@@ -96,7 +96,7 @@ if 'checklist' not in config:
config.write(open(config_file, 'w'))
if 'qrz' not in config:
config['qrz'] = {'enabled': 'False', 'qrz_db': 'data/qrz.db'}
config['qrz'] = {'enabled': 'False', 'qrz_db': 'data/qrz.db', 'qrz_hello_string': ' send CMD or DM me for more info.'}
config.write(open(config_file, 'w'))
# interface1 settings
@@ -276,6 +276,7 @@ try:
# qrz hello
qrz_hello_enabled = config['qrz'].getboolean('enabled', False)
qrz_db = config['qrz'].get('qrz_db', 'data/qrz.db')
qrz_hello_string = config['qrz'].get('qrz_hello_string', ' send CMD or DM me for more info.')
# E-Mail Settings
sysopEmails = config['smtp'].get('sysopEmails', '').split(',')