We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1113e1f commit fc2ecb2Copy full SHA for fc2ecb2
func/domain.sh
@@ -506,12 +506,12 @@ is_mail_domain_new() {
506
is_mail_new() {
507
check_acc=$(grep "ACCOUNT='$1'" $USER_DATA/mail/$domain.conf)
508
if [ ! -z "$check_acc" ]; then
509
- check_result $E_EXIST "mail account $1 is already exists"
+ check_result $E_EXISTS "mail account $1 is already exists"
510
fi
511
check_als=$(awk -F "ALIAS='" '{print $2}' $USER_DATA/mail/$domain.conf )
512
check_als=$(echo "$check_als" | cut -f 1 -d "'" | grep -w $1)
513
if [ ! -z "$check_als" ]; then
514
- check_result $E_EXIST "mail alias $1 is already exists"
+ check_result $E_EXISTS "mail alias $1 is already exists"
515
516
}
517
0 commit comments