-
Notifications
You must be signed in to change notification settings - Fork 10
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
Problem with Online Accounts (and fix) #12
Comments
Thanks for the report and a workaround description! I have the same problem with GOA. Even if the configuration cannot be changed, it should be possible to patch GOA. I have to look into it. |
The error comes from libsoup: https://git.gnome.org/browse/libsoup/tree/libsoup/soup-session.c?h=gnome-3-22#n565 Interesting that PROP_SSL_CA_FILE is deprecated (and was already deprecated in 3.22). So there is some chance it will be fixed. The suggested workaround works here for Google but not for Facebook, I get a slightly different error even if ca-bundle.crt exists. @montagdude, does Facebook work for you? |
Thanks for the extra information. Sounds like it would be fairly complicated to fix it from the GNOME side. I can confirm that the workaround doesn't work for Facebook here, either. I've tried Google, Facebook, and Flickr, and it works for Google and Flickr, but not Facebook. |
I just installed gir1.2-goa on my kali linux and since then, once I attempt to add an account on GOA, the window simply disappears. Whats the issue? |
@lil-armstrong Can you start the control center in terminal:
open online accounts and look if you get some output to the console. |
Yes I can |
Her's the output on Terminal:
|
Hm. I don't get any output. Post please the installed packages aswell:
I can compare then with my setup. But not sure if I can help. |
Ehm.. The directory /var/log/packages does not exist. Here are the dirs in mine:
|
Is it slackware? |
No Its Kali... |
I am pretty sure I mentioned that when I posted my complaint... |
Oh I see it now. Sorry I've overlooked it first. I don't know what can be the problem, gnome-control-center reports only warnings, no errors. And dlackware itself is a gnome distribution for Slackware Linux only. |
Maybe try to report it to the kali maintainers. |
Back to Dlackware. I had been away from it for several months, but I just rebuilt and reinstalled everything yesterday (3.22/14.2 branch). This problem is still present, and now my workaround isn't working either. It's not really a big deal to me, but I thought I would let you know. |
Hi,
Whenever I try to add any online accounts (through Settings -> Online Accounts), e.g. Google or Facebook, I get an error like the following:
"Unable to confirm identity: Unacceptable TLS certificate"
The first part of the error message changes depending on which account I try to add, but the second part is always the same. I was able to track down the problem with journalctl -f, which indicated that a file /etc/ssl/ca-bundle.crt did not exist. I was eventually able to get it to work by doing the following:
`for FILE in $(ls /usr/share/ca-certificates/mozilla/*.crt); do
cat $FILE >> /etc/ssl/ca-bundle.crt
done`
I don't know if GNOME Online Accounts can be configured to look up the correct certificate in /usr/share/ca-certificates/mozilla instead of reading the ca-bundle.crt file, which by default is not present on Slackware. If not, maybe some Dlackware package should create this file so that Online Accounts works out of the box.
The text was updated successfully, but these errors were encountered: