Skip to content

Commit

Permalink
Fixed Email Enrollment
Browse files Browse the repository at this point in the history
  • Loading branch information
bhillkeyfactor committed Jan 25, 2024
1 parent 46fa492 commit a5aef3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DigiCertSymCaProxy/RequestManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -419,10 +419,10 @@ public SearchCertificateRequestType GetSearchCertificatesRequest(int pageCounter
}

//8. Loop through mail Entries
if (san.ContainsKey("mail"))
if (san.ContainsKey("email"))
{
var mailList = new List<Rfc822Name>();
var mailKp = san["mail"];
var mailKp = san["email"];

Logger.Trace($"mail: {mailKp}");

Expand Down

0 comments on commit a5aef3b

Please sign in to comment.