mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
chore: Sync dovecot-master-user commands to use new style syntax (#2611)
Adopt the new colour vars from `helpers/log.sh` like the other supported commands have.
This commit is contained in:
parent
5437b0e30b
commit
1bd8ef3976
|
@ -9,24 +9,24 @@ DATABASE=/tmp/docker-mailserver/dovecot-masters.cf
|
|||
|
||||
function __usage
|
||||
{
|
||||
printf "\e[35mADDDOVECOTMASTERUSER\e[31m(\e[93m8\e[31m)
|
||||
printf '%s' "${PURPLE}ADDDOVECOTMASTERUSER${RED}(${YELLOW}8${RED})
|
||||
|
||||
\e[38;5;214mNAME\e[39m
|
||||
${ORANGE}NAME${RESET}
|
||||
addmasteruser - add a dovecot master user (for POP3/IMAP administration)
|
||||
|
||||
\e[38;5;214mSYNOPSIS\e[39m
|
||||
${ORANGE}SYNOPSIS${RESET}
|
||||
./setup.sh dovecot-master add <USERNAME> [<PASSWORD>]
|
||||
|
||||
\e[38;5;214mOPTIONS\e[39m
|
||||
\e[94mGeneric Program Information\e[39m
|
||||
${ORANGE}OPTIONS${RESET}
|
||||
${BLUE}Generic Program Information${RESET}
|
||||
help Print the usage information.
|
||||
|
||||
\e[38;5;214mEXAMPLES\e[39m
|
||||
\e[37m./setup.sh dovecot-master add test-user\e[39m
|
||||
${ORANGE}EXAMPLES${RESET}
|
||||
${LWHITE}./setup.sh dovecot-master add test-user${RESET}
|
||||
Add the dovecot master account 'test-user'. You will be prompted
|
||||
to input a password afterwards since no password was supplied.
|
||||
|
||||
\e[38;5;214mEXIT STATUS\e[39m
|
||||
${ORANGE}EXIT STATUS${RESET}
|
||||
Exit status is 0 if command was successful. If wrong arguments are provided
|
||||
or arguments contain errors, the script will exit early with exit status 1.
|
||||
|
||||
|
|
|
@ -12,29 +12,29 @@ DATABASE=/tmp/docker-mailserver/dovecot-masters.cf
|
|||
|
||||
function __usage
|
||||
{
|
||||
echo -e "\e[35mDELDOVECOTMASTERUSER\e[31m(\e[93m8\e[31m)
|
||||
printf '%s' "${PURPLE}DELDOVECOTMASTERUSER${RED}(${YELLOW}8${RED})
|
||||
|
||||
\e[38;5;214mNAME\e[39m
|
||||
${ORANGE}NAME${RESET}
|
||||
deldovecotmasteruser - delete a dovecot master user
|
||||
|
||||
\e[38;5;214mSYNOPSIS\e[39m
|
||||
./setup.sh dovecot-master del { <USERNAME> [<USERNAME>\e[31m...\e[39m] \e[31m|\e[39m help }
|
||||
${ORANGE}SYNOPSIS${RESET}
|
||||
./setup.sh dovecot-master del [ OPTIONS ] { <MAIL ADDRESS> [<MAIL ADDRESS>${RED}...${RESET}] ${RED}|${RESET} help }
|
||||
|
||||
\e[38;5;214mDESCRIPTION\e[39m
|
||||
${ORANGE}DESCRIPTION${RESET}
|
||||
Delete a dovecot master user.
|
||||
|
||||
\e[38;5;214mOPTIONS\e[39m
|
||||
${ORANGE}OPTIONS${RESET}
|
||||
-h
|
||||
Show this help dialogue.
|
||||
|
||||
\e[38;5;214mEXAMPLES\e[39m
|
||||
\e[37m./setup.sh dovecot-master del administrator\e[39m
|
||||
${ORANGE}EXAMPLES${RESET}
|
||||
${LWHITE}./setup.sh dovecot-master del administrator${RESET}
|
||||
Delete the dovecot master user called 'administrator'.
|
||||
|
||||
\e[37m./setup.sh dovecot-master del administrator admin\e[39m
|
||||
${LWHITE}./setup.sh dovecot-master del administrator admin${RESET}
|
||||
Delete dovecot master users 'administrator' and 'admin'.
|
||||
|
||||
\e[38;5;214mEXIT STATUS\e[39m
|
||||
${ORANGE}EXIT STATUS${RESET}
|
||||
Exit status is 0 if command was successful, and 1 if there was an error.
|
||||
"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue