ejabberd - Comments for "ejabberd + jwchat + anonymous login not working" https://www.ejabberd.im/node/3554 en options are overwritten https://www.ejabberd.im/node/3554#comment-54385 <blockquote><p> * I can't login from pidgin as an authorised user (admin) either. The instructions say I should be able to mix anon and registered users. </p></blockquote> <p>This is your configuration:</p> <pre> {hosts, ["mydomain.com", "private.mydomain.com"]}. {auth_method, internal}. {host_config, "mydomain.com", [ {auth_method, [anonymous]}, {anonymous_protocol, both} ]}. </pre><p> The auth_methods are not accumulated, they are overwritten. So in mydomain.com only anonymous is allowed.</p> <p>Try this instead:</p> <pre> {hosts, ["mydomain.com", "private.mydomain.com"]}. {auth_method, internal}. {host_config, "mydomain.com", [ {auth_method, [internal, anonymous]}, {anonymous_protocol, both} ]}. </pre><p> Maybe you prefer to put [anonymous, internal], I am not sure.</p> Mon, 22 Jun 2009 20:47:31 +0000 mfoss comment 54385 at https://www.ejabberd.im set authtype in jwchat https://www.ejabberd.im/node/3554#comment-54375 <p>I was looking at JSJaCHTTPBindingCnnection.js and realised authtype is a connection setting:</p> <p> oArgs.authtype = 'saslanon';<br /> con.connect(oArgs);</p> <p>I still have two issues:</p> <p>* I can't find anything similar for pidgin (is this a limitation of libpurple?)<br /> * I can't login from pidgin as an authorised user (admin) either. The instructions say I should be able to mix anon and registered users.</p> Sat, 20 Jun 2009 15:49:38 +0000 SpliFF comment 54375 at https://www.ejabberd.im mechanism='DIGEST-MD5' https://www.ejabberd.im/node/3554#comment-54373 <p>I was looking at the anonymous login specs for XMPP and it looks like the client is supposed to respond mechanism='ANONYMOUS'. I guess this simply means neither client supports anonymous sasl?</p> Sat, 20 Jun 2009 14:58:44 +0000 SpliFF comment 54373 at https://www.ejabberd.im