diff options
author | Humorhenker <36549980+Humorhenker@users.noreply.github.com> | 2020-01-30 00:02:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 00:02:33 +0100 |
commit | fc30b1bacc4ceb6dd978c5838609371fa6abd801 (patch) | |
tree | c52a2ebfee544fc4de3c033aaacfa4424027e28d /matterbridge.toml.sample | |
parent | 0dd19af6e8b3c122ddc8c96e5ab259d89023d561 (diff) | |
download | matterbridge-msglm-fc30b1bacc4ceb6dd978c5838609371fa6abd801.tar.gz matterbridge-msglm-fc30b1bacc4ceb6dd978c5838609371fa6abd801.tar.bz2 matterbridge-msglm-fc30b1bacc4ceb6dd978c5838609371fa6abd801.zip |
Add QuoteLengthLimit option (telegram) fixes #963 (#985)
* QuoteLengthLimit option added to limit max. quoted message length if QuoteLengthLimit = 0 the whole message will be quoted
Diffstat (limited to 'matterbridge.toml.sample')
-rw-r--r-- | matterbridge.toml.sample | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index 61c86176..af3c5dfb 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -853,6 +853,10 @@ UseInsecureURL=false #OPTIONAL (default false) QuoteDisable=false +#Set the max. quoted length if 0 the whole message will be quoted +#OPTIONAL (default 0) +QuoteLengthLimit=0 + #Format quoted/reply messages #OPTIONAL (default "{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE})") QuoteFormat="{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE})" |