2017-04-17 16:27:28 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
2022-02-21 10:56:57 +00:00
|
|
|
# shellcheck source=../scripts/helpers/index.sh
|
|
|
|
source /usr/local/bin/helpers/index.sh
|
2017-04-17 16:27:28 +00:00
|
|
|
|
2022-04-20 00:29:28 +00:00
|
|
|
DATABASE='/tmp/docker-mailserver/postfix-virtual.cf'
|
2017-04-17 16:27:28 +00:00
|
|
|
|
2022-03-26 08:30:09 +00:00
|
|
|
[[ -f ${DATABASE} ]] || _exit_with_error "No 'postfix-virtual.cf' file"
|
|
|
|
[[ -s ${DATABASE} ]] || _exit_with_error "Empty 'postfix-virtual.cf' - no aliases have been added"
|
2017-04-17 16:27:28 +00:00
|
|
|
|
2022-06-06 13:07:30 +00:00
|
|
|
_get_valid_lines_from_file "${DATABASE}"
|
2021-02-23 19:03:01 +00:00
|
|
|
exit 0
|