Bug qui empechait la suppression des mails

This commit is contained in:
Axel ROGER 2013-02-08 13:59:42 +00:00
parent 974507a791
commit ae478ba012
1 changed files with 2 additions and 2 deletions

View File

@ -56,9 +56,9 @@ mysql_query "SELECT id, address_id, quote(replace(path,'!','\\!')) FROM mailbox
# If dir and rm ok, DELETE
# Other case, do nothing
if [ -d "${path//\'/}" ] ; then
$ionice rm -rf "$path" && mysql_query "DELETE FROM mailbox WHERE id=$id AND mail_action='DELETING';"
$ionice rm -rf "${path//\'/}" && mysql_query "DELETE FROM mailbox WHERE id=$id AND mail_action='DELETING';"
# Do the rm again in case of newly added file during delete. Should not be usefull
test -d "$path" && $ionice rm -rf "$path"
test -d "${path//\'/}" && $ionice rm -rf "${path//\'/}"
else
mysql_query "DELETE FROM mailbox WHERE id=$id AND mail_action='DELETING';"
fi