- Are you using a reasonably strong password for your temp password at account creation time? The minimum length for all Google passwords is now 8 characters and you might have raised it in the Google Apps console. Does it meet those length requirements? I also suggest using upper/lowercase and non-letter characters.
- Is your domain using Single Sign-On (SSO)?
- After creating the accounts are you first attempting login via the Google Apps web login page or something else (IMAP, POP, Google Talk, etc)? You must login to an account via the web login and accept the ToS before the password will work for other services.
--
You received this message because you are subscribed to the "Google Apps Manager" group.
To post to this group, send email to
google-ap...@googlegroups.com
To unsubscribe from this group, send email to
google-apps-man...@googlegroups.com
For more options, visit this group at
https://groups.google.com/forum/#!forum/google-apps-manager
> Jay - I think you hit it on the head! I had a $ in the passwords.
You probably failed to properly escape it. On unix shells "$" starts
a variable, e.g.
$ target="World"
$ echo Hello $target
Hello World
$ echo "Hello $target"
Hello World
$ echo 'Hello $target'
Hello $target
$ echo Hello \$target
Hello $target
> Are there any other characters that should be avoided?
In bash you'd want to escape at least ! ' and " or avoid them.
--
Bri Hatch, Systems and Security Engineer. http://www.ifokr.org/bri/
"UNIX was not designed to stop you from doing stupid things, because
that would also stop you from doing clever things."
--