minor fixes to comments, argument order (consistency?), the github URL changed long ago

This commit is contained in:
Joshua Tauberer 2014-04-25 12:25:07 +00:00
parent 9bab925123
commit bb62c433fc
5 changed files with 5 additions and 5 deletions

View File

@ -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:
sudo apt-get install -y git
git clone https://github.com/tauberer/mailinabox
git clone https://github.com/joshdata/mailinabox
cd mailinabox
sudo scripts/start.sh

View File

@ -32,7 +32,7 @@ Configuring the Server
After logging into your server with SSH and becoming root, type the following in the console:
sudo apt-get install -y git
git clone https://github.com/tauberer/mailinabox
git clone https://github.com/joshdata/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:

View File

@ -14,7 +14,7 @@
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 \
dovecot-core dovecot-imapd dovecot-lmtpd dovecot-sqlite sqlite3 \
openssl

View File

@ -46,7 +46,7 @@ if [ -z "$PUBLIC_IP" ]; then
read -e -i "`hostname -i`" -p "Public IP: " PUBLIC_IP
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.
if [ -z "$STORAGE_ROOT" ]; then
STORAGE_USER=user-data

View File

@ -13,7 +13,7 @@ apt-get -q -y install python3
#
# 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.
# Other ports will be opened at the point where we set up those services.