# HG changeset patch # User Kim Alvefur # Date 1522849469 -7200 # Node ID 1e7d221bba8d6661704b584424c7b2e298ef00ad # Parent fa3665b7602f7cd8a4bca53c252c4f340a3110a0 mod_post_msg/README: Document the payload formats diff -r fa3665b7602f -r 1e7d221bba8d mod_post_msg/README.markdown --- a/mod_post_msg/README.markdown Wed Apr 04 15:36:47 2018 +0200 +++ b/mod_post_msg/README.markdown Wed Apr 04 15:44:29 2018 +0200 @@ -17,6 +17,33 @@ This would send a message to user\@example.com from me\@example.com +Details +======= + +Payload formats +--------------- + +Supported formats are: + +`text/plain` +: The HTTP body is used as message ``. + +`application/x-www-form-urlencoded` +: Allows more fields to be specified. + +### Data fields + +The form data format allow the following fields: + +`to` +: Can be used instead of having the receiver in the URL. + +`type` +: [Message type.](https://xmpp.org/rfcs/rfc6121.html#message-syntax-type) + +`body` +: Plain text message payload. + Acknowledgements ----------------