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