-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from Mendor/master
Fix for #85
- Loading branch information
Showing
10 changed files
with
34 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,11 @@ For using Ybot with `jabber`, you must to configure it in configuration file ybo | |
[ | ||
% list of transport | ||
{transports, [ | ||
% Xmpp Multi-user chat Login Password Room Host Resource | ||
% Xmpp Multi-user chat Login Password Room Nick Host Resource | ||
{xmpp, <<"[email protected]">>, | ||
<<"password">>, | ||
<<"[email protected]">>, | ||
<<"YbotNick">>, | ||
<<"jabber.org">>, | ||
<<"home">>, | ||
[{port, 5222}, {use_ssl, false}, {reconnect_timeout, 5000}] | ||
|
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 |
---|---|---|
|
@@ -35,6 +35,8 @@ | |
% <<"ybot_password">>, | ||
% % xmpp room | ||
% <<"[email protected]">>, | ||
% % nick in this room | ||
% <<"MyYbot">>, | ||
% % xmpp server | ||
% <<"jabber.org">>, | ||
% % xmpp resource | ||
|
@@ -46,7 +48,7 @@ | |
% % Use ssl or not | ||
% {use_ssl, false}, | ||
% % reconnect timeout | ||
% {reconnect_timeout, 5000}, | ||
% {reconnect_timeout, 5000} | ||
% ] | ||
%}, | ||
|
||
|