//100SMEAttributes
/* SME Server attributes */
$attributes['displayName'] = array(
    'label' => _("Display Name"),
    'type' => 'text',
    'required' => false
);
$attributes['groupdescription'] = array(
    'label' => _("Group Description"),
    'type' => 'text',
    'required' => false
);
$attributes['groupmembers'] = array(
    'label' => _("Group Members"),
    'type' => 'text',
    'required' => false
);

//Turba override allow multiple email addresses per contact
/* Communication. */                
$attributes['emails'] = array(   
    'label' => _("Email Address"),     
    'type' => 'email',                 
    'required' => false,         
    'params' => array('allow_multi' => true, 'strip_domain' => false, 'link_compose' => true, 'link_name' => null, 'delimiters' => ',', 'size' => null)
);

