diff options
author | Lauri Ojansivu <x@xet7.org> | 2019-08-26 22:27:45 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2019-08-26 22:27:45 +0300 |
commit | 0083215ea3955a950d345d44a8663e5b05e8f00f (patch) | |
tree | aa3b41c0b5dd7c714b0fdc687d25bddd38124200 /start-wekan.bat | |
parent | cdea7e88691f82f3d179bd21cceffde0a136f67a (diff) | |
download | wekan-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.bat')
-rwxr-xr-x | start-wekan.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/start-wekan.bat b/start-wekan.bat index d4628ee7..063c752a 100755 --- a/start-wekan.bat +++ b/start-wekan.bat @@ -45,19 +45,19 @@ REM SET ACCOUNTS_LOCKOUT_UNKNOWN_USERS_FAILURE_WINDOW=15 REM # ==== BIGEVENTS DUE ETC NOTIFICATIONS ===== REM # https://github.com/wekan/wekan/pull/2541 -REM # Introduced a system env var BIGEVENTS_PATTERN default as "due", +REM # Introduced a system env var BIGEVENTS_PATTERN default as "NONE", REM # so any activityType matches the pattern, system will send out REM # notifications to all board members no matter they are watching REM # or tracking the board or not. Owner of the wekan server can REM # disable the feature by setting this variable to "NONE" or REM # change the pattern to any valid regex. i.e. '|' delimited REM # activityType names. -REM # a) Default +REM # a) Example REM SET BIGEVENTS_PATTERN=due REM # b) All REM SET BIGEVENTS_PATTERN=received|start|due|end REM # c) Disabled -REM SET BIGEVENTS_PATTERN=NONE +SET BIGEVENTS_PATTERN=NONE REM # ==== EMAIL DUE DATE NOTIFICATION ===== REM # https://github.com/wekan/wekan/pull/2536 |