mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
45 lines
1.2 KiB
Bash
Executable File
45 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
#####
|
|
##### This file is part of Mail-in-a-Box-LDAP which is released under the
|
|
##### terms of the GNU Affero General Public License as published by the
|
|
##### Free Software Foundation, either version 3 of the License, or (at
|
|
##### your option) any later version. See file LICENSE or go to
|
|
##### https://github.com/downtownallday/mailinabox-ldap for full license
|
|
##### details.
|
|
#####
|
|
|
|
|
|
# load a mail.log file into the current test vm's capture.sqlite
|
|
#
|
|
if [ -z "$1" ]; then
|
|
echo "usage: $0 /path/to/mail.log"
|
|
exit 1
|
|
fi
|
|
|
|
log="$1"
|
|
if [ ! -e "$log" ]; then
|
|
echo "Does not exist: $log"
|
|
exit 1
|
|
fi
|
|
|
|
. /etc/mailinabox.conf
|
|
if [ $? -ne 0 ]; then
|
|
echo "Could not load /etc/mailinabox.conf !!"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
echo "Stopping maibldap-capture daemon"
|
|
systemctl stop miabldap-capture || exit 1
|
|
|
|
echo "Ensuring access to capture.sqlite"
|
|
capture_db=$STORAGE_ROOT/reporting/capture.sqlite
|
|
sqlite3 "$capture_db" "select value from db_info where key='schema_version'" >/dev/null
|
|
[ $? -ne 0 ] && exit 1
|
|
|
|
echo "Loading $log"
|
|
python3 ../capture.py -d -loglevel info -logfile "$log" -stopateof
|
|
|
|
echo "Starting miabldap-capture daemon"
|
|
systemctl start miabldap-capture
|