From eab4f8085804b07317c2c9cfce525bf6b0da0ae5 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Thu, 29 Dec 2022 21:20:29 -0500 Subject: [PATCH] qa: open ldaps and accept cloudinabox email to ease testing --- tests/vagrant/vanilla/Vagrantfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/vagrant/vanilla/Vagrantfile b/tests/vagrant/vanilla/Vagrantfile index c54511d2..98e27d92 100644 --- a/tests/vagrant/vanilla/Vagrantfile +++ b/tests/vagrant/vanilla/Vagrantfile @@ -37,9 +37,15 @@ export SKIP_SYSTEM_UPDATE=0 tests/system-setup/vanilla.sh --qa-ca --enable-mod=remote-nextcloud if ! ufw status | grep remote_nextcloud >/dev/null; then # firewall rules aren't added when ciab is down - # allow ldaps from anywhere + echo "For testing, allow ldaps from anywhere" ufw allow ldaps fi +echo "Add smart host alias - so \\$NC_HOST can send mail to/via this host" +( + source tests/lib/all.sh + rest_urlencoded POST /admin/mail/aliases/add qa@abc.com Test_1234 "address=@\\$NC_HOST" "description=smart-host" "permitted_senders=qa@abc.com" 2>/dev/null + echo "\\$REST_HTTP_CODE: \\$REST_OUTPUT" +) EOF chmod +x /tmp/provision.sh /tmp/provision.sh