SE P800/900 OMA Client Provisioning for Email

SE P800/900 OMA Client Provisioning for Email SearchSearch
Author Message
Anonymous
 
Posted on Tuesday, May 18, 2004 - 12:46 pm:   

We are trying out the NOW SMS Gateway.
We can do the Nokia 60 Series OMA Client Provisioning for POP3/SMTP Email Setup using the "Setting XML option".
However, we have problem in doing the same for SE P800/P900.
The Setting is misplaced in the Internet Setting NOT the Email Setting.
Any Idea?
Anything specific about SE P800/P900 in the setting?

Regards
Bn
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 2663
Registered: 10-2002
Posted on Tuesday, May 25, 2004 - 07:59 pm:   

SonyEricsson does have an OTA provisioning guide for the P800/P900. You can download it by registering at http://www.sonyericsson.com/developer.

That said, the specification says nothing about provisioning settings for e-mail.

It uses OMA Provisioning Content for WAP browser and MMS client. But then it uses the Nokia/Ericsson OTA spec for SyncML and Wireless Village setup (NowSMS does also support this provisioning content).

However, there is no mention of e-mail client configuration.

I have heard that some of the SonyEricsson phones support e-mail client provisioning via Nokia Smart Messaging. But I haven't tried it, and I don't know if the P800/P900 supports it (I was told that the T630 and possibly the T610 support this).

-bn
Anonymous
 
Posted on Thursday, May 27, 2004 - 05:42 pm:   

How do you setup the Nokia Pop/SMTP Email setting?
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 2703
Registered: 10-2002
Posted on Monday, June 07, 2004 - 07:24 pm:   

My suggestion about using Nokia Smart Messaging to configure the SonyEricsson phones appears to be a dead-end ... at least based on my tests.

So I am not sure how to send an OTA command to configure the e-mail settings on a P800 or P900.

I have received a few questions via e-mail about how to send the provisioning settings for the newer Nokia phones.

Basically, you use the "Send XML Settings" option in NowSMS, and then you create an XML document of OMA Provisioning content format, such as the following:

<wap-provisioningdoc version="1.0">

<characteristic type="APPLICATION">
<parm name="APPID" value="25"/>
<parm name="PROVIDER-ID" value="MyMail"/>
<parm name="TO-NAPID" value="Browsing_GPRS"/>
<parm name="FROM" value="first.second@mymail.com"/>
<characteristic type="APPADDR">
<parm name="ADDR" value="smtp.mail.com"/>
<characteristic type="PORT">
<parm name="PORTNBR" value="25"/>
<parm name="SERVICE" value="STARTTLS"/>
</characteristic>
</characteristic>
<characteristic type="APPAUTH">
<parm name="AAUTHNAME" value="username"/>
<parm name="AAUTHSECRET" value="password"/>
</characteristic>
</characteristic>

Only include one of the following sections, for IMAP4 or POP3 as appropriate.

<characteristic type="APPLICATION">
<parm name="APPID" value="143"/>
<parm name="PROVIDER-ID" value="MyMail"/>
<parm name="NAME" value="IMAP box"/>
<parm name="TO-NAPID" value="Browsing_GPRS"/>
<characteristic type="APPADDR">
<parm name="ADDR" value="imap.mail.com"/>
<characteristic type="PORT">
<parm name="PORTNBR" value="143"/>
<parm name="SERVICE" value="STARTTLS"/>
</characteristic>
</characteristic>
<characteristic type="APPAUTH">
<parm name="AAUTHNAME" value="username"/>
<parm name="AAUTHSECRET" value="password"/>
</characteristic>
</characteristic>


<characteristic type="APPLICATION">
<parm name="APPID" value="110"/>
<parm name="PROVIDER-ID" value="MyMail"/>
<parm name="NAME" value="POP box"/>
<parm name="TO-NAPID" value="Browsing_GPRS"/>
<characteristic type="APPADDR">
<parm name="ADDR" value="pop.mail.com"/>
<characteristic type="PORT">
<parm name="PORTNBR" value="110"/>
<parm name="SERVICE" value="STARTTLS"/>
</characteristic>
</characteristic>
<characteristic type="APPAUTH">
<parm name="AAUTHNAME" value="username"/>
<parm name="AAUTHSECRET" value="password"/>
</characteristic>
</characteristic>

</wap-provisioningdoc version="1.0">

Leave out the <parm name="SERVICE" value="STARTTLS"/> if your e-mail server does not support STARTTLS.

TO-NAPID should point to the id of an existing Access Point definition, or you can also define an access point in the same XML document.

-bn