test Drupal site working on Koality Theme Builder
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

29 righe
376 B

#!/bin/bash
# set up ssmtp
if [[ $SESmailhub ]]; then
cat << EOF > /etc/ssmtp/ssmtp.conf
debug=yes
mailhub=$SESmailhub
Hostname=$HOSTNAME
FromLineOverride=yes
UseSTARTTLS=yes
EOF
fi
if [[ $SESAuthUser ]]; then
cat << EOF >> /etc/ssmtp/ssmtp.conf
$SESAuthUser
EOF
fi
if [[ $SESAuthPass ]]; then
cat << EOF >> /etc/ssmtp/ssmtp.conf
$SESAuthPass
EOF
fi
apache2-foreground