You've already forked docker-mailserver
mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-07 23:03:10 +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:
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 $@
|
||||
|
Reference in New Issue
Block a user