1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00
vesta/bin/v-add-mail-account-fwd-only

81 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

2013-11-13 11:40:23 +02:00
#!/bin/bash
# info: add mail account forward-only flag
# options: USER DOMAIN ACCOUNT
#
# The function adds fwd-only flag
#----------------------------------------------------------#
# Variable&Function #
#----------------------------------------------------------#
2015-11-06 17:38:58 +02:00
# Argument definition
2013-11-13 11:40:23 +02:00
user=$1
domain=$2
2017-03-05 23:34:07 +01:00
domain_idn=$2
2013-11-13 11:40:23 +02:00
account=$3
# Includes
source $VESTA/func/main.sh
source $VESTA/func/domain.sh
source $VESTA/conf/vesta.conf
# Define mail user
if [ "$MAIL_SYSTEM" = 'exim4' ]; then
MAIL_USER=Debian-exim
else
MAIL_USER=exim
fi
# Additional argument formatting
format_domain
format_domain_idn
2017-03-05 23:34:07 +01:00
# TODO: $domain_idn not used in this script - maybe $domain should be converted to $doman_idn ?
2013-11-13 11:40:23 +02:00
#----------------------------------------------------------#
# Verifications #
#----------------------------------------------------------#
check_args '3' "$#" 'USER DOMAIN ACCOUNT'
is_format_valid 'user' 'domain' 'account'
2013-11-13 11:40:23 +02:00
is_system_enabled "$MAIL_SYSTEM" 'MAIL_SYSTEM'
is_object_valid 'user' 'USER' "$user"
is_object_unsuspended 'user' 'USER' "$user"
is_object_valid 'mail' 'DOMAIN' "$domain"
is_object_unsuspended 'mail' 'DOMAIN' "$domain"
is_object_valid "mail/$domain" 'ACCOUNT' "$account"
is_object_unsuspended "mail/$domain" 'ACCOUNT' "$account"
fwd=$(get_object_value "mail/$domain" 'ACCOUNT' "$account" '$FWD')
if [ -z "$fwd" ]; then
echo "Error: forward doesn't exist"
log_event "$E_NOTEXIST $ARGUMENTS"
2013-11-13 11:40:23 +02:00
exit $E_NOTEXIST
fi
#----------------------------------------------------------#
# Action #
#----------------------------------------------------------#
# Adding account to fwd_only
2014-04-01 23:51:10 +03:00
if [[ "$MAIL_SYSTEM" =~ exim ]]; then
echo "$account" >> $HOMEDIR/$user/conf/mail/$domain/fwd_only
2014-04-01 23:51:10 +03:00
chown -R $MAIL_USER:mail $HOMEDIR/$user/conf/mail/$domain/fwd_only
2013-11-13 11:40:23 +02:00
fi
#----------------------------------------------------------#
# Vesta #
#----------------------------------------------------------#
# Updating config
add_object_key "mail/$domain" 'ACCOUNT' "$account" 'FWD_ONLY' 'MD5'
update_object_value "mail/$domain" 'ACCOUNT' "$account" '$FWD_ONLY' "yes"
# Logging
log_history "added fwd_only flag for $account@$domain"
log_event "$OK" "$ARGUMENTS"
2013-11-13 11:40:23 +02:00
exit