Hello Forums! I'm having a problem with my hazel rules running while I'm away. Everything works fine when I come back and test, but not when unattended. 
I make use of 3 folders as follows 
- originating folder (files are copied from here to "scratch") 
- scratch folder (where hazel does all the magic and moves to "finished")
- finished folder (where I get the folders remotely)
----Originating folder rules----
--Copy Folders--
   If All conditions are met
       Kind is Folder
       Color Label is (x)
   Do the Following
       Set color label (Green)
       Copy to (enclosing folder)
       Move to (scratch folder)
I did this so the next set of folder rules won't be running on a copy in progress
----Scratch folder rules----
--Trash Folder--
   If All conditions are met
       Kind is Folder
       Size is less than 10kb
   Do the Following
       Move to (Trash)
--Trash Sample--
   If All conditions are met
       Kind is Folder
       Name is "Sample"
   Do the Following
       Move to (Trash)
--Trash NFO--
   If Any conditions are met
       Extension is "NFO"
   Do the Following
       Move to (Trash)
--Trash SFV--
   If Any conditions are met
       Extension is "SFV"
   Do the Following
       Move to (Trash)
--TVRenamer--
   If All conditions are met
       Extension is "mkv"
       Color Label is (Blue)
   Do the Following
       Set color label (X)
       Run shell script
--Move MKV--
   If All conditions are met
       Extension is "mkv"
       Color Label is not (Blue)
   Do the Following
       Move to (Finished Folder)
--Going into Subfolders--
   If All conditions are met
      Kind is Folder
      Subfolder Depth is less than 2
   Do the following
      Run Rules on folder contents
      Set color label (Red)
--UnRar Files--
   If All conditions are met
      Extension is "rar"
   Do the following
      Urarchive
      Set color label (Blue)
      Move to (Enclosing Folder)