mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
da8171388f
* documentation and script updates trying to fix #1647 * preparations for refactoring target/bin/ * complete refactor for target/bin/ * changing script output slightly * outsourcing functions in `bin-helper.sh` * re-wrote linting to allow for proper shellcheck -x execution * show explanation for shellcheck ignore * adding some more information
37 lines
921 B
Bash
Executable file
37 lines
921 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# shellcheck disable=SC2094
|
|
|
|
# shellcheck source=../bin-helper.sh
|
|
. /usr/local/bin/bin-helper.sh
|
|
|
|
DATABASE=${DATABASE:-/tmp/docker-mailserver/postfix-accounts.cf}
|
|
|
|
USER="${1}"
|
|
shift
|
|
PASSWD="${*}"
|
|
|
|
function usage { echo "Usage: addmailuser <user@domain> [<password>]" ; }
|
|
|
|
[[ -z ${USER} ]] && { usage ; errex "no username specified" ; }
|
|
[[ "${USER}" =~ .*\@.* ]] || { usage ; errex "username must include the domain" ; }
|
|
|
|
# Protect config file with lock to avoid race conditions
|
|
touch "${DATABASE}"
|
|
(
|
|
flock -e 200
|
|
|
|
grep -qi "^$(escape "${USER}")|" "${DATABASE}" 2>/dev/null &&
|
|
errex "User \"${USER}\" already exists"
|
|
|
|
if [[ -z ${PASSWD} ]]
|
|
then
|
|
read -r -s -p "Enter Password: " PASSWD
|
|
echo
|
|
[[ -z ${PASSWD} ]] && errex "Password must not be empty"
|
|
fi
|
|
|
|
HASH="$(doveadm pw -s SHA512-CRYPT -u "${USER}" -p "${PASSWD}")"
|
|
echo "${USER}|${HASH}" >> "${DATABASE}"
|
|
) 200< "${DATABASE}"
|