unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* IRC server USER/PASS in ERC
@ 2010-11-30 20:45 Aidan Gauland
  2010-12-01 19:04 ` Deniz Dogan
  0 siblings, 1 reply; 5+ messages in thread
From: Aidan Gauland @ 2010-11-30 20:45 UTC (permalink / raw)
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 801 bytes --]

Hello fellow Emacs addicts,

I have been using ERC for quite some time now, and I love it!  Now I
want to use an IRC bouncer.  I have set up ircproxy
<http://ircproxy.sourceforge.net/> on a VPS, but I can't connect to it
because I don't seem to be able to tell ERC the server username and
password to use.  When I try to connect to ircproxy, I get the
following error.

==> ERROR from irc.example.net: USER / PASS is incorrect.


Connection failed!  Not re-establishing connection.


*** ERC terminated: connection broken by remote peer

I don't think it matters that I'm using a bouncer, as this seems to be
a matter of authenticating to an IRC server (as opposed to NickServ).

*Is* there even a way to do this in ERC?  I certainly hope so, and
that I only haven't found it.

Regards,
Aidan Gauland

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: IRC server USER/PASS in ERC
  2010-11-30 20:45 IRC server USER/PASS in ERC Aidan Gauland
@ 2010-12-01 19:04 ` Deniz Dogan
  2010-12-01 23:08   ` Aidan Gauland
  0 siblings, 1 reply; 5+ messages in thread
From: Deniz Dogan @ 2010-12-01 19:04 UTC (permalink / raw)
  To: help-gnu-emacs

2010/11/30 Aidan Gauland <aidalgol@no8wireless.co.nz>:
> Hello fellow Emacs addicts,
>
> I have been using ERC for quite some time now, and I love it!  Now I
> want to use an IRC bouncer.  I have set up ircproxy
> <http://ircproxy.sourceforge.net/> on a VPS, but I can't connect to it
> because I don't seem to be able to tell ERC the server username and
> password to use.  When I try to connect to ircproxy, I get the
> following error.
>
> ==> ERROR from irc.example.net: USER / PASS is incorrect.
>
>
> Connection failed!  Not re-establishing connection.
>
>
> *** ERC terminated: connection broken by remote peer
>
> I don't think it matters that I'm using a bouncer, as this seems to be
> a matter of authenticating to an IRC server (as opposed to NickServ).
>
> *Is* there even a way to do this in ERC?  I certainly hope so, and
> that I only haven't found it.
>
> Regards,
> Aidan Gauland
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.10 (GNU/Linux)
>
> iEYEARECAAYFAkz1YnQACgkQjyzTRvYJmaWe4gCcCdoJL8wtx73/vOUubHHO2YPZ
> z8kAn0smgmQu8D6vHc7AVrTvc/ATgrdO
> =fMzJ
> -----END PGP SIGNATURE-----
>
>

I hope this information will be useful for you:

http://www.gnu.org/software/emacs/manual/html_node/erc/Connecting.html

-- 
Deniz Dogan



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: IRC server USER/PASS in ERC
  2010-12-01 19:04 ` Deniz Dogan
@ 2010-12-01 23:08   ` Aidan Gauland
  2010-12-02 12:32     ` Deniz Dogan
  0 siblings, 1 reply; 5+ messages in thread
From: Aidan Gauland @ 2010-12-01 23:08 UTC (permalink / raw)
  To: help-gnu-emacs

Deniz Dogan <deniz.a.m.dogan <at> gmail.com> writes:
> I hope this information will be useful for you:
> 
> http://www.gnu.org/software/emacs/manual/html_node/erc/Connecting.html

I'm afraid not.  As far as I can tell, the password parameter to the
`erc' function is for specifying the password for identifying to
NickServ *after* connecting, not the password needed to make the
server let you actually connect, which is what I need to do.

--Aidan





^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: IRC server USER/PASS in ERC
  2010-12-01 23:08   ` Aidan Gauland
@ 2010-12-02 12:32     ` Deniz Dogan
  2010-12-03  1:12       ` Aidan Gauland
  0 siblings, 1 reply; 5+ messages in thread
From: Deniz Dogan @ 2010-12-02 12:32 UTC (permalink / raw)
  To: Aidan Gauland; +Cc: help-gnu-emacs

2010/12/2 Aidan Gauland <aidalgol@no8wireless.co.nz>:
> Deniz Dogan <deniz.a.m.dogan <at> gmail.com> writes:
>> I hope this information will be useful for you:
>>
>> http://www.gnu.org/software/emacs/manual/html_node/erc/Connecting.html
>
> I'm afraid not.  As far as I can tell, the password parameter to the
> `erc' function is for specifying the password for identifying to
> NickServ *after* connecting, not the password needed to make the
> server let you actually connect, which is what I need to do.
>

Where did you get that idea? I don't see any mentioning of NickServ in
that document.

I looked in the source code and found this:
"Use PASSWD as user password on the server."
The variable erc-session-password is then set to PASSWORD and then
when erc-login is called it sends the value as "PASS" to the server.

I'm not sure where erc-login is actually called as I'm not that
familiar with ERC myself but I definitely think the password parameter
is for authenticating to the IRC server.

-- 
Deniz Dogan



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: IRC server USER/PASS in ERC
  2010-12-02 12:32     ` Deniz Dogan
@ 2010-12-03  1:12       ` Aidan Gauland
  0 siblings, 0 replies; 5+ messages in thread
From: Aidan Gauland @ 2010-12-03  1:12 UTC (permalink / raw)
  To: Deniz Dogan; +Cc: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 686 bytes --]

On Thu, Dec 02, 2010 at 01:32:41PM +0100, Deniz Dogan wrote:
> 2010/12/2 Aidan Gauland <aidalgol@no8wireless.co.nz>:
> > I'm afraid not.  As far as I can tell, the password parameter to the
> > `erc' function is for specifying the password for identifying to
> > NickServ *after* connecting, not the password needed to make the
> > server let you actually connect, which is what I need to do.
> 
> Where did you get that idea? I don't see any mentioning of NickServ in
> that document.

That's what erc does with the password I give it.  It uses it to
identify to nickserv, and when I gave it the "PASS" for the server, I
got the error I put in my initial post.

--Aidan

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-12-03  1:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-30 20:45 IRC server USER/PASS in ERC Aidan Gauland
2010-12-01 19:04 ` Deniz Dogan
2010-12-01 23:08   ` Aidan Gauland
2010-12-02 12:32     ` Deniz Dogan
2010-12-03  1:12       ` Aidan Gauland

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).