<br />When trying to solve how to set my own uid settings I found threads regarding the auto_fields_admin_rw setting. Jeroen van Meeuwen metions it in this post here : http://lists.kde.org/?l=kroupware&m=135376158400562&w=4 and there's another person having a problem in this post here : http://www.intevation.de/pipermail/kolab-users/2012-November/014127.html mentions that the setting does not work.<br /><br />So, I did a quick dig through the webadmin code and found instead of auto_fields_admin_rw there is a setting for admin_auto_fields_rw so I adjusted my /etc/kolab/kolab.conf with admin_auto_fields_rw and now I am able to edit the auto fields. I hope this helps anybody else trying to solve the same problem.<br /><br />I don't know if the field is "suppose" to be named admin_auto_fields_rw or auto_fields_admin_rw so if it is named incorrectly then it's a bug :) Otherwise just confused users :)<br /><br
/>[root@
kolab kolab-webadmin]# grep -r "auto_field" *<br />hosted/js/kolab_admin.js: e = this.env.auto_fields[name];<br />lib/kolab_client_task.php: $auto_fields = array();<br />lib/kolab_client_task.php: $auto_fields = (array) $types[$type]['attributes']['auto_form_fields'];<br />lib/kolab_client_task.php: foreach ($auto_fields as $idx => $field) {<br />lib/kolab_client_task.php: //console("\$field value for \$auto_fields[\$idx] (idx: $idx)", $auto_fields[$idx]);<br />lib/kolab_client_task.php: unset($auto_fields[$idx]);<br />lib/kolab_client_task.php: &nb
sp; 
; //console("\$field['data'] is empty for \$auto_fields[\$idx] (idx: $idx)");<br />lib/kolab_client_task.php: // Unset the $auto_field array key to prevent the form field from<br />lib/kolab_client_task.php: unset($auto_fields[$idx]);<br />lib/kolab_client_task.php: $admin_auto_fields_rw = $this->config_get('admin_auto_fields_rw', false, Conf::BOOL);<br />lib/kolab_client_task.php: if ($admin_auto_fields_rw) {<br />lib/kolab_client_task.php: if ($admin_auto_fields_rw) {<br />lib/ko
lab_clie
nt_task.php: $this->output->set_env('auto_fields', $auto_fields);<br />lib/kolab_client_task.php: $auto_fields = $this->output->get_env('auto_fields');<br />lib/kolab_client_task.php: //console("form_create() \$auto_fields", $auto_fields);<br />lib/client/kolab_client_task_settings.php: //$admin_auto_fields_rw = $this->config_get('admin_auto_fields_rw', false, Conf::BOOL);<br />lib/client/kolab_client_task_settings.php: if ($admin_auto_fields_rw) {<br />lib/client/kolab_client_task_settings.php: if ($admin_auto_fields_rw) {<br />public_ht
ml/js/ko
lab_admin.js: e = this.env.auto_fields[name];<br /><br />