*/
public void putScript(String user, String name, String content) throws UserNotFoundException,
StorageException, QuotaExceededException {
if (!_repository.containsKey(user))
{
throw new UserNotFoundException(user);
}
Map<String,SieveScript> scripts = _repository.get(user);
scripts.put(name, new SieveScript(content, false));
}