Do not save hidden service parameters if onionhostname is set
This commit is contained in:
parent
53d77ce911
commit
97366ede73
|
@ -87,7 +87,7 @@ def connect_plugin(config):
|
||||||
response = controller.create_ephemeral_hidden_service(
|
response = controller.create_ephemeral_hidden_service(
|
||||||
config.safeGetInt('bitmessagesettings', 'onionport', 8444),
|
config.safeGetInt('bitmessagesettings', 'onionport', 8444),
|
||||||
key_type=(onionkeytype or 'NEW'),
|
key_type=(onionkeytype or 'NEW'),
|
||||||
key_content=(onionkey or 'BEST')
|
key_content=(onionkey or onionhostname and 'ED25519-V3' or 'BEST')
|
||||||
)
|
)
|
||||||
|
|
||||||
if not response.is_ok():
|
if not response.is_ok():
|
||||||
|
@ -95,13 +95,12 @@ def connect_plugin(config):
|
||||||
return
|
return
|
||||||
|
|
||||||
if not onionkey:
|
if not onionkey:
|
||||||
|
logwrite('Started hidden service %s.onion' % response.service_id)
|
||||||
|
# only save new service keys if onionhostname was not set previously
|
||||||
if not onionhostname:
|
if not onionhostname:
|
||||||
onionhostname = response.service_id + '.onion'
|
onionhostname = response.service_id + '.onion'
|
||||||
config.set(
|
config.set(
|
||||||
'bitmessagesettings', 'onionhostname', onionhostname)
|
'bitmessagesettings', 'onionhostname', onionhostname)
|
||||||
else:
|
|
||||||
onionhostname = response.service_id + '.onion'
|
|
||||||
logwrite('Started hidden service %s' % onionhostname)
|
|
||||||
config.add_section(onionhostname)
|
config.add_section(onionhostname)
|
||||||
config.set(
|
config.set(
|
||||||
onionhostname, 'privsigningkey', response.private_key)
|
onionhostname, 'privsigningkey', response.private_key)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user