Environment
Situation
Can SecureLogin enforce users to single sign the FireFox authentication dialog?
Resolution
Yes. This can be done by adding the predefined FirefoxCredentialSelection application definition and using ?FFMustSaveCredential.
If ?FFMustSaveCredential is set to Yes, the Remember this login with SecureLogin check box is selected and disabled.
If ?FFCredential is set to <NOTSET>, the Remember this login with SecureLogin check box is not displayed.
##===========Example Script=============== # disallow the saving of credentials for House.com If ?FFDomain eq "house.com" Set ?FFCredential "" Endif # disallow the saving of credentials for House.net If ?FFDomain eq "house.net" Set ?FFCredential <NOTSET> Endif # force saving of credentials for MyNetwork If ?FFDomain eq "mynetwork.com" Set ?FFMustSaveCredential "Yes" Endif ##===========Example Script===============
The above FirefoxCredentialSelection definition is specifying that users will be forced to stored their credentials for house.com. In addition the script will not allow the users to store their credentials for mynetwork.com domain.
For more information regarding the Firefox Credential Selection application definition, please see knowledge base article: