1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/emailpoubelle_ynh.git synced 2024-09-03 18:26:29 +02:00
emailpoubelle_ynh/scripts/install

100 lines
2.9 KiB
Text
Raw Normal View History

2018-11-18 16:00:35 +01:00
#!/bin/bash
# Write all logs to file
#exec > >(tee /tmp/emailpoubelle.log)
#exec 2>&1
app=emailpoubelle
# Retrieve arguments
domain=$1
path=$2
admin=$3
is_public=$4
final_path=/var/www/$app
postfix=/etc/postfix/main.cf
cronline="0 */2 * * * www-data cd $final_path/www/; /usr/bin/php index.php > /dev/null 2>&1"
2018-11-20 23:50:48 +01:00
# Check web path availability
ynh_webpath_available $domain $path
#sudo yunohost app checkurl $domain$path -a $app
2018-11-18 16:00:35 +01:00
if [[ ! $? -eq 0 ]]; then
exit 1
fi
2018-11-20 23:50:48 +01:00
# Register (book) web path
ynh_webpath_register $app $domain $path
2018-11-18 16:00:35 +01:00
# Check user
sudo yunohost user list --json | grep -q "\"username\": \"$admin\""
if [[ ! $? -eq 0 ]]; then
echo "Wrong user"
exit 1
fi
# Save app settings
sudo yunohost app setting $app admin -v "$admin"
sudo yunohost app setting $app is_public -v "$is_public"
# Copy source files
sudo mkdir -p $final_path
sudo cp -R ../src/* $final_path
#configuring with given settings
sudo cp $final_path/conf-dist.php $final_path/conf.php
sudo chown -R www-data:www-data $final_path
sudo sed -i "s@exemple.fr@$domain@g" $final_path/conf.php
sudo sed -i "s@exemple.com@$domain@g" $final_path/conf.php
#generating random password for database
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p')
db_user=emailPoubelle
#write password to the conf file
sudo sed -i "s@motdepassedefou@$db_pwd@g" $final_path/conf.php
#setting conf file not world-readable (dude, there is a plain-text password !)
sudo chmod o-r $final_path/conf.php
#initialize database
sudo yunohost app initdb $db_user -p $db_pwd
#setting postfix to use virtual aliases file
sudo cp $postfix $postfix.emailpoubelle.bak #backup it eventually if that causes some issues
sudo sed -i "s/^virtual_alias_maps/#virtual_alias_maps/g" $postfix
echo "virtual_alias_maps = hash:$final_path/var/virtual" | sudo tee -a $postfix
#create the virtual aliases file
sudo touch $final_path/var/virtual
sudo postmap $final_path/var/virtual
sudo chown www-data $final_path/var/virtual
sudo chown www-data $final_path/var/virtual.db
#create an alias for deleted junk adresses
sudo cp /etc/aliases /etc/aliases.emailpoubelle.bak #backup it
sudo echo "devnull:/dev/null" | sudo tee -a /etc/aliases
sudo newaliases
# Modify Nginx configuration file and copy it to Nginx conf directory
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf
sudo sed -i "s@YNH_EXAMPLE_ALIAS@$final_path/www/@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
# If app is public, add url to SSOWat conf as skipped_uris
if [ "$is_public" = "Yes" ];
then
sudo yunohost app setting $app skipped_uris -v "/"
fi
#adding php-cli for cron
sudo apt-get update -qq
sudo apt-get install -yqq php5-cli
#adding cronjob for removing expired email addresses
sudo echo "$cronline" | sudo tee -a /etc/cron.d/emailpoubelle
sudo chmod 644 /etc/cron.d/emailpoubelle
# Restart services
sudo service nginx reload
sudo service postfix reload
sudo yunohost app ssowatconf