diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-05-18 12:38:29 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-05-18 12:38:29 -0300 |
commit | c2a0900868eecda3958185bf355a15b046d4e4af (patch) | |
tree | 7b7126f2740850df8a8a42884a0d7525e3584727 /src/leap/services/mail/smtpspec.py | |
parent | 0d8eb72fbe11dd9e5d59451fa4d49697213629cf (diff) |
Integrate SMTP
Diffstat (limited to 'src/leap/services/mail/smtpspec.py')
-rw-r--r-- | src/leap/services/mail/smtpspec.py | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/leap/services/mail/smtpspec.py b/src/leap/services/mail/smtpspec.py new file mode 100644 index 00000000..b455b196 --- /dev/null +++ b/src/leap/services/mail/smtpspec.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +# smtpspec.py +# Copyright (C) 2013 LEAP +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +smtp_config_spec = { + 'description': 'sample smtp service config', + 'type': 'object', + 'properties': { + 'serial': { + 'type': int, + 'default': 1, + 'required': True + }, + 'version': { + 'type': int, + 'default': 1, + 'required': True + }, + 'hosts': { + 'type': dict, + 'default': { + "walrus": { + "hostname": "someprovider", + "ip_address": "1.1.1.1", + "port": 1111 + }, + }, + }, + 'locations': { + 'type': dict, + 'default': { + "locations": { + + } + } + } + } +} |