Jump to content

Recommended Posts

Hi All,

 

We are having a slight issue with an undetermined number of users, Our userbase has a large number of contracts included that will all have different email addresses, when doing our LDAP import it is picking up from the Users Email Address within Active Directory. The problem with this is that it may not match the e-mail address they are sending from.

 

Is there anyway for us to map the primary SMTP within AD to the Email field within Hornbill?

 

Thank you in advance for any help.

Link to comment
Share on other sites

On the LDAP import .json you will just need to add the relevant AD attribute to two places. 

First place is under user mapping under "Email":

    "UserMapping":{
        "UserId":"[sAMAccountName]",
        "UserType":"basic",
        "Name":"[givenName] [sn]",
        "Password":"",
        "FirstName":"[givenName]",
        "LastName":"[sn]",
        "JobTitle":"[title]",
        "Site":"",
        "Phone":"[telephoneNumber]",
        "Email":"[mail]",
        "Mobile":"[mobile]",
        "AbsenceMessage":"",
        "TimeZone":"",
        "Language":"",
        "DateTimeFormat":"",
        "DateFormat":"",
        "TimeFormat":"",
        "CurrencySymbol":"",
        "CountryCode":""
    },

Second is under LDAP Attributes:

    "LDAPAttributes":[
        "cn",
        "sn",
        "telephoneNumber",
        "mobile",
        "sAMAccountName",
        "userPrincipalName",
        "givenName",
        "description",
        "department",
        "manager",
        "mail",
        "title",
        "givenName",
        "physicalDeliveryOfficeName",
        "department",
        "extensionAttribute1"

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...