ejabberd - Comments for "SSL &amp;amp; PSI trouble + HTTP no lnoger working" https://www.ejabberd.im/node/135 en self-signed certificate warning https://www.ejabberd.im/node/135#comment-266 <blockquote>I had a go making a self-signing certificate [...] When I ticked the "Use SSL" thing in PSI, it then came up with an <b>error</b>: "The xxx certificate failed authenticity the test. Reason: Certificate is self-signed"</blockquote> <p>It's not an error, but a warning. You can: <ul> <li>Click on 'Continue', or similar every time you connect. </li><li>Configure Psi to not show this message. </li><li>Get a certificate not self-signed. </li><li>Install the server certificate on your client (<a href="http://www.jabberes.org/node/view/414">instructions in spanish</a>). </li></ul> </p> <blockquote>configured it like so: {5223, ejabberd_c2s, [{access, c2s}, <b>ssl</b>, {certfile, "./ejabber.pem"}]},</blockquote> <p>ejabberd 0.7.5 added support for STARTTLS over 0.7, so the configuration file needs some changes: <ul> <li>not use 'ssl' option </li><li>use 'starttls' to accept plain and STARTTLS connections </li><li>use 'tls' to accept SSL connections. </li></ul> So, the 'listen' section on your ejabberd.cfg should be similar to: <pre>{5222, ejabberd_c2s, [{access, c2s}, {shaper, c2s_shaper}, starttls, {certfile, "./ejabber.pem"}]}, {5223, ejabberd_c2s, [{access, c2s}, tls, {certfile, "./ejabber.pem"}]},</pre> </p> <p>I hope everything will work fine after doing those changes.</p> Tue, 22 Mar 2005 10:54:00 +0000 mfoss comment 266 at https://www.ejabberd.im Opps! https://www.ejabberd.im/node/135#comment-265 <p>Correction, I got the HTTP console working, I forgot to add the "/admin" bit haha!</p> <p>Still stuck on the SSL problem though...</p> Tue, 22 Mar 2005 05:14:08 +0000 tfindlay comment 265 at https://www.ejabberd.im