* Configure this FileUser.
* @param config where the user details are specified
* @throws ConfigurationException if the necessary details aren't specified in the config
*/
public void configure(Configuration config) throws ConfigurationException {
new ItemConfiguration().configure(this, config);
setEmail(config.getChild(EMAIL).getValue(""));
setDefaultMenuLocale(config.getChild(MENU_LOCALE).getValue(""));
setDefaultDocumentLocale(config.getChild(DOCUMENT_LOCALE).getValue(""));
setEncryptedPassword(config.getChild(PASSWORD).getValue(null));