test Drupal site working on Koality Theme Builder
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

29 行
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