We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 396b21d commit a1fd6fdCopy full SHA for a1fd6fd
server/scripts/handle_mailbox_soft_deleted.sh
@@ -13,7 +13,7 @@ function remove_soft_deleted_mailbox {
13
dir=$1
14
15
echo "Purging $dir"
16
-echo rm -r "$dir"
+ rm -r "$dir"
17
}
18
19
function compress_soft_deleted_mailbox {
@@ -29,7 +29,7 @@ function compress_soft_deleted_mailbox {
29
fi
30
31
echo "Compressing for $dir"
32
-echo tar cvfj "$backupfile" --remove-files "$dir" 2> >( grep -v "tar: Removing leading" >&2)
+ tar cvfj "$backupfile" --remove-files "$dir" 2> >( grep -v "tar: Removing leading" >&2)
33
34
35
# List deleted mailboxs to archive
0 commit comments