summaryrefslogtreecommitdiffstats
path: root/start-wekan.sh
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-08-26 22:27:45 +0300
committerLauri Ojansivu <x@xet7.org>2019-08-26 22:27:45 +0300
commit0083215ea3955a950d345d44a8663e5b05e8f00f (patch)
treeaa3b41c0b5dd7c714b0fdc687d25bddd38124200 /start-wekan.sh
parentcdea7e88691f82f3d179bd21cceffde0a136f67a (diff)
downloadwekan-0083215ea3955a950d345d44a8663e5b05e8f00f.tar.gz
wekan-0083215ea3955a950d345d44a8663e5b05e8f00f.tar.bz2
wekan-0083215ea3955a950d345d44a8663e5b05e8f00f.zip
Default to BIGEVENTS_PATTERN=NONE so that Wekan sends less email
notifications. Thanks to rinnaz and xet7 ! Closes #2646, closes #2617
Diffstat (limited to 'start-wekan.sh')
-rwxr-xr-xstart-wekan.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/start-wekan.sh b/start-wekan.sh
index 41d41208..5c319311 100755
--- a/start-wekan.sh
+++ b/start-wekan.sh
@@ -51,19 +51,19 @@
#---------------------------------------------------------------
# ==== BIGEVENTS DUE ETC NOTIFICATIONS =====
# https://github.com/wekan/wekan/pull/2541
- # Introduced a system env var BIGEVENTS_PATTERN default as "due",
+ # Introduced a system env var BIGEVENTS_PATTERN default as "NONE",
# so any activityType matches the pattern, system will send out
# notifications to all board members no matter they are watching
# or tracking the board or not. Owner of the wekan server can
# disable the feature by setting this variable to "NONE" or
# change the pattern to any valid regex. i.e. '|' delimited
# activityType names.
- # a) Default
+ # a) Example
#export BIGEVENTS_PATTERN=due
# b) All
#export BIGEVENTS_PATTERN=received|start|due|end
# c) Disabled
- #export BIGEVENTS_PATTERN=NONE
+ export BIGEVENTS_PATTERN=NONE
#---------------------------------------------------------------
# ==== EMAIL DUE DATE NOTIFICATION =====
# https://github.com/wekan/wekan/pull/2536