Hi, Emma.
Judging by what I see in your `attribute-resolver.xml.vm` file, you already added element for custom nameid before by hand:
```
<resolver:AttributeDefinition id="zoomLogin" xsi:type="Simple"
xmlns="urn:mace:shibboleth:2.0:resolver:ad"
sourceAttributeID="mail">
<resolver:Dependency ref="siteLDAP"/>
<resolver:AttributeEncoder xsi:type="SAML2StringNameID"
xmlns="urn:mace:shibboleth:2.0:attribute:encoder"
nameFormat="urn:oasis:names:tc:SAML:2.0:nameid-format:email" />
</resolver:AttributeDefinition>
```
You need to try to add another one, for this SP, this time of format `urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress`. Like this:
```
<resolver:AttributeDefinition id="freshdeskLogin" xsi:type="Simple"
xmlns="urn:mace:shibboleth:2.0:resolver:ad"
sourceAttributeID="mail">
<resolver:Dependency ref="siteLDAP"/>
<resolver:AttributeEncoder xsi:type="SAML2StringNameID"
xmlns="urn:mace:shibboleth:2.0:attribute:encoder"
nameFormat="urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress" />
</resolver:AttributeDefinition>
```
Don't forget all the rest usual steps for addition of nameid, including registering an attribute to represent it in web UI. Then add this new attribute to the list of released attributes for this SP.