forked from mautrix/signal
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
100 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Displayname template for Signal users. | ||
# {{.ProfileName}} - The Signal profile name set by the user. | ||
# {{.ContactName}} - The name for the user from your phone's contact list. This is not safe on multi-user instances. | ||
# {{.PhoneNumber}} - The phone number of the user. | ||
# {{.UUID}} - The UUID of the Signal user. | ||
# {{.AboutEmoji}} - The emoji set by the user in their profile. | ||
displayname_template: '{{or .ProfileName .PhoneNumber "Unknown user"}}' | ||
# Should avatars from the user's contact list be used? This is not safe on multi-user instances. | ||
use_contact_avatars: false | ||
# Should the bridge sync ghost user info even if profile fetching fails? This is not safe on multi-user instances. | ||
use_outdated_profiles: false | ||
# Should the Signal user's phone number be included in the room topic in private chat portal rooms? | ||
number_in_topic: true | ||
# Default device name that shows up in the Signal app. | ||
device_name: mautrix-signal | ||
# Avatar image for the Note to Self room. | ||
note_to_self_avatar: mxc://maunium.net/REBIVrqjZwmaWpssCZpBlmlL | ||
# Format for generating URLs from location messages for sending to Signal. | ||
# Google Maps: 'https://www.google.com/maps/place/%[1]s,%[2]s' | ||
# OpenStreetMap: 'https://www.openstreetmap.org/?mlat=%[1]s&mlon=%[2]s' | ||
location_format: 'https://www.google.com/maps/place/%[1]s,%[2]s' |