Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

circe-user definition #404

Closed
yashasolutions opened this issue Nov 14, 2021 · 1 comment
Closed

circe-user definition #404

yashasolutions opened this issue Nov 14, 2021 · 1 comment

Comments

@yashasolutions
Copy link

Hi,

I have some issue to connect to a server requiring authentication.

Config has

(setq circe-default-user "yashasolutions")

and in the server definition:

:sasl-username "yashasolutions"

But log is when checking the log I see

C: NICK yashasolutions
C: USER yashasolutions 8 * yashasolutions

Not sure how to interpret this, but it does look like it's different from the config, right? Am I doing something incorrect?

@wasamasa
Copy link
Collaborator

(defun irc-send-USER (conn user mode realname)
  "Send a USER message for registration.

MODE should be an integer as per RFC 2812"
  (irc-send-command conn "USER" user (format "%s" mode) "*" realname))

The client is sending the USER message which consists of the user, mode and realname. The meaning of the user mode is explained in the mentioned RFC. So, nothing unusual going on there. I'd recommend you to compare IRC logs between circe and another client where authentication works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants