Publicado en English

How to fix Web login requiered with a GAPPS domain

GAPPS usually works just fine, but sometimes if you check your email too often you would get an error about a web login requiered. I found mysleft able to login from the web but still not able to use Thunderbird to check via IMAP. So to fix it, I try this:

https://www.google.com/a/yourdomain.com/UnlockCaptcha

Update: Looks like after migrate those services to the new platform this is the right url:
https://www.google.com/accounts/DisplayUnlockCaptcha

Publicado en Español

Desactivar contraseña en el salvapantallas ubuntu 10.04

Si te has encontrado con que ubuntu por defecto activa el preguntar la contraseña y no lo deseas, por que es un ordenador para acceso publico o lo que sea, puedes ejecutar esto como root:

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
  --type bool \
  --set /apps/gnome-screensaver/lock_enabled false

Puedes revisar que el cambio esta echo si miras los contenidos de:

/etc/gconf/gconf.xml.mandatory/%gconf-tree.xml

Creo que para que funcione correctamente debes primero habilitarlo (igual que el anterior pero con true)

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
  --type bool \
  --set /apps/gnome-screensaver/lock_enabled 

Lo encontre aqui:
http://live.gnome.org/GnomeScreensaver/FrequentlyAskedQuestions
Dime si te funciona correctamente