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.
10 lines
368 B
10 lines
368 B
# Remove Dovecot package
|
|
|
|
function ee_mod_remove_dovecot()
|
|
{
|
|
ee_lib_echo "$EE_SECOND Dovecot package, please wait..."
|
|
$EE_APT_GET $EE_SECOND dovecot-core dovecot-imapd dovecot-pop3d dovecot-lmtpd dovecot-mysql \
|
|
|| ee_lib_error "Unable to $EE_SECOND Dovecot, exit status = " $?
|
|
|
|
userdel -rf vmail || ee_lib_error "Unable to Remove user vmail, exit status = " $?
|
|
}
|
|
|