Can't insert email address into subject of SCEP request

According to the SCEP payload rules here: http://developer.apple.com/library/ios/#featuredarticles/iPhoneConfigurationProf ileRef/Introduction/Introduction.html the following is written:
"OIDs can be represented as dotted numbers, with shortcuts for country (C), locality (L), state (ST), organization (O), organizational unit (OU), and common name (CN)."
In our CA environment, we want to also include email addresses in the subject itself, rather than in the SAN. This is how all other client certs issued through the CA (either via the certsrv web UI or by AD group policy) and to keep in line with other certs issued greatly assists certificate management tasks. For this Microsoft has the shortcut "E" for Email.
This is listed in Microsofts documentation here: http://msdn.microsoft.com/en-gb/library/windows/desktop/aa386991(v=vs.85).aspx under "Subject.Email"
So SCEP doesn't support the SCEP shortcut, but does support use of OID's. According to Microsofts own documentation above, the OID 1.2.840.113549.1.9.1 can be used for email, and the value should be a string. An example of an email address is given.
In my own testing, when using the Iphone Configuration Utility to generate the SCEP request, using the OID value above and then specifying an email address works, except that everything including/past the @ symbol does not get sent in the request for the cert.
So for example, if my SCEP configuration profile subject is entered as /CN=user-ipad/1.2.840.113549.1.9.1=[email protected]/ then the cert is generated and installed on the ipad or iphone.
When looking at the certificate properties, the CN is correctly displayed as "user-ipad", but the email address is incorrectly shown as "user" rather than [email protected]
I would like to know why the email address is getting sliced in the SCEP request, so that the domain part of the email address is not being sent to the SCEP server (Running on Win 2008 R2) & then how to fix it!
Thanks!

Hi Alex,
I am also trying to install SCEP profile via IPCU to an iPad. It looks like you have already been through all the pain. I have to ask your expertise about the Subject Name and AlnativeName in the SCEP section in configuration profile.
I have tried different varials like $COMPUTERNAME or $SERIALNUMBER, the iPad receives a certificate called
$COMPUTERNAME.mycompany.com
or
$SERIALNUMBER.mycompany.com
It did not return the actual iPad name or serial number, basically the variable did not work.
What should I do to enable every devices receives a unique but also friendly name for their certificate?
Thanks

Similar Messages

  • Since upgrading to os 10.6, I can't drag email addresses into my address book

    Since upgrading to OS 10.6, I can no longer drag email addresses into my address book. Is there a quick way to restore this function that had worked in OS 10.4 but is apparently disabled in 10.6? Is there a work around someone figured out that's quick? I wish Apple would send out a patch to fix this problem. Any news on this front?

    James,
    Although slightly different than the problem you are having, perhaps 10.6: Change Mail's 'Copy Address' behavior - Mac OS X Hints will help with your problem.

  • I am unable to email an image from camera roll. the image gets "stuck". cannot input email address or subject line. am unable to cancel and go back to camera roll

    i am unable to email images from my camera roll. the image gets "stuck". cannot insert email address or subject line. cannot cancel... return to camera roll.
    what to do. i tries taking new picture and sending it in an email... same thing... gets "stuck "
    Waht to do ?

    Hello lohmann8,
    Thank you for providing so much detail about the issue you are experiencing with emailing photos from the Camera Roll.
    The first thing I recommend is quitting and relaunching the applications on your iPhone:
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    You can find the full article here:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If you are still seeing the same issue after quitting and relaunching the Photos and Camera app, I recommend restarting your phone and then resetting if it's still not working:
    Restarting your device
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
    Press and hold the Sleep/Wake button until the Apple logo appears.
    Note: Reset your device only if you are unable to restart it.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    You can find the full article here:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If the issue persists, the last thing I recommend is backing up and restoring your iPhone:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    iTunes: Restoring iOS software
    http://support.apple.com/kb/HT1414
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Need to add senders email address into the subject header of my PHP form (somehow)

    Hello one and all,
    I have a PHP form which is working fine and sends our support team an email with the subject header 'Support'.
    I have been asked to fix this form to include the senders email address into the Subject header so that the support team can filter them easier and reply quicker.
    Any help would be very much appreciated indeed. The form code is below, let me know if you need the whole page.
    Thanks in advance,
    Bradley
    My current form PHP part looks like this: (and the HTML part is below in blue)
    <?php
        if($_GET["action"] == "email")
            $msg = "The following person need support:\n\n";
            $msg = $msg . "First Name: " . $_POST["FirstName"] . " " . $_POST["LastName"] . "\n";
            $msg = $msg . "Tel: " . $_POST["Tel"] . "\n";
            $msg = $msg . "Email: " . $_POST["FROM"] . "\n";
            $msg = $msg . "Support: " . $_POST["Support"] . "\n";
            $msg = $msg . "Model: " . $_POST["Model"] . "\n";
            $msg = $msg . "Comments: " . $_POST["Comments"] . "\n";
            $to ="[email protected]";
            $subject = "Support";
            $from = "From: " . $_POST["FROM"];
            mail($to, $subject, $msg, $emailFrom, $from);
            header("Location:support2.php");
    ?>
    and the HTML part of the fom is like this:
    <form id="form1" name="form1" method="post" action="support.php?action=email">
      <table width="700" border="0" cellspacing="10" cellpadding="10">
        <tr>
          <td valign="middle" class="formtext">*First name:</td>
          <td width="455" valign="middle"><label>
            <input name="FirstName" type="text" class="form-textbox" id="FirstName" />
          </label></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Last name:</td>
          <td valign="middle"><input name="LastName" type="text" class="form-textbox" id="LastName" /></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Email:</td>
          <td valign="middle"><input name="FROM" type="text" class="form-textbox" id="FROM" /></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Telephone:</td>
          <td valign="middle"><input name="Tel" type="text" class="form-textbox" id="Tel" /></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext"> </td>
          <td valign="middle"> </td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Support required:</td>
          <td valign="middle"><label>
            <select name="Support" class="form-dropdown" id="Support">
              <option selected="selected">Please select...</option>
              <option value="Connection Issues">Connection Issues</option>
              <option value="Technical Issues">Technical Issues</option>
              <option value="Furniture Faults">Furniture Faults</option>
              <option value="Other">Other</option>
            </select>
          </label></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">Chair model:</td>
          <td valign="middle"><input name="Model" type="text" class="form-textbox" id="Model" /></td>
        </tr>
        <tr>
          <td valign="middle" class="formtext">*Please describe your issue:</td>
          <td valign="middle"><textarea name="Comments" rows="5" class="form-textarea" id="Comments"></textarea></td>
        </tr>
        <tr>
          <td valign="middle" class="maintext"> </td>
          <td valign="middle" class="maintext"></td>
        </tr>
        <tr>
          <td valign="middle"> </td>
          <td valign="middle"><label>
            <input name="Submit" type="submit" class="form-submit-button" value="Submit" />
          </label></td>
        </tr>
      </table>
      </form>

    MurraySummers you sir, are an absolute legend! This worked perfect straight off the bat!
    I really apreciate your lightning fast reply!
    Thanks again.
    Bradley

  • How can I bcc an email address into a link - in Muse?

    I have a contact button that I have a primary email address for but would also like to bcc my own email address into it also. How do I do that?
    In the hyperlinks dropdown, I tried just putting the address I wanted to bcc in after the primary one (separated by a comma) - and preceding the mailto: of the 2nd email address with bcc so, all in all it said:
    [email protected],bccmailto:[email protected]
    Wild stab in the dark I know - can anyone help?

    Hi;
    I am not sure about the question, do you want both an email and a single line of text to be part of the same field?  There is a "Text Field" which is a single line, and an "Email Field" which is also a single line and only accepts data in email format, you could use these two fields, both could be placed on the same line in the form.  Alternatively you could use a multi-line text field where an email and a line of text could both be entered into the same field but there would be no formatting validation (enforcing email format).
    Thanks,
    Josh

  • How can I put a list of ten email addresses into one contact file?

    I have a lst of ten + people that I want to put into my address book under one disignated.
    Whjat is the easier way to accomplish that task?
    I do not see anything in the Menu bar that addresses this.
    Thanks.
    Doug Wise

    Doug,
    It sounds like you want to create a Group.
    Each of your 10 people should be entered with their own Card in Address Book.
    Then you'll create a Group which you'll then add the 10 contacts to.
    Once that's set up, in Mail you can enter the name of the Group in the To field to easily send a message to all group members.
    So rather than putting 10 email addresses into one Contact, you'll be putting 10 Contacts into 1 Group.
    Matt

  • Gathering email address into a session variable?

    I've got a client who sends out emails to their clients with
    links to their
    site. They'd like to develop a way, that when the end-user
    follows that link
    to the site, the end-user's email address is gathered, and
    stored (or
    emailed to them) so that they know when the user followed the
    link.
    I've used some pretty slick extensions in the past to store
    variables, but
    I'm not sure how (if possible) to either embed something in
    the link, or
    what so we can grab that email address back...
    Any suggestions on how we could accomplish this???

    You could put the users id in the link and then when the page
    is vistited insert a record with the users id so that their
    identity will be recorded, like testsite.php?user=3 or something
    like that. Then make a page to display all the entries into the db.
    You could also generate a hash for each user number and send that
    in the link, which would give a little more security against
    someone changing the link and clicking it. Also if the user id hash
    didnt match any in the db you could redierct to a page saying you
    have an invalid id number.

  • Submit by email button ignoring specified email address and subject

    I have recently upgraded to CS5.5 and I am having trouble with the Submit by Email button in my form. 
    When I distribute the form the email address and subject specified on the button are ignored.  Instead, the form is submitted to my email address with the subject of 'Submitting Completed Form'. 
    I have tried creating the form a number of different ways (i.e. converting PDF created in inDesign, just in Acrobat from scratch, just in Livecycle Designer from scratch) with no success and the same result.  I have found I can change the email address if I go to Acrobat X Pro: Edit > Preferences > Identity but this is not an adequate work-around and does not fix the issue of the subject.
    My company develops forms for both internal and external clients that require this functionality.  The email subject is used to help identify which form it is and routes it to the appropriate department. 
    I have searched the web and this forum for answers but have not found an answer. 
    My question is:  How do I get the 'Submit by Email' button to work correctly?
    I have created many forms before using CS3 and have never encountered this problem.  At the moment the only way I can see to fix the problem is to go back to CS3 which seems ridiculous.  I thought later versions of software were supposed to work better not look the same and not work (sorry for the rant, frustration is getting the better of me).
    I need to use the Distribute Form as it states in the LiveCycle help:
    If you do not use the Distribute feature, form recipients who use Adobe Reader cannot save modifications to most PDF files, including forms filled with data.  They must either immediately return their data electronically or print the form and return the paper copy.
    I am using Acrobat 10 Pro and Livecycle Designer on Windows 7 64-Bit
    Any help will be greatly appreciated.

    What you are seeing is the intended behavior and I'm not sure why is has changed.
    When you distribute a form, it substitutes the email address you originally set up with the button with the one specified in your identity preference and the subject is set to "Submitting Completed Form". It makes a number of other changes to the document that make the distribution workflow possible. I do know that different code is used if the form is being used in a version of Acrobat/Reader prior to 9.
    With an acroform (not XFA), you can save a copy of the distributed form, allowing you to edit the scripts that among other things set the subject line of the email, so that a different subject line text is used. You can then re-enable the form and it should work OK. The problem is knowing exactly what needs to be changed and finding it, and I'm not certain that this is possible with an XFA form. I normally work with acroforms and know where to do it in Acrobat, but things are different in LiveCycle Designer.

  • Getting a BT Yahoo email address into a sub-accoun...

    I've got BT Premium Email with sub-accounts - still have some spare. How do I 'transfer' an old, stand alone BT Yahoo email address into one of my sub accounts.
    Can I do this or do I have to contact BT - if so do you have a number ?
    Thanks
    Solved!
    Go to Solution.

    Hi petez,
    Thanks for posting. I'm sure I can help with this. Drop me an email with the details, including the adress you wish to transfer and I'll take a look. You'll get the 'contact us' form in the about me section of my profile.
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • HT202667 I cannot change prime email address into what WAS my backup email address. Any solutions?

    Need to change prime email address into what WAS my backup email address.
    Can this be done?
    Mac 10.6 Intel Core 2 Duo

    Hi michaelfromripley,
    Thanks for the question.  If you first change your rescue email address to a different email address, then you should be able to change your primary email address for your Apple ID.  The following resources will explain more:
    Manage your Apple ID primary, rescue, alternate, and notification email addresses - Apple Support
    http://support.apple.com/en-us/HT201356
    Add, change, or delete the several types of email addresses you can use with your Apple ID account.
    Primary email address
    Every Apple ID account has one primary email address, and that address is your Apple ID. When you create an Apple ID, you enter the primary address to use as your Apple ID.
    Your primary address is also the contact email address for your account. Check it regularly, because it receives email that you need to manage your account. For example, before you can use a new or changed Apple ID, you need to verify it as directed in a verification email that Apple sends to that address. Didn't receive the email?Rescue email address
    A rescue address helps secure your Apple ID account against unauthorized access by someone who gains control of your primary address. If you have a rescue address, it receives all security-related Apple ID email instead of your primary address, including the email needed to reset your password or security questions.
    Go to My Apple ID (appleid.apple.com).
    Select “Manage your Apple ID” and sign in.
    Select “Password and Security” on the left side of the page. You may be asked to answer one or more security questions before continuing. Forgot the answers?
    If you see a list of three security questions, your account has the option to use a rescue address.
    Accounts that have fewer than three questions don't have and don't need a rescue address.
    Accounts that use two-step verification don't have and don't need a rescue address or security questions.
    Add a rescue address:
    Select Add Email Address, then enter your rescue address. Apple will send a verification email to that address. Didn't receive the email?
    Follow the instructions in the email to verify the address. If you don't verify the address, security-related email continues to go to your primary address.
    Edit a rescue address:
    Select Edit next to the address, then enter the new address. Apple will send a verification email to that address. Didn't receive the email?
    Follow the instructions in the email to verify the address. If you don't verify the address, security-related email continues to go to your primary address.
    Delete a rescue address: Select Delete next to the address.
    Alternate email address
    You can add one or more alternate email addresses for use with Apple services such as Game Center, FaceTime, Find My Friends, iMessage, and OS X notifications.
    Go to My Apple ID (appleid.apple.com).
    Select “Manage your Apple ID” and sign in.
    Add an alternate address:
    Select Add Email Address, then enter your alternate address. Apple will send a verification email to that address. Didn't receive the email?
    Follow the instructions in the email to verify the address.
    Edit an alternate address:
    Select Edit next to the address, then enter the new address. Apple will send a verification email to that address. Didn't receive the email?
    Follow the instructions in the email to verify the address.
    Delete an alternate address: Select Delete next to the address.
    Notification email address
    A notification address is automatically added to your account in certain circumstances:
    If you have a rescue address and turn on two-step verification, that address automatically becomes your notification address. With two-step verification, you don't need a rescue address.
    If you provide an email address with your shipping information when you purchase from the Apple Online Store, that address automatically becomes your notification address.
    Your primary address receives a copy of all Apple ID email that Apple sends to your notification address.
    Go to My Apple ID (appleid.apple.com).
    Select “Manage your Apple ID” and sign in.
    Edit a notification address:
    Select Edit next to the address, then enter the new address. Apple will send a verification email to that address. Didn't receive the email?
    Follow the instructions in the email to verify the address.
    Delete a notification address: Select Delete next to the address.
    Apple email related to your Apple ID account always comes from [email protected]. If you receive suspicious email, learn about identifying fraudulent email.
    Last Modified: Dec 22, 2014
    Change your Apple ID - Apple Support
    http://support.apple.com/en-us/HT202667
    Learn how to change the email address that you use as your Apple ID.
    In most cases, your Apple ID is also the primary email address of your Apple ID account. You can change your Apple ID to any other email address you control, as long as it's not already in use as an Apple ID. If your email address ends with @icloud.com, @me.com, or @mac.com, it's already an Apple ID. 
    Use these steps to reset your Apple ID:
    Sign out of iCloud, the iTunes Store, App Store, FaceTime, Find My Friends, Find My iPhone, and iMessage on each device that uses your current Apple ID for these services.
    Go to My Apple ID.
    Select Manage your Apple ID and sign in. Forgot your password?
    Select Edit next to Apple ID and Primary Email Address.
    Enter the email address that you want to use as your Apple ID, then select Save Changes. Apple will send a verification email to that address.
    Open the email from Apple, then click Verify Now. Didn't receive the email?
    When the My Apple ID page opens, sign in with your new Apple ID email address and password. When you see a message that verification is complete, you can start using your updated Apple ID.
    Update the features and services that you use with Apple ID, so that each one is using your updated Apple ID.
    If you need to change the Apple ID that's signed in to your iOS device, use these steps to sign out, then back in with a different Apple ID.
    Last Modified: Dec 11, 2014
    Cheers!
    - Judy

  • Can we collect email addresses and build a search function?

    We want to build an app using InDesign, DPS and Edge Animate (plus some custom html5 and javascript if necessary/possible).
    We'd like to have a form somewhere in the app where users can enter their email addresses if they want to receive email from us. Is this possible with these tools and some html5 and javascript brought in to InDesign?
    Can we build a search function within the app that searches all the text?
    I understand that by using a Folio Overlay, the app can bring in a web page. So, could we, for example, create a web page that shows latest stock prices, and then bring that into the Folio Overlay, so that the user always sees those latest prices? What happens if the user's iPad is not connected to the internet? Can we set a default image for the overlay? Also, will the app remember the page it downloaded last time if it can't connect at a later date?
    Thanks.

    Hi,
    We developed the first example of search within a DPS folio for the Sotheby's app. In addition, MEI  integrated search within the core of our DPS storefront and custom UI solution, MEI Portico. Within a Portico-powered UI, you can search for folios, specific articles and other content and can then navigate directly to the desired content.
    Please feel free to reach out to discuss.
    Best,
    Brett Kizner
    Product Marketing Director
    MEI
    [email protected]

  • HT3529 I have just bought an iPad I have typed in email addresses into Contacts, but when I try to send a message most of them come up within red with an !. Then it will not let me send! This is sapping my confidence ! Please help if possible!

    I have typed in email addresses into Contacts, but when I try to do an email, most of them have an exclamation mark and won't let me send! Where am I going wrong ? It is really sapping my confidence!

    Did you set up your email account info in Settings?
    Settings > Mail, Contacts, Calendar > Accounts > your account should be listed in there with the appropriate incoming and outgoing mail servers and correct user names and passwords.

  • I'm unable to add the email address for iMessage, that I was using before iOS 7 to my iPhone, because it says that it is "in use by another device," but I have no other devices.  How do I resolve this so I can add this email address to my iPhone?

    I'm unable to add the email address for iMessage, that I was using before iOS 7 to my iPhone, because it says that it is "in use by another device," but I have no other devices.  How do I resolve this so I can add this email address to my iPhone to send and recieve iMessages?

    Sync your iPhone to iTunes, and see if that does the trick.  Also you could try a Soft Reset with no Risk to Data.  Holding down both the Sleep button and the Home button until the Apple logo appears and then waiting for the Reset to bring you iPhone back to the lock screen.    Are you trying to add the email at Settings>Messages>Send and Receive from (2 Addresses) your iPhone number and your email address?

  • How do you remap the F1 key to paste your email address into a textbox on a website?

    I would like to know if FIREFOX allows keys to be remapped. I want to be able to make the F1 key paste my email address into a textbox on a website to make it easier to type stuff. I have seen other programs that allow you to "remap" the keyboard and I wanted to know if FIREFOX allows this or not?

    According to this: [[Keyboard shortcuts]], it is not possible.

  • Can't verify email address for receiving messages in Messages and FaceTime

    In the Preferences for Messages you can set additional email addresses that others can use when sending Messages and FaceTime messages. Apple sends a verification email to the email addresses you add. I have been able to complete this process for three out of four email addresses. Two of those I added today.
    The address I use the most, my long-time email address with my ISP Verizon, repeadedly fails in the process. First, the Preferences panel says 'Email sent'. Then it says 'Waiting to verify' with a link to Details. Apple's verification message never arrives in my Verizon mailbox.
    At one time (pre-Mavericks?) this email worked with Messages and FaceTime, it is the address I use for iTunes purchases. I have checked the Verizon email site for Spam or blocked email addresses. Nothing there.
    Any magic you can suggest?

    Hi,
    It does seem strange that the email works in one place and not another.
    Having said that I have had an email as an Apple ID in the past then the security requirements have changed and whilst it works in some places it often needs you to verify for use in a new place.
    Whilst any login to any Apple Service does check the ID and password with a central database each service is run on it's own servers.
    this leads to some almost two step issues where an ID already in use is not asked to up it's security but a new app can be almost blocked.
    If you go to https://appleid.apple.com/ and use the Manage option to login to that ID is it showing Verified there ?
    AS an Apple ID was there a a recovery email that was linked to it ?
    Do you still have access to that ?  It might be where the email was sent.
    7:34 pm      Thursday; November 6, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

Maybe you are looking for

  • Help! I want to view books/pdfs on my iphone 3gs!

    It's so annoying to view books on ibooks. I have books in pdf format and I want to view them with ibooks but it's hard to read them because you have to scroll across the screen after each line to read the next. None of the settings for ibooks are fix

  • Disable a field in a Table layout based on the condition

    Hello, In the seeded page, there is a table layout region with viewobject name as View1. It has 3 fields displayed as Field A, Field B, Field C with multiple rows displayed when the page opens. Fields B and C are MessageTextInputs and Field A is Mess

  • Flash Media Playback configurator swf file size

    Hello, I just start using the Flash Media Playback configurator : http://www.osmf.org/configurator/fmp/ and I am very surprised that the size of the swf file is less than 2KB. The swf file used is http://fpdownload.adobe.com/strobe/FlashMediaPlayback

  • Firefox won't update past 3.6.9

    Was looking to update my pc to Firefox 4.0, since it hasn't automatically updated. When I went to check for updates it said download paused on 3.6.10 and when trying to get it to update, it simply says connecting to the update server for a time and t

  • "Harddisk problem" in Zen X

    I got a Zen Xtra 40 gb player for Christmas and once I finally got all of my cds loaded on it and went to use it, I haven't been able to. The player freezes and I have to reset. When I reset, the rescue mode comes up. I've tried disk cleanup, formatt