#!/bin/bash

#
# Copyright (C) 2024 Nethesis S.r.l.
# http://www.nethesis.it - nethserver@nethesis.it
#
# This script is part of NethServer.
#
# NethServer is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License,
# or any later version.
#
# NethServer is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with NethServer.  If not, see COPYING.
#

set -e

ns8-check-import nethserver-mail &

if [[ -f /etc/e-smith/db/configuration/defaults/webtop/type ]]; then
    ns8-check-import nethserver-webtop5 &
fi

if [[ -f /etc/e-smith/db/configuration/defaults/roundcubemail/type && -d '/var/lib/mysql/roundcubemail' ]]; then
    ns8-check-import nethserver-roundcubemail &
fi

if [[ -f /etc/e-smith/db/configuration/defaults/sogod/type ]]; then
    ns8-check-import nethserver-sogo &
fi

# Getmail is not a service
if [[ -f /etc/e-smith/events/actions/nethserver-getmail-conf ]]; then
    ns8-check-import nethserver-mail-getmail &
fi

for pid in $(jobs -p); do
    wait "${pid}"
done
