From: Tobias Diekershoff Date: Fri, 1 Oct 2021 08:18:43 +0000 (+0200) Subject: Vagrant: create the correct mail aliases during provision X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9b23ac578e183ce2dabc1ae11f5acea6e9d65ae0;p=friendica.git Vagrant: create the correct mail aliases during provision --- diff --git a/bin/dev/vagrant_provision.sh b/bin/dev/vagrant_provision.sh index 6eb9460bd6..2dc386a4b4 100755 --- a/bin/dev/vagrant_provision.sh +++ b/bin/dev/vagrant_provision.sh @@ -82,7 +82,7 @@ echo ">>> Installing 'Local Only' postfix" debconf-set-selections <<< "postfix postfix/mailname string friendica.local" debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Local Only'" apt-get install -qq postfix mailutils libmailutils-dev -echo -e "friendica1: vagrant\nfriendica2: vagrant\nfriendica3: vagrant\nfriendica4: vagrant\nfriendica5: vagrant" >> /etc/aliases && newaliases +echo -e "$ADMIN_NICK: vagrant\n$USER_NICK: vagrant" >> /etc/aliases && newaliases # Friendica needs git for fetching some dependencies echo ">>> Installing git"