diff --git a/server/scripts/handle_mailbox_soft_deleted.sh b/server/scripts/handle_mailbox_soft_deleted.sh
index e614dbbe4753ba820d2d4faa55838a4e482f5b94..7c7f280839d31233adabfd39832ed089e5fc66d3 100644
--- a/server/scripts/handle_mailbox_soft_deleted.sh
+++ b/server/scripts/handle_mailbox_soft_deleted.sh
@@ -34,7 +34,7 @@ function compress_soft_deleted_mailbox {
 
 # List deleted mailboxs to archive
 # -mtime +7 ===> Only mailboxes deleted more then 7 days ago
-# Test that the last dir component matches e.g. xxx-20220101094242 (14 digits)
+# Test that the last dir component matches e.g. xxx-deleted-20220101094242 (14 digits)
 # command: xxx-`date "+%Y%m%d%H%M%S"`
 find /var/vmail/*/[a-z0-9.-]*-deleted-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]  -maxdepth 0 -type d -mtime +$delay_days | while read line; do
         # example $line: "/var/vmail/example.com/info-20220101094242"