renamed zarafa to kopano
This commit is contained in:
parent
9b51e42fed
commit
b8e000193f
20
Inject Files/deencode.php
Normal file
20
Inject Files/deencode.php
Normal file
@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
||||
|
||||
include "/etc/kopano/webapp/config-files.php";
|
||||
|
||||
if ( $argv[1] == 'encode' ) {
|
||||
$value = openssl_encrypt($argv[2], "des-ede3-cbc", FILES_PASSWORD_KEY, 0, FILES_PASSWORD_IV);
|
||||
}
|
||||
elseif ( $argv[1] == 'decode' ) {
|
||||
$value = openssl_decrypt($argv[2], "des-ede3-cbc", FILES_PASSWORD_KEY, 0, FILES_PASSWORD_IV);
|
||||
}
|
||||
else {
|
||||
print "No valid options provided usage php dencode.php encode/decode string\n";
|
||||
}
|
||||
|
||||
if ( ! empty($value) ) {
|
||||
print $value;
|
||||
}
|
||||
?>
|
147
Inject Files/inject-files.py
Normal file
147
Inject Files/inject-files.py
Normal file
@ -0,0 +1,147 @@
|
||||
#!/usr/bin/env python
|
||||
import subprocess
|
||||
from configobj import ConfigObj
|
||||
import uuid
|
||||
|
||||
from MAPI.Util import *
|
||||
import kopano
|
||||
|
||||
|
||||
|
||||
# Try simplejson if json is not available
|
||||
try:
|
||||
import json
|
||||
except ImportError:
|
||||
import simplejson as json
|
||||
|
||||
# Define where to read and write our WebApp config from / to
|
||||
PR_EC_WEBACCESS_SETTINGS_JSON = PROP_TAG(PT_STRING8, PR_EC_BASE + 0x72)
|
||||
|
||||
|
||||
def encode(value):
|
||||
output = subprocess.check_output(["php", "deencode.php", "encode", value])
|
||||
return output.strip()
|
||||
|
||||
|
||||
def opt_args():
|
||||
parser = kopano.parser('skpcfm')
|
||||
parser.add_option("--user", dest="user", action="store", help="username")
|
||||
parser.add_option("--file", dest="file", default=[], action="store", help="config file(s) separate by ',' ")
|
||||
parser.add_option("--default", dest="default", action="store_true",
|
||||
help="use default user and password in the configfile")
|
||||
|
||||
return parser.parse_args()
|
||||
|
||||
|
||||
def read_settings(options):
|
||||
data = None
|
||||
|
||||
try:
|
||||
user = kopano.Server(options).user(options.user)
|
||||
|
||||
st = user.store.mapiobj
|
||||
|
||||
except MAPIErrorNotFound as e:
|
||||
print 'User \'%s\' has no user store (%s)' % (options.user, e)
|
||||
return
|
||||
|
||||
except MAPIErrorLogonFailed as e:
|
||||
print 'User \'%s\' not found (%s)' % (options.user, e)
|
||||
return
|
||||
|
||||
try:
|
||||
settings = st.OpenProperty(PR_EC_WEBACCESS_SETTINGS_JSON, IID_IStream, 0, 0)
|
||||
data = settings.Read(33554432)
|
||||
except Exception as e:
|
||||
print 'No WebApp settings found.'
|
||||
data = '{"settings": {"zarafa": {"v1": {"contexts": {"mail": {}}}}}}'
|
||||
|
||||
return data
|
||||
|
||||
|
||||
def write_settings(data, options):
|
||||
user = kopano.Server(options).user(options.user)
|
||||
st = user.store.mapiobj
|
||||
|
||||
settings = st.OpenProperty(PR_EC_WEBACCESS_SETTINGS_JSON, IID_IStream, 0, MAPI_MODIFY | MAPI_CREATE)
|
||||
settings.SetSize(0)
|
||||
settings.Seek(0, STREAM_SEEK_END)
|
||||
|
||||
writesettings = settings.Write(data)
|
||||
|
||||
if writesettings:
|
||||
print 'Writing settings for user \'%s\'' % user.fullname
|
||||
settings.Commit(0)
|
||||
else:
|
||||
print 'Writing settings for user \'%s\' failed.' % user.fullname
|
||||
|
||||
|
||||
def files(options):
|
||||
filesjson = '''{
|
||||
"accounts": {'''
|
||||
num = 0
|
||||
files = options.file.split(',')
|
||||
for file in files:
|
||||
configfile = ConfigObj(file)
|
||||
if options.default:
|
||||
username = configfile['setting']['default_user']
|
||||
else:
|
||||
username = options.user
|
||||
if num != 0:
|
||||
filesjson += ','
|
||||
id = uuid.uuid4()
|
||||
filesjson += '''
|
||||
"%s": {
|
||||
"status": "ok",
|
||||
"backend_config": {
|
||||
"server_path": "%s",
|
||||
"workgroup": "%s",
|
||||
"server_address": "%s",
|
||||
"server_ssl": %s,
|
||||
"current_account_id": "%s",
|
||||
"use_zarafa_credentials": %s,
|
||||
"user": "%s",
|
||||
"password": "%s",
|
||||
"server_port": "%s"
|
||||
},
|
||||
"name": "%s",
|
||||
"status_description": "Account is ready to use.",
|
||||
"id": "%s",
|
||||
"backend_features": {
|
||||
"Sharing": true,
|
||||
"VersionInfo": true,
|
||||
"Quota": true
|
||||
},
|
||||
"backend": "%s"
|
||||
}''' % (id, encode(configfile['setting']['server_path']), encode(configfile['setting']['workgroup']),
|
||||
encode(configfile['setting']['server_address']), configfile['setting']['server_ssl'],
|
||||
encode('d4cacda458a2a26c301f2b7d75ada530'), configfile['setting']['use_zarafa_credentials'],
|
||||
encode(username), encode(configfile['setting']['default_password']),
|
||||
encode('443'), configfile['setting']['name'], id, configfile['setting']['type'])
|
||||
num += 1
|
||||
|
||||
filesjson += '''
|
||||
}
|
||||
}
|
||||
'''
|
||||
return filesjson
|
||||
|
||||
|
||||
def main():
|
||||
options, args = opt_args()
|
||||
|
||||
data = read_settings(options)
|
||||
webappsettings = json.loads(data)
|
||||
|
||||
try:
|
||||
if webappsettings['settings']['zarafa']['v1']['plugins']:
|
||||
pass
|
||||
except:
|
||||
webappsettings['settings']['zarafa']['v1']['plugins'] = dict({})
|
||||
|
||||
webappsettings['settings']['zarafa']['v1']['plugins']['files'] = json.loads(files(options))
|
||||
write_settings(json.dumps(webappsettings), options)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
12
Inject Files/owncloud.cfg
Normal file
12
Inject Files/owncloud.cfg
Normal file
@ -0,0 +1,12 @@
|
||||
[setting]
|
||||
|
||||
name = Owncloud share
|
||||
type = Owncloud
|
||||
workgroup =
|
||||
server_path = /owncloud/remote.php/webdav
|
||||
server_address = zarafa.local
|
||||
server_ssl = true
|
||||
use_zarafa_credentials = false
|
||||
server_port = 443
|
||||
default_user = user
|
||||
default_password = welcome
|
26
Inject Files/readme.md
Normal file
26
Inject Files/readme.md
Normal file
@ -0,0 +1,26 @@
|
||||
Inject-files.py
|
||||
===============
|
||||
|
||||
Script to inject the files setting into the users profile.
|
||||
|
||||
|
||||
Files backend supported
|
||||
=======================
|
||||
|
||||
* SMB
|
||||
* Owncloud
|
||||
* Webddav
|
||||
|
||||
|
||||
Examples
|
||||
========
|
||||
|
||||
python inject-files -user test --file owncloud.cfg,smb.cfg
|
||||
|
||||
Use the username and password provided in the configfile
|
||||
|
||||
python inject-files -user test --file owncloud.cfg,smb.cfg --default
|
||||
|
||||
|
||||
|
||||
|
12
Inject Files/smb.cfg
Normal file
12
Inject Files/smb.cfg
Normal file
@ -0,0 +1,12 @@
|
||||
[setting]
|
||||
|
||||
name = Samba share
|
||||
type = SMB
|
||||
workgroup = zarafa
|
||||
server_path = files
|
||||
server_address = 192.168.1.230
|
||||
server_ssl = false
|
||||
use_zarafa_credentials = true
|
||||
server_port = 80
|
||||
default_user = user
|
||||
default_password = welcome
|
Loading…
Reference in New Issue
Block a user