comparison mod_pastebin.wiki @ 136:927270e0b963

Updated config options and compatibility section.
author MWild1
date Wed, 30 Jun 2010 07:14:38 +0000
parents 7996062e839e
children d88da0ded786
comparison
equal deleted inserted replaced
135:2b79ecd3ece6 136:927270e0b963
1 #summary Redirect long messages to built-in pastebin 1 #summary Redirect long messages to built-in pastebin
2 #labels Stage-Beta 2 #labels Stage-Stable
3 3
4 = Introduction = 4 = Introduction =
5 5
6 Pastebins are used very often in IM, especially in chat rooms. You have a long log or command output which you need to send to someone over IM, and don't want to fill their message window with it. Put it on a pastebin site, and give them the URL instead, simple. 6 Pastebins are used very often in IM, especially in chat rooms. You have a long log or command output which you need to send to someone over IM, and don't want to fill their message window with it. Put it on a pastebin site, and give them the URL instead, simple.
7 7
21 modules_enabled = { "pastebin" } 21 modules_enabled = { "pastebin" }
22 }}} 22 }}}
23 23
24 = Configuration = 24 = Configuration =
25 ||pastebin_ports||List of ports to run the HTTP server on, same format as mod_httpserver's http_ports|| 25 ||pastebin_ports||List of ports to run the HTTP server on, same format as mod_httpserver's http_ports||
26 ||pastebin_threshold||Minimum length (in characters) of a message to be sent to the pastebin (default 500 characters)|| 26 ||pastebin_threshold||Maximum length (in characters) of a message that is allowed to skip the pastebin. (default 500 characters)||
27 ||pastebin_line_threshold||The maximum number of lines a message may have before it is sent to the pastebin. (default 4 lines)||
28 ||pastebin_trigger||A string of characters (e.g. "!paste ") which if detected at the start of a message, always sends the message to the pastebin, regardless of length. (default: not set)||
27 ||pastebin_url||Base URL to display for pastebin links, must end with / and redirect to Prosody's built-in HTTP server|| 29 ||pastebin_url||Base URL to display for pastebin links, must end with / and redirect to Prosody's built-in HTTP server||
28 ||pastebin_expire_after||Number of hours after which to expire (remove) a paste, defaults to 24|| 30 ||pastebin_expire_after||Number of hours after which to expire (remove) a paste, defaults to 24||
29 31
30 = Compatibility = 32 = Compatibility =
33 ||0.7||Works||
31 ||0.6||Works|| 34 ||0.6||Works||
32 ||0.5||Works||
33 35
34 = Todo = 36 = Todo =
35 37
36 * Maximum paste length 38 * Maximum paste length
37 * Web interface to submit pastes? 39 * Web interface to submit pastes?