1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-21 03:02:09 +00:00
This commit is contained in:
Nitescu Lucian 2017-06-01 01:58:58 +00:00 committed by GitHub
commit 749e985a24
2 changed files with 43 additions and 1 deletions

View File

@ -35,7 +35,20 @@
<tr><th>Username:</th> <td>Your whole email address.</td></tr>
<tr><th>Password:</th> <td>Your mail password.</td></tr>
</table>
<p>Use the following settings when you set up your email on your Outlook 2016</p>
<table class="table">
<thead>
<tr><th>Option</th> <th>Value</th></tr>
</thead>
<tr><th>Protocol/Method</th> <td>IMAP</td></tr>
<tr><th>Mail server</th> <td>{{hostname}}</td>
<tr><th>IMAP Port</th> <td>993</td></tr>
<tr><th>IMAP Security</th> <td>SSL</td></tr>
<tr><th>SMTP Port</th> <td>25</td></tr>
<tr><th>SMTP Security</td> <td>STARTTLS (TLS) <small>(&ldquo;always&rdquo; or &ldquo;required&rdquo;, if prompted)</small></td></tr>
<tr><th>Username:</th> <td>Your whole email address.</td></tr>
<tr><th>Password:</th> <td>Your mail password.</td></tr>
</table>
<p>In addition to setting up your email, you&rsquo;ll also need to set up <a href="#sync_guide" onclick="return show_panel(this);">contacts and calendar synchronization</a> separately.</p>
<p>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.</p>

29
tools/ufw_reset.sh Normal file
View File

@ -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