<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://hg.omfa.de/prosody-modules/</link>
    <language>en-us</language>

    <title>prosody-modules: mod_pastebin/README.md history</title>
    <description>mod_pastebin/README.md revision history</description>
    <item>
    <title>mod_pastebin: Clarify that mod_pastebin cannot process encrypted messages</title>
    <link>http://hg.omfa.de/prosody-modules/log/c819b1b5a775/mod_pastebin/README.md</link>
    <description><![CDATA[mod_pastebin: Clarify that mod_pastebin cannot process encrypted messages]]></description>
    <author>&#77;&#97;&#116;&#116;&#104;&#101;&#119;&#32;&#87;&#105;&#108;&#100;&#32;&#60;&#109;&#119;&#105;&#108;&#100;&#49;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 03 Oct 2025 11:53:29 +0100</pubDate>
</item>
<item>
    <title>mod_pastebin: Document pastebin_html_preview setting (thanks Zaak)</title>
    <link>http://hg.omfa.de/prosody-modules/log/1f00618ad3be/mod_pastebin/README.md</link>
    <description><![CDATA[mod_pastebin: Document pastebin_html_preview setting (thanks Zaak)]]></description>
    <author>&#77;&#97;&#116;&#116;&#104;&#101;&#119;&#32;&#87;&#105;&#108;&#100;&#32;&#60;&#109;&#119;&#105;&#108;&#100;&#49;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 03 Oct 2025 11:31:17 +0100</pubDate>
</item>
<item>
    <title>mod_pastebin: Add pastebin_ignore option, to allow suppressing pastebin behaviour (thanks Zaak)</title>
    <link>http://hg.omfa.de/prosody-modules/log/ad9026b6a714/mod_pastebin/README.md</link>
    <description><![CDATA[mod_pastebin: Add pastebin_ignore option, to allow suppressing pastebin behaviour (thanks Zaak)]]></description>
    <author>&#77;&#97;&#116;&#116;&#104;&#101;&#119;&#32;&#87;&#105;&#108;&#100;&#32;&#60;&#109;&#119;&#105;&#108;&#100;&#49;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;&#62;</author>
    <pubDate>Fri, 03 Oct 2025 11:24:42 +0100</pubDate>
</item>
<item>
    <title>READMEs: fixup compat tables</title>
    <link>http://hg.omfa.de/prosody-modules/log/fe0a58b863db/mod_pastebin/README.md</link>
    <description><![CDATA[READMEs: fixup compat tables]]></description>
    <author>&#75;&#105;&#109;&#32;&#65;&#108;&#118;&#101;&#102;&#117;&#114;&#32;&#60;&#122;&#97;&#115;&#104;&#64;&#122;&#97;&#115;&#104;&#46;&#115;&#101;&#62;</author>
    <pubDate>Fri, 13 Jun 2025 12:52:28 +0200</pubDate>
</item>
<item>
    <title>mod_pastebin: Update Readme</title>
    <link>http://hg.omfa.de/prosody-modules/log/1c62edeb9147/mod_pastebin/README.md</link>
    <description><![CDATA[mod_pastebin: Update Readme<br/>
<br/>
<br/>
<br/>
diff --git a/mod_pastebin/README.md b/mod_pastebin/README.md<br/>
--- a/mod_pastebin/README.md<br/>
+++ b/mod_pastebin/README.md<br/>
@@ -37,12 +37,14 @@ For example:<br/>
 Pastes will be available by default at<br/>
 `http://&lt;your-prosody&gt;:5280/pastebin/` by default.<br/>
<br/>
-In Prosody 0.9 and later this can be changed with [HTTP<br/>
-settings](https://prosody.im/doc/http).<br/>
+Ports and path can be changed with [HTTP<br/>
+settings](https://prosody.im/doc/http), for example like:<br/>
<br/>
-In 0.8 and older this can be changed with `pastebin_ports` (see below),<br/>
-or you can forward another external URL from your web server to Prosody,<br/>
-use `pastebin_url` to set that URL.<br/>
+``` {.lua}<br/>
+  http_paths = {<br/>
+    pastebin = &quot;/$host-paste&quot;;<br/>
+  }<br/>
+```<br/>
<br/>
 # Discovery<br/>
<br/>
@@ -82,27 +84,16 @@ The line and character tresholds are adv<br/>
   pastebin_line_threshold   The maximum number of lines a message may have before it is sent to the pastebin. (default 4 lines)<br/>
   pastebin_trigger          A string of characters (e.g. &quot;!paste &quot;) which if detected at the start of a message, always sends the message to the pastebin, regardless of length. (default: not set)<br/>
   pastebin_expire_after     Number of hours after which to expire (remove) a paste, defaults to 24. Set to 0 to store pastes permanently on disk.<br/>
-  pastebin_ports            List of ports to run the HTTP server on, same format as mod_httpserver's http_ports[^1]<br/>
-  pastebin_url              Base URL to display for pastebin links, must end with / and redirect to Prosody's built-in HTTP server[^2]<br/>
<br/>
 # Compatibility<br/>
<br/>
-  ------ -------<br/>
-  trunk  Works<br/>
+  ------ ---------------------<br/>
+  trunk  Works as of 25-06-13<br/>
+  13     Works<br/>
   0.12   Works<br/>
-  0.11   Works<br/>
-  0.10   Works<br/>
-  0.9    Works<br/>
-  0.8    Works<br/>
-  ------ -------<br/>
+  ------ ---------------------<br/>
<br/>
 # Todo<br/>
<br/>
 -   Maximum paste length<br/>
 -   Web interface to submit pastes?<br/>
-<br/>
-[^1]: As of Prosody 0.9, `pastebin_ports` is replaced by `http_ports`,<br/>
-    see [Prosody HTTP server documentation](https://prosody.im/doc/http)<br/>
-<br/>
-[^2]: See also<br/>
-    [http_external_url](https://prosody.im/doc/http#external_url)]]></description>
    <author>&#77;&#101;&#110;&#101;&#108;&#32;&#60;&#109;&#101;&#110;&#101;&#108;&#64;&#115;&#110;&#105;&#107;&#107;&#101;&#116;&#46;&#100;&#101;&#62;</author>
    <pubDate>Fri, 13 Jun 2025 11:39:58 +0200</pubDate>
</item>
<item>
    <title>Update compability section of mod_pastebin.</title>
    <link>http://hg.omfa.de/prosody-modules/log/51b6a10b50d2/mod_pastebin/README.md</link>
    <description><![CDATA[Update compability section of mod_pastebin.]]></description>
    <author>&#77;&#101;&#110;&#101;&#108;&#32;&#60;&#109;&#101;&#110;&#101;&#108;&#64;&#115;&#110;&#105;&#107;&#107;&#101;&#116;&#46;&#100;&#101;&#62;</author>
    <pubDate>Mon, 21 Oct 2024 21:36:16 +0200</pubDate>
</item>

  </channel>
</rss>
