mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
461c88e6ae
* Add some checks for user name matching in mail user scripts * Fix user matching problems in mail user scripts ** fix matching problems at several places: "delmailuser a@example.com" deletes also user "aa@example.com" "delmailuser a@sub.example.com" deletes also user "a@sub-example.com" ** similar problems when inserting ** refactor and clean up
33 lines
607 B
Bash
Executable file
33 lines
607 B
Bash
Executable file
#! /bin/bash
|
|
|
|
DATABASE=${DATABASE:-/tmp/docker-mailserver/postfix-accounts.cf}
|
|
|
|
USER="$1"
|
|
PASSWD="$2"
|
|
|
|
usage() {
|
|
echo "Usage: addmailuser <user@domain> [<password>]"
|
|
}
|
|
|
|
errex() {
|
|
echo "$@" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
escape() {
|
|
echo "${1//./\\.}"
|
|
}
|
|
|
|
[ -z "$USER" ] && { usage; errex "no username specified"; }
|
|
|
|
grep -qi "^$(escape "$USER")|" $DATABASE 2>/dev/null &&
|
|
errex "User \"$USER\" already exists"
|
|
|
|
if [ -z "$PASSWD" ]; then
|
|
read -s -p "Enter Password: " PASSWD
|
|
echo
|
|
[ -z "$PASSWD" ] && errex "Password must not be empty"
|
|
fi
|
|
|
|
echo "$USER|$(doveadm pw -s SHA512-CRYPT -u "$USER" -p "$PASSWD")" >>$DATABASE
|