You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add automation-rules conf
* opt conf text
* opt conf text
* wording and title Case automation rule config
* title case and samll corrections
---------
Co-authored-by: Andreas Conrad <[email protected]>
The configuration of database is in the `[DATABASE]` section of the file `dtable-events.conf`
5
+
The settings for the database connection are located in the `[DATABASE]` section of the file `dtable-events.conf`
6
6
7
7
```
8
8
[DATABASE]
@@ -15,11 +15,11 @@ db_name = seafile_db
15
15
16
16
```
17
17
18
-
Note: MariaDB and MySQL is compatible. In the configuration, we use mysql.
18
+
Note: MariaDB and MySQL are compatible. In this configuration example, we use MySQL.
19
19
20
-
## Redis configuration
20
+
## Redis Configuration
21
21
22
-
The configuration of redis is in the `[REDIS]` section of the file `dtable-events.conf`
22
+
The settings for the Redis connection are located in the `[REDIS]` section of the file `dtable-events.conf`
23
23
24
24
```
25
25
[REDIS]
@@ -28,27 +28,39 @@ port = 6379
28
28
29
29
```
30
30
31
-
## Email notifications configuration
31
+
## Email Notifications Configuration
32
32
33
-
The configuration of email notifications is in the `[EMAIL SENDER]` section of the file `dtable-events.conf`
33
+
The settings for email notifications are located in the `[EMAIL SENDER]` section of the file `dtable-events.conf`
34
34
35
35
```
36
36
[EMAIL SENDER]
37
37
enabled = true
38
38
39
39
```
40
40
41
-
## Notification rules scanner configuration
41
+
## Notification Rules Scanner Configuration
42
42
43
-
Notification rules is the feature that users can set notification rules for a base and got notifications when defined criteria meet.
43
+
Notification rules are a feature that allows users to set criteria for a base and receive notifications when these criteria are met.
44
44
45
-
The configuration of notification rules scanner is in the `[NOTIFY-SCANNER]` section of the file `dtable-events.conf`
45
+
The settings for the notification rules scanner are located in the `[NOTIFY-SCANNER]` section of the file `dtable-events.conf`
46
46
47
47
```
48
48
[NOTIFY-SCANNER]
49
49
enabled = true
50
-
interval = 3600
51
50
52
51
```
53
52
53
+
## Automation Rules Configuration
54
54
55
+
In SeaTable, users have the ability to define triggers and actions within an automation rule.
56
+
These rules are then automatically executed on a base.
57
+
58
+
The settings for the automation rules are located in the `[AUTOMATION]` section of the `dtable-events.conf` file.
59
+
60
+
61
+
To maintain server stability, SeaTable includes a feature that restricts the frequency of automation rule executions. This `per_minute_trigger_limit` is set to 50 by default.
0 commit comments