DEBUG="n"
QUIET='n'
SIMULATE='n'
-FORCE="y"
+FORCE="n"
VERSION="4.1"
info "Compiling '${CYAN}${dovecot_sieve_file}${NORMAL}' ..."
debug "Executing: sievec \"${dovecot_sieve_file}\" || true"
if [[ "${SIMULATE}" != "y" ]] ; then
- sievec "${dovecot_sieve_file}" 2>&1 | grep -viw debug || true
+ if [[ "${VERBOSE}" == "y" ]] ; then
+ sievec "${dovecot_sieve_file}" || true
+ else
+ sievec "${dovecot_sieve_file}" 2>&1 | grep -viw debug || true
+ fi
fi
if [[ -f "${compiled_sieve}" ]] ; then
CHOWN "${VMAIL_USER}:${VMAIL_GROUP}" "${compiled_sieve}"