/usr/sbin/openchange_newuser is in openchangeserver 1:2.2-6+deb8u1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | #! /usr/bin/python
# OpenChange provision script
#
# Copyright (C) Jelmer Vernooij <jelmer@openchange.org> 2008
#
# 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/>.
#
import optparse
import os,sys
# To allow running from the source directory
sys.path.append("python")
import openchange
import samba
import samba.getopt as options
import openchange.provision as openchange
parser = optparse.OptionParser("openchange_newuser [options] <username>")
sambaopts = options.SambaOptions(parser)
parser.add_option_group(sambaopts)
credopts = options.CredentialsOptions(parser)
parser.add_option_group(credopts)
parser.add_option("--firstorg", type="string", metavar="FIRSTORG",
help="select the OpenChange Organization Name")
parser.add_option("--firstou", type="string", metavar="FIRSTOU",
help="select the OpenChange Administration Group")
parser.add_option("--enable", action="store_true", metavar="ENABLE",
help="Enable access to OpenChange server")
parser.add_option("--disable", action="store_true", metavar="DISABLE",
help="Disable access to OpenChange server")
parser.add_option("--create", action="store_true", metavar="CREATE",
help="Create the OpenChange user account")
parser.add_option("--mailbox", action="store_true", metavar="MAILBOX",
help="Create the OpenChange user mailbox")
opts, args = parser.parse_args()
if len(args) == 0:
parser.print_usage()
sys.exit(1)
lp = sambaopts.get_loadparm()
creds = credopts.get_credentials(lp)
provisionnames = openchange.guess_names_from_smbconf(
lp, creds, opts.firstorg, opts.firstou)
def setup_path(*args):
return os.path.join(os.path.dirname(__file__), *args)
if opts.create == True:
openchange.newuser(provisionnames, lp, creds, username=args[0])
if opts.mailbox == True:
print "Mailbox provisioning is now performed automatically at user logon"
if opts.enable == True:
openchange.accountcontrol(provisionnames, lp, creds, username=args[0], value=0)
if opts.disable == True:
openchange.accountcontrol(provisionnames, lp, creds, username=args[0], value=2)
|