Skip to content

Commit 2dfa58b

Browse files
AlexCXCanconrad
andauthored
add automation-rules conf (#159)
* 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]>
1 parent 647bd16 commit 2dfa58b

File tree

1 file changed

+23
-11
lines changed

1 file changed

+23
-11
lines changed

docs/config/dtable-events-conf.md

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# dtable-event.conf settings
22

3-
## Database configuration
3+
## Database Configuration
44

5-
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`
66

77
```
88
[DATABASE]
@@ -15,11 +15,11 @@ db_name = seafile_db
1515
1616
```
1717

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.
1919

20-
## Redis configuration
20+
## Redis Configuration
2121

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`
2323

2424
```
2525
[REDIS]
@@ -28,27 +28,39 @@ port = 6379
2828
2929
```
3030

31-
## Email notifications configuration
31+
## Email Notifications Configuration
3232

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`
3434

3535
```
3636
[EMAIL SENDER]
3737
enabled = true
3838
3939
```
4040

41-
## Notification rules scanner configuration
41+
## Notification Rules Scanner Configuration
4242

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.
4444

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`
4646

4747
```
4848
[NOTIFY-SCANNER]
4949
enabled = true
50-
interval = 3600
5150
5251
```
5352

53+
## Automation Rules Configuration
5454

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.
62+
63+
```
64+
[AUTOMATION]
65+
per_minute_trigger_limit = 50
66+
```

0 commit comments

Comments
 (0)