mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
Update docs for bad ini syntax in noreply (#15226)
This commit is contained in:
parent
113c1557ff
commit
8d9f191195
2 changed files with 7 additions and 5 deletions
|
@ -689,10 +689,12 @@ DEFAULT_ENABLE_TIMETRACKING = true
|
||||||
; Default value for AllowOnlyContributorsToTrackTime
|
; Default value for AllowOnlyContributorsToTrackTime
|
||||||
; Only users with write permissions can track time if this is true
|
; Only users with write permissions can track time if this is true
|
||||||
DEFAULT_ALLOW_ONLY_CONTRIBUTORS_TO_TRACK_TIME = true
|
DEFAULT_ALLOW_ONLY_CONTRIBUTORS_TO_TRACK_TIME = true
|
||||||
; Default value for the domain part of the user's email address in the git log
|
; Value for the domain part of the user's email address in the git log if user
|
||||||
; if he has set KeepEmailPrivate to true. The user's email will be replaced with a
|
; has set KeepEmailPrivate to true. The user's email will be replaced with a
|
||||||
; concatenation of the user name in lower case, "@" and NO_REPLY_ADDRESS.
|
; concatenation of the user name in lower case, "@" and NO_REPLY_ADDRESS. Default
|
||||||
NO_REPLY_ADDRESS = noreply.%(DOMAIN)s
|
; value is "noreply." + DOMAIN, where DOMAIN resolves to the value from server.DOMAIN
|
||||||
|
; Note: do not use the <DOMAIN> notation below
|
||||||
|
NO_REPLY_ADDRESS = noreply.<DOMAIN>
|
||||||
; Show Registration button
|
; Show Registration button
|
||||||
SHOW_REGISTRATION_BUTTON = true
|
SHOW_REGISTRATION_BUTTON = true
|
||||||
; Show milestones dashboard page - a view of all the user's milestones
|
; Show milestones dashboard page - a view of all the user's milestones
|
||||||
|
|
|
@ -482,7 +482,7 @@ relation to port exhaustion.
|
||||||
- `DEFAULT_ORG_VISIBILITY`: **public**: Set default visibility mode for organisations, either "public", "limited" or "private".
|
- `DEFAULT_ORG_VISIBILITY`: **public**: Set default visibility mode for organisations, either "public", "limited" or "private".
|
||||||
- `DEFAULT_ORG_MEMBER_VISIBLE`: **false** True will make the membership of the users visible when added to the organisation.
|
- `DEFAULT_ORG_MEMBER_VISIBLE`: **false** True will make the membership of the users visible when added to the organisation.
|
||||||
- `ALLOW_ONLY_EXTERNAL_REGISTRATION`: **false** Set to true to force registration only using third-party services.
|
- `ALLOW_ONLY_EXTERNAL_REGISTRATION`: **false** Set to true to force registration only using third-party services.
|
||||||
- `NO_REPLY_ADDRESS`: **DOMAIN** Default value for the domain part of the user's email address in the git log if he has set KeepEmailPrivate to true.
|
- `NO_REPLY_ADDRESS`: **noreply.DOMAIN** Value for the domain part of the user's email address in the git log if user has set KeepEmailPrivate to true. DOMAIN resolves to the value in server.DOMAIN.
|
||||||
The user's email will be replaced with a concatenation of the user name in lower case, "@" and NO_REPLY_ADDRESS.
|
The user's email will be replaced with a concatenation of the user name in lower case, "@" and NO_REPLY_ADDRESS.
|
||||||
- `USER_DELETE_WITH_COMMENTS_MAX_TIME`: **0** Minimum amount of time a user must exist before comments are kept when the user is deleted.
|
- `USER_DELETE_WITH_COMMENTS_MAX_TIME`: **0** Minimum amount of time a user must exist before comments are kept when the user is deleted.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue