Compare commits

..

No commits in common. 'aurore' and 'master' have entirely different histories.

@ -2,6 +2,8 @@
This service uses Re2o API to generate postfix config files
More info on https://gitlab.federez.net/re2o/switchs/wikis/home
## Requirements
* python3

@ -21,11 +21,10 @@ config.read(path+'/config.ini')
api_hostname = config.get('Re2o', 'hostname')
api_password = config.get('Re2o', 'password')
api_username = config.get('Re2o', 'username')
if 'use_tls' in config['Re2o']:
use_tls = config.get('Re2o', 'use_tls')
else:
use_tls = False
us_tls = False
api_client = Re2oAPIClient(api_hostname, api_username, api_password, use_tls=use_tls)

Loading…
Cancel
Save