diff --git a/daemon/nopaqued.py b/daemon/nopaqued.py
index 25be4ca5de8f1a7a23557a92570b75a4d77d9421..9ec1bf5ad0a313658cc4896286ac276453a4de2b 100644
--- a/daemon/nopaqued.py
+++ b/daemon/nopaqued.py
@@ -10,7 +10,7 @@ import os
 
 
 def nopaqued():
-    execute_notifications = bool(os.environ.get('NOPAQUE_EXECUTE_NOTIFICATIONS'))  # noqa
+    execute_notifications = bool(os.environ.get('NOPAQUE_EXECUTE_NOTIFICATIONS', True))  # noqa
     # executing background functions
     while True:
         with ThreadPoolExecutor(max_workers=3) as executor: