mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
69ee54513e
The Refactoring of the scripts 'addmailuser' and 'delmailuser' destroyed the build process.
19 lines
300 B
Bash
Executable file
19 lines
300 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DATABASE=/tmp/docker-mailserver/postfix-accounts.cf
|
|
|
|
function usage {
|
|
echo "Usage: delmailuser <user@domain.tld>"
|
|
exit 1
|
|
}
|
|
|
|
if [ ! -z "$1" ]; then
|
|
USER=$1
|
|
if [ -f "$DATABASE" ]; then
|
|
ENTRIES=$(grep "$USER" -vi $DATABASE)
|
|
echo "$ENTRIES" > $DATABASE
|
|
fi
|
|
else
|
|
usage
|
|
fi
|