mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
6d2d9dd738
* Wrote functional tests for desired behavior. Redoing the pull request, starting from current master. The tests now fail where expected. * Updated commands to handle missing files better. The functional tests now pass.
19 lines
289 B
Bash
Executable file
19 lines
289 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
|