re2o-mail-server/main.py

60 lines
1.8 KiB
Python
Raw Normal View History

2018-06-27 19:00:53 +02:00
#!/usr/bin/env python3
2018-05-24 15:27:42 +02:00
from configparser import ConfigParser
2018-05-26 23:04:14 +02:00
import socket
2018-05-24 15:27:42 +02:00
from re2oapi import Re2oAPIClient
from jinja2 import Environment, FileSystemLoader
import requests
import base64
import json
2018-07-19 12:53:35 +02:00
from subprocess import call
2018-08-09 16:43:55 +02:00
import os
2018-08-08 19:52:04 +02:00
import sys
2018-08-09 15:42:52 +02:00
path =(os.path.dirname(os.path.abspath(__file__)))
2018-05-24 15:27:42 +02:00
config = ConfigParser()
2018-08-09 15:42:52 +02:00
config.read(path+'/config.ini')
2018-05-24 15:27:42 +02:00
2018-05-26 23:04:14 +02:00
api_hostname = config.get('Re2o', 'hostname')
api_password = config.get('Re2o', 'password')
api_username = config.get('Re2o', 'username')
2018-08-09 15:43:37 +02:00
api_client = Re2oAPIClient(api_hostname, api_username, api_password, use_tls=False)
2018-05-26 23:04:14 +02:00
client_hostname = socket.gethostname().split('.', 1)[0]
def generate(api_client):
2018-08-08 17:22:01 +02:00
all_users = api_client.list("localemail/users")
# Création de l'environnement Jinja
2018-08-09 16:16:42 +02:00
env = Environment(loader=FileSystemLoader(path))
template = env.get_template('templates/list')
aliases_rendered = template.render(data=all_users)
2018-08-09 15:42:52 +02:00
fichier = open(path+'/generated/aliases','w')
2018-08-09 16:07:39 +02:00
if os.path.isfile(path+'/aliases_local'): # if a local aliases file exist, add it's content at the beginning
2018-08-09 15:42:52 +02:00
local = open(path+'/aliases_local','r')
for line in local.readlines():
fichier.write(line)
local.close()
fichier.write(aliases_rendered)
fichier.close()
2018-08-09 16:43:55 +02:00
call(["/usr/bin/newaliases"], stdout=open(os.devnull, 'wb')) # Update the aliases config file
2018-08-09 16:37:34 +02:00
call(["/usr/sbin/postfix", "reload"]) # force the reloading now
2018-08-09 15:42:52 +02:00
for arg in sys.argv:
if arg=="--force":
generate(api_client)
for service in api_client.list("services/regen/"):
if service['hostname'] == client_hostname and \
service['service_name'] == 'mail-server' and \
service['need_regen']:
generate(api_client)
api_client.patch(service['api_url'], data={'need_regen': False})