mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
9 lines
224 B
Python
9 lines
224 B
Python
from .. import models
|
|
|
|
def fqdn_in_use(*names):
|
|
for name in names:
|
|
for model in models.Domain, models.Alternative, models.Relay:
|
|
if model.query.get(name):
|
|
return model
|
|
return None
|