forked from Kelder/cammiechat
add name when sending message from mattermost
This commit is contained in:
parent
c204e9a38e
commit
62c2deb0db
1 changed files with 4 additions and 1 deletions
5
chat.py
5
chat.py
|
@ -88,7 +88,10 @@ def messages_post():
|
|||
if "spam" in str(message, "UTF-8").lower():
|
||||
messages.append(Message(time, "1.3.3.7", "ip", "Nee"))
|
||||
return "OK"
|
||||
|
||||
|
||||
if sender != "somebody":
|
||||
message = "<" + sender + "> " + message
|
||||
|
||||
messages.append(Message(time, sender, sendertype, str(message, "UTF-8")))
|
||||
url = 'http://10.0.5.42:8000/' # Set destination URL here
|
||||
post_fields = {'X-Messages': base64.b64encode(message)}
|
||||
|
|
Loading…
Reference in a new issue