Remove auth from Bitlbee
I'm having trouble getting PAM auth to work, so I'm temporarily disabling it. TIL that I can use the following to verify that PAM is properly setup for a program (e.g. `bitlbee`). ``` pamtester -v bitlbee $(whoami) authenticate ``` ...but despite this succeeding, I still cannot use the `identify` command in `bitlbee` to successfully authenticate. It just tells me "Incorrect password" even though I'm providing it the same password that I type when doing the `pamtester` command from above. Computers!
This commit is contained in:
parent
a276eddf54
commit
fa4eb2c61b
1 changed files with 0 additions and 1 deletions
|
@ -100,7 +100,6 @@ in {
|
||||||
nixpkgs.config.bitlbee.enableLibPurple = true;
|
nixpkgs.config.bitlbee.enableLibPurple = true;
|
||||||
services.bitlbee = {
|
services.bitlbee = {
|
||||||
interface = "0.0.0.0";
|
interface = "0.0.0.0";
|
||||||
authBackend = "pam";
|
|
||||||
authMode = "Registered";
|
authMode = "Registered";
|
||||||
enable = true;
|
enable = true;
|
||||||
libpurple_plugins = [
|
libpurple_plugins = [
|
||||||
|
|
Loading…
Reference in a new issue