diff --git a/management/templates/mail-guide.html b/management/templates/mail-guide.html index d34cc9c3..0752cc07 100644 --- a/management/templates/mail-guide.html +++ b/management/templates/mail-guide.html @@ -35,7 +35,20 @@
Use the following settings when you set up your email on your Outlook 2016
+Option | Value |
---|---|
Protocol/Method | IMAP |
Mail server | {{hostname}} | +
IMAP Port | 993 |
IMAP Security | SSL |
SMTP Port | 25 |
SMTP Security | STARTTLS (TLS) (“always” or “required”, if prompted) |
Username: | Your whole email address. |
Password: | Your mail password. |
In addition to setting up your email, you’ll also need to set up contacts and calendar synchronization separately.
As an alternative to IMAP you can also use the POP protocol: choose POP as the protocol, port 995, and SSL or TLS security in your mail client. The SMTP settings and usernames and passwords remain the same. However, we recommend you use IMAP instead.
diff --git a/tools/ufw_reset.sh b/tools/ufw_reset.sh new file mode 100644 index 00000000..4843a28f --- /dev/null +++ b/tools/ufw_reset.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +#Root needed +if [ "$EUID" -ne 0 ] + then echo "Please run as root" + exit +fi + +#Color code +yellow=`tput setaf 3` + +echo "${blue}Checking local firewall status.${reset}" +ufw status verbose + +#UFW CONFIGURATION +echo "${yellow}Would you like to reconfigure ufw settings? (y/n)${reset}" +read foa +if [ "$foa" = "y" ]; then +ufw allow 22 +ufw allow 25 +ufw allow 53 +ufw allow 80 +ufw allow 443 +ufw allow 587 +ufw allow 993 +ufw allow 995 +ufw allow 4190 +ufw enable +fi