mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-24 04:34:50 +02:00
Script to update users password, made test and updated setup.sh (#413)
* Added script to update users password, made test and updated setup.sh * Moved update password test to tests.bat * Fixed test for update password
This commit is contained in:
parent
68e7e46308
commit
83c0095e00
3 changed files with 66 additions and 0 deletions
5
setup.sh
5
setup.sh
|
@ -43,6 +43,7 @@ SUBCOMMANDS:
|
|||
email:
|
||||
|
||||
$0 email add <email> <password>
|
||||
$0 email update <email> <password>
|
||||
$0 email del <email>
|
||||
$0 email list
|
||||
|
||||
|
@ -115,6 +116,10 @@ case $1 in
|
|||
shift
|
||||
_docker_image addmailuser $@
|
||||
;;
|
||||
update)
|
||||
shift
|
||||
_docker_image updatemailuser
|
||||
;;
|
||||
del)
|
||||
shift
|
||||
_docker_image delmailuser $@
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue