This commit is contained in:
divVerent 2025-01-17 08:51:49 -08:00 committed by GitHub
commit fb96d41e89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View File

@ -432,8 +432,13 @@ func (b *Bmatrix) handleEdit(ev *matrix.Event, rmsg config.Message) bool {
return false
}
if b.GetBool("EditDisable") {
return true
}
rmsg.ID = relation.EventID
rmsg.Text = newContent.Body
rmsg.Text += b.GetString("EditSuffix")
b.Remote <- rmsg
return true

View File

@ -1268,6 +1268,14 @@ UseUserName=false
# - https://github.com/42wim/matterbridge/issues/1780
KeepQuotedReply=false
#Disable sending of edits to other bridges
#OPTIONAL (default false)
EditDisable=false
#Message to be appended to every edited message
#OPTIONAL (default empty)
EditSuffix=" (edited)"
#Nicks you want to ignore.
#Regular expressions supported
#Messages from those users will not be sent to other bridges.