mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
minor fixes to comments, argument order (consistency?), the github URL changed long ago
This commit is contained in:
parent
9bab925123
commit
bb62c433fc
@ -28,7 +28,7 @@ This setup is what has been powering my own personal email since September 2013.
|
|||||||
Please see the initial and very barebones [Documentation](docs/index.md) for more information on how to set up a Mail-in-a-Box. But in short, it's like this:
|
Please see the initial and very barebones [Documentation](docs/index.md) for more information on how to set up a Mail-in-a-Box. But in short, it's like this:
|
||||||
|
|
||||||
sudo apt-get install -y git
|
sudo apt-get install -y git
|
||||||
git clone https://github.com/tauberer/mailinabox
|
git clone https://github.com/joshdata/mailinabox
|
||||||
cd mailinabox
|
cd mailinabox
|
||||||
sudo scripts/start.sh
|
sudo scripts/start.sh
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ Configuring the Server
|
|||||||
After logging into your server with SSH and becoming root, type the following in the console:
|
After logging into your server with SSH and becoming root, type the following in the console:
|
||||||
|
|
||||||
sudo apt-get install -y git
|
sudo apt-get install -y git
|
||||||
git clone https://github.com/tauberer/mailinabox
|
git clone https://github.com/joshdata/mailinabox
|
||||||
cd mailinabox
|
cd mailinabox
|
||||||
|
|
||||||
Now you've got the Mail-in-a-Box source code stored on your server. The next command starts the automatic configuration of the server:
|
Now you've got the Mail-in-a-Box source code stored on your server. The next command starts the automatic configuration of the server:
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
source /etc/mailinabox.conf # load global vars
|
source /etc/mailinabox.conf # load global vars
|
||||||
|
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -q -y \
|
DEBIAN_FRONTEND=noninteractive apt-get -q -y install \
|
||||||
postfix postgrey \
|
postfix postgrey \
|
||||||
dovecot-core dovecot-imapd dovecot-lmtpd dovecot-sqlite sqlite3 \
|
dovecot-core dovecot-imapd dovecot-lmtpd dovecot-sqlite sqlite3 \
|
||||||
openssl
|
openssl
|
||||||
|
@ -46,7 +46,7 @@ if [ -z "$PUBLIC_IP" ]; then
|
|||||||
read -e -i "`hostname -i`" -p "Public IP: " PUBLIC_IP
|
read -e -i "`hostname -i`" -p "Public IP: " PUBLIC_IP
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create the user named "userconfig-data" and store all persistent user
|
# Create the user named "user-data" and store all persistent user
|
||||||
# data (mailboxes, etc.) in that user's home directory.
|
# data (mailboxes, etc.) in that user's home directory.
|
||||||
if [ -z "$STORAGE_ROOT" ]; then
|
if [ -z "$STORAGE_ROOT" ]; then
|
||||||
STORAGE_USER=user-data
|
STORAGE_USER=user-data
|
||||||
|
@ -13,7 +13,7 @@ apt-get -q -y install python3
|
|||||||
#
|
#
|
||||||
# These services don't need further configuration and are started immediately after installation.
|
# These services don't need further configuration and are started immediately after installation.
|
||||||
|
|
||||||
apt-get install -q -y ntp fail2ban
|
apt-get -q -y install ntp fail2ban
|
||||||
|
|
||||||
# Turn on the firewall. First allow incoming SSH, then turn on the firewall.
|
# Turn on the firewall. First allow incoming SSH, then turn on the firewall.
|
||||||
# Other ports will be opened at the point where we set up those services.
|
# Other ports will be opened at the point where we set up those services.
|
||||||
|
Loading…
Reference in New Issue
Block a user