-
Notifications
You must be signed in to change notification settings - Fork 615
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Set default backend to Text (#1522)
* refactor: change default backend to Text * fix: setting default list of room occupants This should address issue #1285 * docs: Add backend change to CHANGES
- Loading branch information
Showing
3 changed files
with
18 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ | |
# 'Telegram' - cloud-based mobile and desktop messaging app with a focus | ||
# on security and speed. (https://telegram.org/) | ||
|
||
# BACKEND = 'XMPP' # defaults to XMPP | ||
# BACKEND = 'Text' # defaults to Text | ||
|
||
# STORAGE selection. | ||
# This configures the type of persistence you wish to use Errbot with. | ||
|
@@ -154,9 +154,11 @@ | |
|
||
# The identity, or credentials, used to connect to a server | ||
BOT_IDENTITY = { | ||
# XMPP (Jabber) mode | ||
"username": "err@localhost", # The JID of the user you have created for the bot | ||
"password": "changeme", # The corresponding password for this user | ||
## Text mode | ||
"username": "@errbot", # The name for the bot | ||
## XMPP (Jabber) mode | ||
# "username": "err@localhost", # The JID of the user you have created for the bot | ||
# "password": "changeme", # The corresponding password for this user | ||
# 'server': ('host.domain.tld',5222), # server override | ||
## HipChat mode (Comment the above if using this mode) | ||
# 'username': '[email protected]', | ||
|