mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2026-01-29 20:20:59 +01:00
* 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
14 lines
292 B
Bash
Executable File
14 lines
292 B
Bash
Executable File
#! /bin/bash
|
|
|
|
DATABASE=${DATABASE:-/tmp/docker-mailserver/postfix-accounts.cf}
|
|
|
|
errex() {
|
|
echo "$@" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
[ -f $DATABASE ] || errex "No postfix-accounts.cf file"
|
|
[ -s $DATABASE ] || errex "Empty postfix-accounts.cf - no users have been added"
|
|
|
|
awk -F '|' '{ print $1; }' $DATABASE
|