fix encrypted mails

This commit is contained in:
2015-07-10 12:43:40 +03:00
parent 77bac71bf4
commit 4015be2500

View File

@@ -178,7 +178,7 @@ if [ "$ACTION" == "adduser" ]; then
if [ $? == 0 ]; then
# Send infomail
mailsend "New Email account created" \
$MAILTYPE "New Email account created" \
"A new Email account has been created." \
"User: $USER | Password: $PASS"
@@ -210,7 +210,7 @@ if [ "$ACTION" == "changepw" ]; then
if [ $? == 0 ]; then
# Send infomail
mailsend "Email password changed" \
$MAILTYPE "Email password changed" \
"An Email account password has been changed." \
"User: $USER | New Password: $PASS"
@@ -309,7 +309,7 @@ if [ "$ACTION" == "deluser" ]; then
if [ $? == 0 ]; then
# Send infomail
mailsend "Email account deleted" \
$MAILTYPE "Email account deleted" \
"An Email account has been deleted." \
"User: $USER"