PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Diamond > CDMA Diamond Development
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-19-2008, 04:23 PM
Sailrace's Avatar
Regular 'Geeker
Offline
Pocket PC: CDMA Diamond
Carrier: Sprint
 
Join Date: Nov 2007
Posts: 317
Reputation: 155
Sailrace is keeping up the good workSailrace is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Need Help: Certificate install in UC

Does any one know if it is possible to set user customizations to automatically install an exchange certificate? I'm wondering what the action line would need to be to get this to happen automatically.

Thanks in advance.
Reply With Quote
  #2 (permalink)  
Old 11-19-2008, 04:24 PM
Mr. X's Avatar
Retired Staff
Offline
Pocket PC: HTC Desire
Carrier: Telus
Location: Ontario, Canada
 
Join Date: Aug 2008
Posts: 7,226
Reputation: 27769
Mr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation level
Mentioned: 8 Post(s)
Tagged: 2 Thread(s)
Re: Need Help: Certificate install in UC

is it just a file that needs to be copied? use the cpy1: command
__________________

If I have helped you, you like my work, want to get me a coffee or you feel like you wish to help me get my next device.

feel free to its appreciated, but not required!

Thanks To everyone who donated!
Reply With Quote
  #3 (permalink)  
Old 11-19-2008, 04:40 PM
Sailrace's Avatar
Regular 'Geeker
Offline
Pocket PC: CDMA Diamond
Carrier: Sprint
Threadstarter
 
Join Date: Nov 2007
Posts: 317
Reputation: 155
Sailrace is keeping up the good workSailrace is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Need Help: Certificate install in UC

i guess it could be that simple. I never really though about it. i always go to the internal storage and click on the certificate, and it "installs" somewhere.

But i guess i don't know where it goes to copy it to?
Reply With Quote
  #4 (permalink)  
Old 11-19-2008, 04:42 PM
Mr. X's Avatar
Retired Staff
Offline
Pocket PC: HTC Desire
Carrier: Telus
Location: Ontario, Canada
 
Join Date: Aug 2008
Posts: 7,226
Reputation: 27769
Mr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation levelMr. X can't get a higher reputation level
Mentioned: 8 Post(s)
Tagged: 2 Thread(s)
Re: Need Help: Certificate install in UC

ahh well the next step is to install the certificate and then find out where it goes
Reply With Quote
  #5 (permalink)  
Old 11-19-2008, 04:52 PM
Sailrace's Avatar
Regular 'Geeker
Offline
Pocket PC: CDMA Diamond
Carrier: Sprint
Threadstarter
 
Join Date: Nov 2007
Posts: 317
Reputation: 155
Sailrace is keeping up the good workSailrace is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Need Help: Certificate install in UC

Agreed - but i'm not having any luck there either. I'm searching as we speak.
Reply With Quote
  #6 (permalink)  
Old 11-19-2008, 04:54 PM
daryelv's Avatar
PPCGeeks Regular
Offline
Pocket PC: Epic
Carrier: Sprint
Location: WI
 
Join Date: Sep 2007
Posts: 146
Reputation: 536
daryelv knows their stuffdaryelv knows their stuffdaryelv knows their stuffdaryelv knows their stuffdaryelv knows their stuffdaryelv knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to daryelv
Re: Need Help: Certificate install in UC

Quote:
Originally Posted by Sailrace View Post
i guess it could be that simple. I never really though about it. i always go to the internal storage and click on the certificate, and it "installs" somewhere.

But i guess i don't know where it goes to copy it to?
You could create a CAB file to setup your Email and include the certificate in there... it looks something like this in your _setup.xml... this has 2 certs defined (DigiCert and Entrust)... you'll need to put in your values from your certificates, I removed everything in this for security reasons...

Code:
<?xml version="1.0" encoding="us-ascii"?>
<wap-provisioningdoc>
    <characteristic type="CertificateStore">
        <!--DigiCert Global CA-->
        <characteristic type="CA">
            <characteristic type="User">
                <characteristic type="25B78 - look in your cert file and replace this - 347607">
                    <parm name="EncodedCertificate" value="MIIGJDCCB ... blah blah blah (something really long, look in your certificate file) ... pFxQyAw==" />
                </characteristic>
            </characteristic>
        </characteristic>
        <!--Entrust.net Secure Server Certification Authority-->
        <characteristic type="ROOT">
            <characteristic type="User">
                <characteristic type="99A69 - look in your cert file and replace this - E1539">
                    <parm name="EncodedCertificate" value="MIIE2D ... blah blah blah (something really long, look in your certificate file) ... L9wqTG+bI=" />
                </characteristic>
            </characteristic>
        </characteristic>
    </characteristic>
    <characteristic type="Sync">
    <characteristic type="Connection">
        <parm name="AllowSSLOption" value="1" />
     <parm name="Server" value="mail.yourserver.com"/>
       <parm name="Domain" value="yourDom" />
     <parm name="UseSSL" value="1"/>
     <parm name="SavePassword" value="1"/>
     <parm name="User" value="yourName"/>
     <parm name="Password" value="yourPass"/>
    </characteristic>
      <characteristic type="Mail">
       <parm name="Enabled" value="1"/>
      </characteristic>
      <characteristic type="Calendar">
       <parm name="Enabled" value="1"/>
      </characteristic>
      <characteristic type="Contacts">
       <parm name="Enabled" value="1"/>
      </characteristic>
      <characteristic type="Tasks">
       <parm name="Enabled" value="1"/>
  </characteristic>
    </characteristic>
</wap-provisioningdoc>
__________________
Sprint Android Epic 4g. Luvvin it too!
Reply With Quote
  #7 (permalink)  
Old 11-19-2008, 07:15 PM
Sailrace's Avatar
Regular 'Geeker
Offline
Pocket PC: CDMA Diamond
Carrier: Sprint
Threadstarter
 
Join Date: Nov 2007
Posts: 317
Reputation: 155
Sailrace is keeping up the good workSailrace is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Need Help: Certificate install in UC

I guess i'm not sure where to get the correct info off the certificate, because i don't find anything that looks at all like the strings that you have.

I have serial numbers and fingerprint ID's, but that's it.

Maybe this is over my head!!!
Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Diamond > CDMA Diamond Development


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 10:19 AM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com