blob: 73eab52dede6dcab21407bd11b8f7f4ff8215fd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Gitea access token. The token should have permissions to manage users.
token = ""
# The gitea instance URL beginning wth "https://".
server = "https://"
# List of words prohibited in the description and the website field.
spam_words = [
"casino",
"gambling"
]
# Unusual email address exteions.
mail_domains = [
".online",
".shop",
".website"
]
# If the user hasn't logged in since the registration for this amount of days, remove his account.
no_login = 30
|