2014-08-31 11:06:39 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-01-06 08:21:39 -05:00
|
|
|
# Copyright 2014, 2015 OpenMarket Ltd
|
2014-08-31 11:06:39 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from .tls import TlsConfig
|
|
|
|
from .server import ServerConfig
|
|
|
|
from .logger import LoggingConfig
|
|
|
|
from .database import DatabaseConfig
|
2014-09-02 12:57:04 -04:00
|
|
|
from .ratelimiting import RatelimitConfig
|
2014-09-03 12:04:00 -04:00
|
|
|
from .repository import ContentRepositoryConfig
|
2014-09-05 20:58:06 -04:00
|
|
|
from .captcha import CaptchaConfig
|
2014-09-16 07:36:39 -04:00
|
|
|
from .email import EmailConfig
|
2014-09-23 12:16:13 -04:00
|
|
|
from .voip import VoipConfig
|
2014-09-16 07:36:39 -04:00
|
|
|
|
2014-08-31 11:06:39 -04:00
|
|
|
|
2014-09-02 12:57:04 -04:00
|
|
|
class HomeServerConfig(TlsConfig, ServerConfig, DatabaseConfig, LoggingConfig,
|
2014-09-16 07:36:39 -04:00
|
|
|
RatelimitConfig, ContentRepositoryConfig, CaptchaConfig,
|
2014-09-23 12:16:13 -04:00
|
|
|
EmailConfig, VoipConfig):
|
2014-08-31 11:06:39 -04:00
|
|
|
pass
|
|
|
|
|
2014-09-16 07:36:39 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2014-08-31 11:06:39 -04:00
|
|
|
import sys
|
|
|
|
HomeServerConfig.load_config("Generate config", sys.argv[1:], "HomeServer")
|