Author Topic: DENY ACCESS USER INTERFACE SETTING  (Read 3984 times)

Offline zakizem

  • Newbie
  • *
  • Posts: 3
DENY ACCESS USER INTERFACE SETTING
« on: January 09, 2015, 09:48:58 AM »
Hello Evry Body

i would like to know how can i deny acces for users to change interface setting , and choose the default skin to load for all users .

 Thank you

Best regards

Offline ABerglund

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 673
Re: DENY ACCESS USER INTERFACE SETTING
« Reply #1 on: January 09, 2015, 11:56:47 AM »
In your config file, add the following to set the default skin, changing the skin name below (larry, in my case) to whatever skin you are setting as default:

Code: [Select]
$config['skin'] = 'larry';
Then add 'skin' to the dont_override array. My dont_override is set as:

Code: [Select]
$config['dont_override'] = array(
        'compose_save_localstorage',
        'default_addressbook',
        'default_charset',
        'delete_always',
        'drafts_mbox',
        'dst_active',
        'flag_for_deletion',
        'force_7bit',
        'junk_mbox',
        'logout_expunge',
        'message_extwin',
        'mime_param_folding',
        'reply_same_folder',
        'sent_mbox',
        'show_real_foldernames',
        'skin',
        'skip_deleted',
        'timezone',
        'trash_mbox'
);

Bear in mind that this will set the default skin, and remove the ability for users to change it going forward. But any user who has already set their skin to something different will still have that, as it will be stored in their preferences.
Arne Berglund
SysAdmin, Internet Services
Lane Education Service District
Eugene, OR, USA

Offline zakizem

  • Newbie
  • *
  • Posts: 3
Re: DENY ACCESS USER INTERFACE SETTING
« Reply #2 on: January 09, 2015, 01:54:24 PM »
THank Youuuu !