mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
walk the user through choosing the PRIMARY_HOSTNAME by first asking for their email address
This commit is contained in:
parent
fed5959288
commit
b5aa1b0f31
14
management/mailconfig.py
Normal file → Executable file
14
management/mailconfig.py
Normal file → Executable file
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
import subprocess, shutil, os, sqlite3, re
|
import subprocess, shutil, os, sqlite3, re
|
||||||
import utils
|
import utils
|
||||||
|
|
||||||
@ -19,7 +21,8 @@ def validate_email(email, strict):
|
|||||||
ATEXT = r'[\w!#$%&\'\*\+\-/=\?\^`\{\|\}~]' # see 3.2.4
|
ATEXT = r'[\w!#$%&\'\*\+\-/=\?\^`\{\|\}~]' # see 3.2.4
|
||||||
|
|
||||||
DOT_ATOM_TEXT = ATEXT + r'+(?:\.' + ATEXT + r'+)*' # see 3.2.4
|
DOT_ATOM_TEXT = ATEXT + r'+(?:\.' + ATEXT + r'+)*' # see 3.2.4
|
||||||
ADDR_SPEC = '^%s@%s$' % (DOT_ATOM_TEXT, DOT_ATOM_TEXT) # see 3.4.1
|
DOT_ATOM_TEXT2 = ATEXT + r'+(?:\.' + ATEXT + r'+)+' # as above, but with a "+" since the host part must be under some TLD
|
||||||
|
ADDR_SPEC = '^%s@%s$' % (DOT_ATOM_TEXT, DOT_ATOM_TEXT2) # see 3.4.1
|
||||||
|
|
||||||
return re.match(ADDR_SPEC, email)
|
return re.match(ADDR_SPEC, email)
|
||||||
|
|
||||||
@ -140,3 +143,12 @@ def remove_mail_alias(source, env):
|
|||||||
# Update DNS in case any domains are removed.
|
# Update DNS in case any domains are removed.
|
||||||
from dns_update import do_dns_update
|
from dns_update import do_dns_update
|
||||||
return do_dns_update(env)
|
return do_dns_update(env)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import sys
|
||||||
|
if len(sys.argv) > 2 and sys.argv[1] == "validate-email":
|
||||||
|
# Validate that we can create a Dovecot account for a given string.
|
||||||
|
if validate_email(sys.argv[2], True):
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
sys.exit(1)
|
||||||
|
@ -4,9 +4,20 @@
|
|||||||
|
|
||||||
source setup/functions.sh # load our functions
|
source setup/functions.sh # load our functions
|
||||||
|
|
||||||
|
if [ -t 0 ]; then
|
||||||
|
# In an interactive shell...
|
||||||
|
echo
|
||||||
|
echo "Hello and thanks for deploying a Mail-in-a-Box!"
|
||||||
|
echo "-----------------------------------------------"
|
||||||
|
echo
|
||||||
|
echo "I'm going to ask you a few questions. To change your answers later,"
|
||||||
|
echo "later, just re-run this script."
|
||||||
|
fi
|
||||||
|
|
||||||
# Check system setup.
|
# Check system setup.
|
||||||
|
|
||||||
if [ "`lsb_release -d | sed 's/.*:\s*//'`" != "Ubuntu 14.04 LTS" ]; then
|
if [ "`lsb_release -d | sed 's/.*:\s*//'`" != "Ubuntu 14.04 LTS" ]; then
|
||||||
|
echo
|
||||||
echo "Mail-in-a-Box only supports being installed on Ubuntu 14.04, sorry. You are running:"
|
echo "Mail-in-a-Box only supports being installed on Ubuntu 14.04, sorry. You are running:"
|
||||||
echo
|
echo
|
||||||
lsb_release -d | sed 's/.*:\s*//'
|
lsb_release -d | sed 's/.*:\s*//'
|
||||||
@ -21,24 +32,52 @@ if [ -f /etc/mailinabox.conf ]; then
|
|||||||
source /tmp/mailinabox.prev.conf
|
source /tmp/mailinabox.prev.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Gather information from the user about the hostname and public IP
|
# The box needs a name.
|
||||||
# address of this host.
|
|
||||||
if [ -z "$PRIMARY_HOSTNAME" ]; then
|
if [ -z "$PRIMARY_HOSTNAME" ]; then
|
||||||
if [ -z "$DEFAULT_PRIMARY_HOSTNAME" ]; then
|
if [ -z "$DEFAULT_PRIMARY_HOSTNAME" ]; then
|
||||||
# set a default on first run
|
# This is the first run. Ask the user for his email address so we can
|
||||||
DEFAULT_PRIMARY_HOSTNAME=`get_default_hostname`
|
# provide the best default for the box's hostname.
|
||||||
|
echo
|
||||||
|
echo "What email address are you setting this box up to manage?"
|
||||||
|
echo ""
|
||||||
|
echo "The part after the @-sign must be a domain name or subdomain"
|
||||||
|
echo "that you control. You can add other email addresses to this"
|
||||||
|
echo "box later (including email addresses on other domain names"
|
||||||
|
echo "or subdomains you control)."
|
||||||
|
echo
|
||||||
|
echo "We've guessed an email address. Backspace it and type in what"
|
||||||
|
echo "you really want."
|
||||||
|
echo
|
||||||
|
read -e -i "me@`get_default_hostname`" -p "Email Address: " EMAIL_ADDR
|
||||||
|
|
||||||
|
while ! management/mailconfig.py validate-email "$EMAIL_ADDR"
|
||||||
|
do
|
||||||
|
echo "That's not a valid email address."
|
||||||
|
echo
|
||||||
|
read -e -i "$EMAIL_ADDR" -p "Email Address: " EMAIL_ADDR
|
||||||
|
done
|
||||||
|
|
||||||
|
# Take the part after the @-sign as the user's domain name, and add
|
||||||
|
# 'box.' to the beginning to create a default hostname for this machine.
|
||||||
|
DEFAULT_PRIMARY_HOSTNAME=box.$(echo $EMAIL_ADDR | sed 's/.*@//')
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Enter the hostname you want to assign to this machine."
|
echo "This box needs a name, called a 'hostname'. The name will form a part"
|
||||||
echo "We've guessed a value. Just backspace it if it's wrong."
|
echo "of the box's web address."
|
||||||
echo "Josh uses box.occams.info as his hostname. Yours should"
|
echo
|
||||||
echo "be similar."
|
echo "We recommend that the name be a subdomain of the domain in your email"
|
||||||
|
echo "address, so we're suggesting $DEFAULT_PRIMARY_HOSTNAME."
|
||||||
|
echo
|
||||||
|
echo "You can change it, but we recommend you don't."
|
||||||
echo
|
echo
|
||||||
|
|
||||||
read -e -i "$DEFAULT_PRIMARY_HOSTNAME" -p "Hostname: " PRIMARY_HOSTNAME
|
read -e -i "$DEFAULT_PRIMARY_HOSTNAME" -p "Hostname: " PRIMARY_HOSTNAME
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# If the machine is behind a NAT, inside a VM, etc., it may not know
|
||||||
|
# its IP address on the public network / the Internet. We need to
|
||||||
|
# confirm our best guess with the user.
|
||||||
if [ -z "$PUBLIC_IP" ]; then
|
if [ -z "$PUBLIC_IP" ]; then
|
||||||
if [ -z "$DEFAULT_PUBLIC_IP" ]; then
|
if [ -z "$DEFAULT_PUBLIC_IP" ]; then
|
||||||
# set a default on first run
|
# set a default on first run
|
||||||
@ -46,14 +85,14 @@ if [ -z "$PUBLIC_IP" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Enter the public IP address of this machine, as given to"
|
echo "Enter the public IP address of this machine, as given to you by your"
|
||||||
echo "you by your ISP. We've guessed a value, but just backspace"
|
echo "ISP. We've guessed a value, but just backspace it if it's wrong."
|
||||||
echo "it if it's wrong."
|
|
||||||
echo
|
echo
|
||||||
|
|
||||||
read -e -i "$DEFAULT_PUBLIC_IP" -p "Public IP: " PUBLIC_IP
|
read -e -i "$DEFAULT_PUBLIC_IP" -p "Public IP: " PUBLIC_IP
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Same for IPv6.
|
||||||
if [ -z "$PUBLIC_IPV6" ]; then
|
if [ -z "$PUBLIC_IPV6" ]; then
|
||||||
if [ -z "$DEFAULT_PUBLIC_IPV6" ]; then
|
if [ -z "$DEFAULT_PUBLIC_IPV6" ]; then
|
||||||
# set a default on first run
|
# set a default on first run
|
||||||
@ -150,11 +189,16 @@ if [ -z "`tools/mail.py user`" ]; then
|
|||||||
# The outut of "tools/mail.py user" is a list of mail users. If there
|
# The outut of "tools/mail.py user" is a list of mail users. If there
|
||||||
# aren't any yet, it'll be empty.
|
# aren't any yet, it'll be empty.
|
||||||
|
|
||||||
|
# If we didn't ask for an email address at the start, do so now.
|
||||||
|
if [ -z "$EMAIL_ADDR" ]; then
|
||||||
# In an interactive shell, ask the user for an email address.
|
# In an interactive shell, ask the user for an email address.
|
||||||
if [ -t 0 ]; then
|
if [ -t 0 ]; then
|
||||||
echo
|
echo
|
||||||
echo "Let's create your first mail user."
|
echo "Let's create your first mail user."
|
||||||
read -e -i "user@$PRIMARY_HOSTNAME" -p "Email Address: " EMAIL_ADDR
|
read -e -i "user@$PRIMARY_HOSTNAME" -p "Email Address: " EMAIL_ADDR
|
||||||
|
|
||||||
|
# But in a non-interactive shell, just make something up. This
|
||||||
|
# is normally for testing.
|
||||||
else
|
else
|
||||||
# Use me@PRIMARY_HOSTNAME
|
# Use me@PRIMARY_HOSTNAME
|
||||||
EMAIL_ADDR=me@$PRIMARY_HOSTNAME
|
EMAIL_ADDR=me@$PRIMARY_HOSTNAME
|
||||||
@ -163,6 +207,10 @@ if [ -z "`tools/mail.py user`" ]; then
|
|||||||
echo "Creating a new mail account for $EMAIL_ADDR with password $EMAIL_PW."
|
echo "Creating a new mail account for $EMAIL_ADDR with password $EMAIL_PW."
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo
|
||||||
|
echo "Okay. I'm about to set up $EMAIL_ADDR for you."
|
||||||
|
fi
|
||||||
|
|
||||||
tools/mail.py user add $EMAIL_ADDR $EMAIL_PW # will ask for password if none given
|
tools/mail.py user add $EMAIL_ADDR $EMAIL_PW # will ask for password if none given
|
||||||
tools/mail.py alias add hostmaster@$PRIMARY_HOSTNAME $EMAIL_ADDR
|
tools/mail.py alias add hostmaster@$PRIMARY_HOSTNAME $EMAIL_ADDR
|
||||||
|
Loading…
Reference in New Issue
Block a user