Hi, Brett.
Do you need to authenticate at Google using SAML, or you just need to use `email` in nameid with some arbitrarily SP? In the latter case you should check [this article](https://gluu.org/docs/ce/3.0.2/admin-guide/attribute/#defining-nameid), while keeping in mind, that in IdP3 used in CE 3.0.x file `/opt/shibboleth-idp/conf/saml-nameid.xml` is now your main focus of concerns.
I would try to edit corresponding part of it to look like this:
```
<bean parent="shibboleth.SAML2AttributeSourcedGenerator"
p:format="urn:oasis:names:tc:SAML:2.0:nameid-format:email"
p:attributeSourceIds="#{ {'mail'} }"></bean>
```
Then you need to restart idp: `# service idp restart`. Please make copies of all files you'll be editing, or create a snapshot for this vm prior to that. Also keep in mind you must release attribute you are using as source of values for your nameid in this TR (by adding `email` attribute to its "Released" list in web UI).