7 lines
86 B
Bash
7 lines
86 B
Bash
#!/usr/bin/env sh
|
|
# set -e
|
|
cd /etc/postfix
|
|
postmap virtual
|
|
postmap vmailbox
|
|
exec "$@"
|