Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rswrz/zimbra-csv-to-zmp
Create a zmp file from csv (Zimbra export) to bulk create users with random passwords with Zimbras zmprov tool
https://github.com/rswrz/zimbra-csv-to-zmp
Last synced: 26 days ago
JSON representation
Create a zmp file from csv (Zimbra export) to bulk create users with random passwords with Zimbras zmprov tool
- Host: GitHub
- URL: https://github.com/rswrz/zimbra-csv-to-zmp
- Owner: rswrz
- Created: 2019-12-19T09:35:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-19T09:36:17.000Z (about 5 years ago)
- Last Synced: 2024-10-27T06:52:32.610Z (2 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intro
Create a `zmp` file from `csv` (Zimbra export) to bulk create users with random passwords with Zimbras `zmprov` tool.- [Zimbra Bulk Provisioning](https://wiki.zimbra.com/wiki/Bulk_Provisioning)
# Create `zmp`
## Native Python
```
python3 ./create_zmp.py > commands.zmp
```## Docker Container
```
docker run --rm -v $PWD:/app -w /app python:3 python create_zmp.py > commands.zmp
```# Run `zmprov`
```
zmprov -f commands.zmp
```