mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-13 04:46:33 +08:00
19 lines
No EOL
528 B
Bash
Executable file
19 lines
No EOL
528 B
Bash
Executable file
#! /bin/bash
|
|
|
|
OURNAME=05_install_packages.sh
|
|
|
|
echo -e "\n-- Executing ${ORANGE}${OURNAME}${NC} subscript --"
|
|
|
|
# install nginx
|
|
apt-get update
|
|
apt-get -q -y install pwgen git ufw build-essential libssl-dev dnsutils python3 software-properties-common nginx wget mongodb-org nodejs redis-server clamav clamav-daemon
|
|
|
|
# rspamd
|
|
apt-get -q -y --no-install-recommends install rspamd
|
|
apt-get clean
|
|
|
|
# DMARC policy=reject rules
|
|
echo 'actions = {
|
|
quarantine = "add_header";
|
|
reject = "reject";
|
|
}' > /etc/rspamd/override.d/dmarc.conf |