mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
This adds a new section to the admin panel called "Activity", that supplies charts, graphs and details about messages entering and leaving the host. A new daemon captures details of system mail activity by monitoring the /var/log/mail.log file, summarizing it into a sqllite database that's kept in user-data.
36 lines
611 B
Bash
Executable File
36 lines
611 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# install bootstrap sources
|
|
#
|
|
if [ ! -e "node_modules/bootstrap" ]; then
|
|
npm install bootstrap
|
|
if [ $? -ne 0 ]; then
|
|
echo "Installing bootstrap using npm failed. Is npm install on your system?"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
|
|
#
|
|
# install sass compiler
|
|
#
|
|
compiler="/usr/bin/sassc"
|
|
if [ ! -x "$compiler" ]; then
|
|
sudo apt-get install sassc || exit 1
|
|
fi
|
|
|
|
|
|
#
|
|
# compile our theme
|
|
#
|
|
b_dir="node_modules/bootstrap/scss"
|
|
|
|
$compiler -I "$b_dir" --sourcemap --style compressed theme.scss ../ui-bootstrap.css
|
|
if [ $? -eq 0 ]; then
|
|
echo "SUCCESS - files:"
|
|
ls -sh ../ui-bootstrap.*
|
|
fi
|
|
|
|
|