ejabberd - Comments for "Can&amp;#039;t retrieve muc archives" https://www.ejabberd.im/forum/28626/cant-retrieve-muc-archives en After updating to the latest https://www.ejabberd.im/forum/28626/cant-retrieve-muc-archives#comment-67239 <p>After updating to the latest release everything works -)</p> <p>Muc messages arrive just as p2p archives, everything is fine -)</p> Thu, 22 Dec 2016 13:49:14 +0000 Qwerty comment 67239 at https://www.ejabberd.im Hi, we've compiled server https://www.ejabberd.im/forum/28626/cant-retrieve-muc-archives#comment-67237 <p>Hi, we've compiled server from sources and have it running. Currently have some issues creating group chats.</p> <p>Will get back as soon as we can.</p> Wed, 21 Dec 2016 16:15:59 +0000 Qwerty comment 67237 at https://www.ejabberd.im You can go to your developer https://www.ejabberd.im/forum/28626/cant-retrieve-muc-archives#comment-67229 <p>You can go to your developer machine, install the same erlang and download the same ejabberd sources used in the production machine. Apply the patch, compile the relevant module (or all), and copy the changed *.beam file to the production machine.</p> Fri, 16 Dec 2016 10:41:37 +0000 badlop comment 67229 at https://www.ejabberd.im Thanks for the https://www.ejabberd.im/forum/28626/cant-retrieve-muc-archives#comment-67226 <p>Thanks for the reply,</p> <p>Currently we have server in the form of a binary. We'll setup a chat server from ejabberd sources and get back to you.</p> <p>Thanks again, cheers.</p> Mon, 12 Dec 2016 15:12:42 +0000 Qwerty comment 67226 at https://www.ejabberd.im Hi, I installed 16.04, https://www.ejabberd.im/forum/28626/cant-retrieve-muc-archives#comment-67221 <p>Hi, I installed 16.04, enabled mod_mam with the default:always option, created an account, logged in, created a room, configured the room to archive, sent a message to the room, then sent a request similar to yours, just replacing the TO attribute with the room full jid (in my case "room1@conference.localhost"), and I got a valid response.</p> <p>I also tried to make some mistakes, like providing invalid TO address, disabling the option, the module... and I couldn't get exactly the same error than you, that 501.</p> <p>Apply this patch, compile, reinstall, restart, try again, and see if anything relevant appears in the ejabberd logs when you make the request:</p> <pre> --- a/src/mod_muc_room.erl +++ b/src/mod_muc_room.erl @@ -466,7 +466,8 @@ normal_state({route, From, &lt;&lt;""&gt;&gt;, stop -&gt; {stop, normal, StateData}; _ -&gt; {next_state, normal_state, NewStateData} end; - _ -&gt; + SomeError -&gt; + ?INFO_MSG("Some Error: ~n~p", [SomeError]), Err = jlib:make_error_reply(Packet, ?ERR_FEATURE_NOT_IMPLEMENTED), </pre> Mon, 12 Dec 2016 10:44:31 +0000 badlop comment 67221 at https://www.ejabberd.im