Newer
Older
# _____ _ _
# | __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
# | __| _| -_| -_| . | . | | . | . | | -_|
# |__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
# This is too complicated to configure for the webadmin system
# Needs some way to create an account noninteractively
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
MAILPILE_DOMAIN_NAME=
MAILPILE_CODE=
MAILPILE_ONION_PORT=8103
MAILPILE_REPO="https://github.com/mailpile/Mailpile"
MAILPILE_COMMIT='00f5fc57aaa7f19629e8825c5600305bd6ad7929'
MAILPILE_SHORT_DESCRIPTION=$'Email system'
MAILPILE_DESCRIPTION=$'Email system'
mailpile_variables=(MAILPILE_REPO
MAILPILE_DOMAIN_NAME
MAILPILE_CODE
ONION_ONLY
DDNS_PROVIDER
function upgrade_distro_mailpile {
target_distro="$1"
if [[ "$target_distro" == 'buster' ]]; then
echo -n ''
fi
}
function logging_on_mailpile {
echo -n ''
}
function logging_off_mailpile {
echo -n ''
}
# NOTE: this is a single user system
ONION_ONLY='no'
fi
if [[ $ONION_ONLY != "no" ]]; then
MAILPILE_DOMAIN_NAME='mailpile.local'
write_config_param "MAILPILE_DOMAIN_NAME" "$MAILPILE_DOMAIN_NAME"
else
function_check interactive_site_details
interactive_site_details "mailpile" "MAILPILE_DOMAIN_NAME" "MAILPILE_CODE"
fi
APP_INSTALLED=1
}
function change_password_mailpile {
echo -n ''
#${PROJECT_NAME}-pass -u $1 -a mailpile -p "$2"
}
function reconfigure_mailpile {
echo -n ''
}
function upgrade_mailpile {
read_config_param "MAILPILE_DOMAIN_NAME"
CURR_COMMIT=$(get_completion_param "mailpile commit")
fi
if [[ "$CURR_COMMIT" == "$MAILPILE_COMMIT" ]]; then
return
set_repo_commit /var/www/$MAILPILE_DOMAIN_NAME/mail "mailpile commit" "$MAILPILE_COMMIT" $MAILPILE_REPO
cd "/var/www/$MAILPILE_DOMAIN_NAME/mail" || exit 23
chown -R mailpile:mailpile "/var/www/$MAILPILE_DOMAIN_NAME/mail"
}
function remove_mailpile {
if [ ${#MAILPILE_DOMAIN_NAME} -eq 0 ]; then
return
fi
systemctl stop mailpile
systemctl disable mailpile
rm /etc/systemd/system/mailpile.service
nginx_dissite "$MAILPILE_DOMAIN_NAME"
remove_certs "${MAILPILE_DOMAIN_NAME}"
if [ -f "/etc/nginx/sites-available/$MAILPILE_DOMAIN_NAME" ]; then
rm -f "/etc/nginx/sites-available/$MAILPILE_DOMAIN_NAME"
if [ -d "/var/www/$MAILPILE_DOMAIN_NAME" ]; then
rm -rf "/var/www/$MAILPILE_DOMAIN_NAME"
Bob Mottram
committed
fi
function_check remove_ddns_domain
groupdel -f mailpile
userdel -r mailpile
remove_config_param MAILPILE_DOMAIN_NAME
remove_config_param MAILPILE_CODE
function_check remove_onion_service
remove_onion_service mailpile ${MAILPILE_ONION_PORT}
remove_completion_param "install_mailpile"
sed -i '/Mailpile/d' "$COMPLETION_FILE"
sed -i '/mailpile/d' "$COMPLETION_FILE"
}
function install_mailpile {
if [ ! $ONION_ONLY ]; then
ONION_ONLY='no'
fi
if [ ! $MAILPILE_DOMAIN_NAME ]; then
echo $'The mailpile domain name was not specified'
$INSTALL_PACKAGES python-pip python-lxml python-dev libjpeg-dev
increment_app_install_progress
$INSTALL_PACKAGES openssl python-pgpdump python-cryptography libssl-dev
if [ ! -d /var/www/$MAILPILE_DOMAIN_NAME ]; then
mkdir /var/www/$MAILPILE_DOMAIN_NAME
fi
cd "/var/www/$MAILPILE_DOMAIN_NAME" || exit 26
if [ -d /var/www/$MAILPILE_DOMAIN_NAME/mail ]; then
rm -rf /var/www/$MAILPILE_DOMAIN_NAME/mail
if [ -d /repos/mailpile ]; then
mkdir mail
git pull
else
git_clone $MAILPILE_REPO mail
fi
cd "/var/www/$MAILPILE_DOMAIN_NAME/mail" || exit 63
git checkout $MAILPILE_COMMIT -b $MAILPILE_COMMIT
set_completion_param "mailpile commit" "$MAILPILE_COMMIT"
if [ ! -f requirements-dev.txt ]; then
echo $'No python requirements file found'
adduser --system --home=/var/www/$MAILPILE_DOMAIN_NAME/mail/ --group mailpile
increment_app_install_progress
adduser mailpile "$MY_USERNAME"
if [[ "$ONION_ONLY" == 'no' ]]; then
chgrp -R ssl-cert /etc/letsencrypt
chmod -R g=rX /etc/letsencrypt
usermod -a -G ssl-cert mailpile
fi
chown -R mailpile: /var/www/$MAILPILE_DOMAIN_NAME/mail/
su -c "cd /var/www/$MAILPILE_DOMAIN_NAME/mail && ./mp --setup" - mailpile
MAILPILE_ONION_HOSTNAME=$(add_onion_service mailpile 80 ${MAILPILE_ONION_PORT})
{ echo '[Unit]';
echo 'Description=Mailpile Email Client';
echo 'After=syslog.target network.target nginx.target';
echo '';
echo '[Service]';
echo 'User=mailpile';
echo 'Group=mailpile';
echo "WorkingDirectory=/var/www/$MAILPILE_DOMAIN_NAME/mail";
echo "ExecStart=/var/www/$MAILPILE_DOMAIN_NAME/mail/mp --www=127.0.0.1:${MAILPILE_PORT} --wait";
echo 'PrivateTmp=true';
echo 'PrivateDevices=false';
echo 'NoNewPrivileges=true';
echo 'CapabilityBoundingSet=~CAP_SYS_ADMIN';
echo '';
echo '[Install]';
echo 'WantedBy=multi-user.target'; } > /etc/systemd/system/mailpile.service
mailpile_nginx_site="/etc/nginx/sites-available/$MAILPILE_DOMAIN_NAME"
if [[ $ONION_ONLY == "no" ]]; then
function_check nginx_http_redirect
nginx_http_redirect $MAILPILE_DOMAIN_NAME
{ echo 'server {';
echo ' listen 443 ssl;';
echo ' #listen [::]:443 ssl;';
echo " server_name $MAILPILE_DOMAIN_NAME;";
echo '';
echo ' # Security'; } >> $mailpile_nginx_site
nginx_security_options "$MAILPILE_DOMAIN_NAME"
nginx_robots "$MAILPILE_DOMAIN_NAME"
{ echo ' add_header Strict-Transport-Security max-age=15768000;';
echo '';
echo ' # Logs';
echo ' access_log /dev/null;';
echo ' error_log /dev/null;';
echo '';
echo ' # Root';
echo " root /var/www/$MAILPILE_DOMAIN_NAME/mail;";
echo '';
echo ' location / {'; } >> $mailpile_nginx_site
{ echo " rewrite /(.*) /\$1 break;";
echo " proxy_set_header X-Real-IP \$remote_addr;";
echo " proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;";
echo " proxy_set_header Host \$http_host;";
echo ' proxy_set_header X-NginX-Proxy true;';
echo " proxy_pass http://localhost:${MAILPILE_PORT};";
echo ' proxy_redirect off;';
echo ' }';
echo '}';
echo ''; } >> $mailpile_nginx_site
{ echo 'server {';
echo " listen 127.0.0.1:$MAILPILE_ONION_PORT default_server;";
echo " server_name $MAILPILE_ONION_HOSTNAME;";
echo ''; } >> $mailpile_nginx_site
{ echo '';
echo ' # Logs';
echo ' access_log /dev/null;';
echo ' error_log /dev/null;';
echo '';
echo ' # Root';
echo " root /var/www/$MAILPILE_DOMAIN_NAME/mail;";
echo '';
echo ' location / {'; } >> $mailpile_nginx_site
{ echo " rewrite /(.*) /\$1 break;";
echo " proxy_set_header X-Real-IP \$remote_addr;";
echo " proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;";
echo " proxy_set_header Host \$http_host;";
echo ' proxy_set_header X-NginX-Proxy true;';
echo " proxy_pass http://localhost:${MAILPILE_PORT};";
echo ' proxy_redirect off;';
echo ' }';
echo '}'; } >> $mailpile_nginx_site
if [ ! -f "/etc/ssl/certs/${MAILPILE_DOMAIN_NAME}.pem" ]; then
create_site_certificate "$MAILPILE_DOMAIN_NAME" 'yes'
if [ -f "/etc/ssl/certs/${MAILPILE_DOMAIN_NAME}.crt" ]; then
mv "/etc/ssl/certs/${MAILPILE_DOMAIN_NAME}.crt" "/etc/ssl/certs/${MAILPILE_DOMAIN_NAME}.pem"
if [ -f "/etc/ssl/certs/${MAILPILE_DOMAIN_NAME}.pem" ]; then
chown root:root "/etc/ssl/certs/${MAILPILE_DOMAIN_NAME}.pem"
sed -i "s|.crt|.pem|g" "/etc/nginx/sites-available/${MAILPILE_DOMAIN_NAME}"
if [ -f "/etc/ssl/private/${MAILPILE_DOMAIN_NAME}.key" ]; then
chown root:root "/etc/ssl/private/${MAILPILE_DOMAIN_NAME}.key"
# if strict https is enforced then buttons don't work. This is probably a security bug
if [ -d "/var/www/$MAILPILE_DOMAIN_NAME/mail/.gnupg" ]; then
mv "/var/www/$MAILPILE_DOMAIN_NAME/mail/.gnupg" "/var/www/$MAILPILE_DOMAIN_NAME/mail/.gnupg_orig"
cp -r "/home/$MY_USERNAME/.gnupg" "/var/www/$MAILPILE_DOMAIN_NAME/mail/"
chown -R mailpile:mailpile "/var/www/$MAILPILE_DOMAIN_NAME/mail/.gnupg"
chmod +x "/var/www/$MAILPILE_DOMAIN_NAME/mail/.gnupg"
increment_app_install_progress
# turn off ssl in dovecot
sed -i 's|#ssl =.*|ssl = no|g' /etc/dovecot/conf.d/10-ssl.conf
sed -i 's|ssl =.*|ssl = no|g' /etc/dovecot/conf.d/10-ssl.conf
# set ssl certs, just in case we want to use them later
if [[ "$ONION_ONLY" == "no" ]]; then
if [ -f "/etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/fullchain.pem" ]; then
sed -i "s|#ssl_cert =.*|ssl_cert = </etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/fullchain.pem|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|ssl_cert =.*|ssl_cert = </etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/fullchain.pem|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|#ssl_key =.*|ssl_key = </etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/privkey.pem|g" /etc/dovecot/conf.d/10-ssl.conf
sed -i "s|ssl_key =.*|ssl_key = </etc/letsencrypt/live/${DEFAULT_DOMAIN_NAME}/privkey.pem|g" /etc/dovecot/conf.d/10-ssl.conf
fi
groupadd ssl-cert
usermod -a -G ssl-cert dovecot
fi
increment_app_install_progress
systemctl enable mailpile
systemctl daemon-reload
systemctl start mailpile
increment_app_install_progress
systemctl restart nginx
set_completion_param "mailpile domain" "$MAILPILE_DOMAIN_NAME"
APP_INSTALLED=1
}
# NOTE: deliberately no exit 0