mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-16 10:59:53 +02:00
4ae0d7d768
With this we avoid running into the limitations of mail_max_userip_connections (see #894 amd #1364) and the logfiles as well as ``doveadm who`` give an accurate picture.
59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
from mailu import models
|
|
from mailu.internal import internal
|
|
from flask import current_app as app
|
|
|
|
import flask
|
|
import socket
|
|
import os
|
|
import sqlalchemy.exc
|
|
|
|
@internal.route("/dovecot/passdb/<path:user_email>")
|
|
def dovecot_passdb_dict(user_email):
|
|
user = models.User.query.get(user_email) or flask.abort(404)
|
|
allow_nets = []
|
|
allow_nets.append(app.config["SUBNET"])
|
|
if app.config["SUBNET6"]:
|
|
allow_nets.append(app.config["SUBNET6"])
|
|
return flask.jsonify({
|
|
"password": None,
|
|
"nopassword": "Y",
|
|
"allow_real_nets": ",".join(allow_nets)
|
|
})
|
|
|
|
@internal.route("/dovecot/userdb/")
|
|
def dovecot_userdb_dict_list():
|
|
return flask.jsonify([
|
|
user[0] for user in models.User.query.filter(models.User.enabled.is_(True)).with_entities(models.User.email).all()
|
|
])
|
|
|
|
@internal.route("/dovecot/userdb/<path:user_email>")
|
|
def dovecot_userdb_dict(user_email):
|
|
try:
|
|
quota = models.User.query.filter(models.User.email==user_email).with_entities(models.User.quota_bytes).one_or_none() or flask.abort(404)
|
|
except sqlalchemy.exc.StatementError as exc:
|
|
flask.abort(404)
|
|
return flask.jsonify({
|
|
"quota_rule": f"*:bytes={quota[0]}"
|
|
})
|
|
|
|
|
|
@internal.route("/dovecot/quota/<ns>/<path:user_email>", methods=["POST"])
|
|
def dovecot_quota(ns, user_email):
|
|
user = models.User.query.get(user_email) or flask.abort(404)
|
|
if ns == "storage":
|
|
user.quota_bytes_used = flask.request.get_json()
|
|
user.dont_change_updated_at()
|
|
models.db.session.commit()
|
|
return flask.jsonify(None)
|
|
|
|
|
|
@internal.route("/dovecot/sieve/name/<script>/<path:user_email>")
|
|
def dovecot_sieve_name(script, user_email):
|
|
return flask.jsonify(script)
|
|
|
|
|
|
@internal.route("/dovecot/sieve/data/default/<path:user_email>")
|
|
def dovecot_sieve_data(user_email):
|
|
user = models.User.query.get(user_email) or flask.abort(404)
|
|
return flask.jsonify(flask.render_template("default.sieve", user=user))
|