At 04:59 AM 1/13/2003, Jan Janak wrote:
Jan 10
20:22:53 build ser[14278]: is_user(): No authorized credentials
found (error in scripts)
This means you call some function from auth module and didn't call
authorize before that. Some functions from auth module need authorized
credentials and if issue this error if the message contains no authorized
credentials.
Just one short note on why it is this way: any processing based on digest
id (like is_user does) is only meaningful after the authenticity of digest
id was verified. Othewise any request sender could put any digest id in
request (e.g., "foobar" or "gwbush") and you would use it. Thus, call
an
authorization action first.
-Jiri