Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
cd8d742a
Commit
cd8d742a
authored
Aug 03, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3659 from neuroid/jabber-chat-fix
Set default XMPP message type to 'chat'.
parents
caa825b6
38d60636
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
library/notification/jabber
+6
-1
No files found.
library/notification/jabber
View file @
cd8d742a
...
...
@@ -100,7 +100,10 @@ def main():
server
=
jid
.
getDomain
()
port
=
module
.
params
[
'port'
]
password
=
module
.
params
[
'password'
]
to
,
nick
=
re
.
split
(
r'/'
,
module
.
params
[
'to'
])
try
:
to
,
nick
=
module
.
params
[
'to'
]
.
split
(
'/'
,
1
)
except
ValueError
:
to
,
nick
=
module
.
params
[
'to'
],
None
if
module
.
params
[
'host'
]:
host
=
module
.
params
[
'host'
]
...
...
@@ -125,6 +128,8 @@ def main():
msg
.
setTag
(
'x'
,
namespace
=
'http://jabber.org/protocol/muc#user'
)
conn
.
send
(
xmpp
.
Presence
(
to
=
module
.
params
[
'to'
]))
time
.
sleep
(
1
)
else
:
msg
.
setType
(
'chat'
)
msg
.
setTo
(
to
)
if
not
module
.
check_mode
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment