You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							66 lines
						
					
					
						
							1.9 KiB
						
					
					
				
			
		
		
	
	
							66 lines
						
					
					
						
							1.9 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: calculate disk usage for all mail domains
 | 
						|
# options: USER
 | 
						|
#
 | 
						|
# example: v-update-mail-domains-disk admin
 | 
						|
#
 | 
						|
# This function calculates disk usage for all mail domains.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
user=$1
 | 
						|
 | 
						|
# Includes
 | 
						|
# shellcheck source=/etc/hestiacp/hestia.conf
 | 
						|
source /etc/hestiacp/hestia.conf
 | 
						|
# shellcheck source=/usr/local/hestia/func/main.sh
 | 
						|
source $HESTIA/func/main.sh
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                    Verifications                         #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
check_args '1' "$#" 'USER'
 | 
						|
is_format_valid 'user'
 | 
						|
is_system_enabled "$MAIL_SYSTEM" 'MAIL_SYSTEM'
 | 
						|
is_object_valid 'user' 'USER' "$user"
 | 
						|
if [ -z "$MAIL_SYSTEM" ] || [ "$MAIL_SYSTEM" = 'remote' ]; then
 | 
						|
	exit
 | 
						|
fi
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Starting loop
 | 
						|
for domain in $($BIN/v-list-mail-domains $user plain | cut -f 1); do
 | 
						|
	dom_disk=0
 | 
						|
	for account in $($BIN/v-list-mail-accounts $user $domain plain | cut -f 1); do
 | 
						|
		home_dir=$HOMEDIR/$user/mail/$domain/$account
 | 
						|
		if [ -e "$home_dir" ]; then
 | 
						|
			udisk=$(nice -n 19 du -shm $home_dir | cut -f 1)
 | 
						|
		else
 | 
						|
			udisk=0
 | 
						|
		fi
 | 
						|
		update_object_value "mail/$domain" 'ACCOUNT' "$account" '$U_DISK' "$udisk"
 | 
						|
		dom_disk=$((dom_disk + udisk))
 | 
						|
	done
 | 
						|
	update_object_value 'mail' 'DOMAIN' "$domain" '$U_DISK' "$dom_disk"
 | 
						|
done
 | 
						|
 | 
						|
recalc_user_disk_usage
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Logging
 | 
						|
log_event "$OK" "$ARGUMENTS"
 | 
						|
 | 
						|
exit
 |