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 > Windows Mobile Hacks/Tweaks
Register Community Search

Notices


Closed Thread
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-10-2008, 05:34 PM
Lynx217's Avatar
Lurker
Offline
Pocket PC: toshiba e800
 
Join Date: Jun 2008
Posts: 16
Reputation: 0
Lynx217 is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Registry Edit - Inbox

Is there a way to go into the registry and reset the pre-set inbox settings? I asked in another section of the forum, but was hoping someone might see it over here that didn't see it there that might have an answer. I would like to be able to upload my Gmail now and then - but more to be able to click a person in contacts and email them directly.
  #2 (permalink)  
Old 06-10-2008, 06:06 PM
rstoyguy's Avatar
SuperNoob
Offline
Pocket PC: iPhone 5s
Carrier: TMobile
Location: Wichita, KS
 
Join Date: Jan 2008
Posts: 6,309
Reputation: 23264
rstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation level
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Registry Edit - Inbox

Quote:
Originally Posted by Lynx217 View Post
Is there a way to go into the registry and reset the pre-set inbox settings? I asked in another section of the forum, but was hoping someone might see it over here that didn't see it there that might have an answer. I would like to be able to upload my Gmail now and then - but more to be able to click a person in contacts and email them directly.
This is done with user customization and a provisioning xml file. Here is an example:

Code:
 
Here is my final 2-account xml file with email/passwds nuked to protect the guilty

<?xml version="1.0" encoding="utf-16"?>
<wap-provisioningdoc>
<characteristic type="EMAIL2">
<characteristic type="{C7C1E248-D918-3E0E-F421-D6101002C7F3}">
<parm name="SERVICENAME" value="Home"/>
<parm name="SERVICETYPE" value="IMAP4"/>
<parm name="INSERVER" value="mymail.com"/>
<parm name="AUTHNAME" value="daffy"/>
<parm name="AUTHSECRET" value="duck"/>
<parm name="DOMAIN" value=""/>
<parm name="OUTSERVER" value="mymail.com"/>
<parm name="REPLYADDR" value="daffy@mymail.com"/>
<parm name="SMTPALTENABLED" value="1"/>
<parm name="SMTPALTAUTHNAME" value="daffy"/>
<parm name="SMTPALTPASSWORD" value="duck"/>
<parm name="SMTPALTDOMAIN" value=""/>
<parm name="NAME" value="Quack Quack"/>
<parm name="LINGER" value="60"/>
<parm name="RETRIEVE" value="2048"/>
<parm name="KEEPMAX" value="25"/>
<parm name="DWNDAY" value="3"/>
<parm name="AUTHREQUIRED" value="1"/>
<characteristic type="TAGPROPS">
<parm name="812C000B" value="1"/>
</characteristic>
</characteristic>

<characteristic type="{5D5172CA-3B08-7304-AB0A-D21EBA6D0EA5}">
<parm name="SERVICENAME" value="Work"/>
<parm name="SERVICETYPE" value="IMAP4"/>
<parm name="INSERVER" value="saltmines.com"/>
<parm name="AUTHNAME" value="daffy@saltmines.com"/>
<parm name="AUTHSECRET" value="duck"/>
<parm name="DOMAIN" value=""/>
<parm name="OUTSERVER" value="saltmines.com"/>
<parm name="REPLYADDR" value="daffy@saltmines.com"/>
<parm name="SMTPALTAUTHNAME" value=""/>
<parm name="SMTPALTDOMAIN" value=""/>
<parm name="NAME" value="Daffy Duck"/>
<parm name="LINGER" value="60"/>
<parm name="RETRIEVE" value="2048"/>
<parm name="KEEPMAX" value="25"/>
<parm name="DWNDAY" value="3"/>
<parm name="AUTHREQUIRED" value="1"/>
<characteristic type="TAGPROPS">
<parm name="8128000B" value="1"/>
<parm name="812C000B" value="1"/>
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
Search for "email2"....
__________________
If this post was helpfull, let me know by clicking Thanks!

  #3 (permalink)  
Old 06-10-2008, 06:40 PM
Lynx217's Avatar
Lurker
Offline
Pocket PC: toshiba e800
Threadstarter
 
Join Date: Jun 2008
Posts: 16
Reputation: 0
Lynx217 is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Registry Edit - Inbox

Pardon me, the newb LOL, but I found "email2" in my registry but only seen a clsid folder with a default and addvalue setting and the addvalue in the main folder. Am I supposed to somehow CREATE an xml file?
  #4 (permalink)  
Old 06-10-2008, 07:49 PM
rstoyguy's Avatar
SuperNoob
Offline
Pocket PC: iPhone 5s
Carrier: TMobile
Location: Wichita, KS
 
Join Date: Jan 2008
Posts: 6,309
Reputation: 23264
rstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation level
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Registry Edit - Inbox

Quote:
Originally Posted by Lynx217 View Post
Pardon me, the newb LOL, but I found "email2" in my registry but only seen a clsid folder with a default and addvalue setting and the addvalue in the main folder. Am I supposed to somehow CREATE an xml file?
I don't have my laptop with me, but I use a xml file to setup my e-mail on my phone when I flash. I can upload a edited version later this evening when I get home. Windows mobile uses .vol files to keep this information and M$ has blessed us with setting up e-mail through xml....btw, you can edit a xml file with a text editor. In the meantime search for provisioning+email2 and it should pull up many examples.
  #5 (permalink)  
Old 06-10-2008, 09:44 PM
rstoyguy's Avatar
SuperNoob
Offline
Pocket PC: iPhone 5s
Carrier: TMobile
Location: Wichita, KS
 
Join Date: Jan 2008
Posts: 6,309
Reputation: 23264
rstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation level
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Registry Edit - Inbox

Ok, here is my gmail.xml that I use in my user customization sdconfig.txt. All Gmail users have to do is change their username and password.

All the EMAIL2 CSP provisioning parameters are described here.
Information on User Customization and a little better explanation is done here by Slueth255 @ xda.

gmail.xml
Code:
<wap-provisioningdoc>
<characteristic type="EMAIL2">
 <characteristic type="{86bcb241-aec1-4800-bd9c-2d5e7ee00005}">
  <parm name="SERVICENAME" value="rstoyguy Gmail" />
  <parm name="SERVICETYPE" value="IMAP4" />
  <parm name="INSERVER" value="imap.gmail.com" />
  <parm name="OUTSERVER" value="smtp.gmail.com" />
  <parm name="NAME" value="rstoyguy" />
  <parm name="AUTHNAME" value="rstoyguy@gmail.com" />
  <parm name="AUTHSECRET" value="password_here" />
  <parm name="DOMAIN" value="" />
  <parm name="REPLYADDR" value="rstoyguy@gmail.com" />
  <parm name="LINGER" value="120" />
  <parm name="RETRIEVE" value="-1" />
  <parm name="KEEPMAX" value="-1" />
  <parm name="DWNDAY" value="-1" />
  <parm name="AUTHREQUIRED" value="1" />
  <parm name="SMTPALTENABLED" value="1" />
  <parm name="SMTPALTAUTHNAME" value="rstoyguy@gmail.com" />
  <parm name="SMTPALTPASSWORD" value="password_here" />
  <parm name="SMTPALTDOMAIN" value="smtp.gmail.com" />
 </characteristic>
</characteristic>
</wap-provisioningdoc>
  #6 (permalink)  
Old 06-11-2008, 08:42 PM
Lynx217's Avatar
Lurker
Offline
Pocket PC: toshiba e800
Threadstarter
 
Join Date: Jun 2008
Posts: 16
Reputation: 0
Lynx217 is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Registry Edit - Inbox

Quote:
Originally Posted by rstoyguy View Post
I don't have my laptop with me, but I use a xml file to setup my e-mail on my phone when I flash. I can upload a edited version later this evening when I get home. Windows mobile uses .vol files to keep this information and M$ has blessed us with setting up e-mail through xml....btw, you can edit a xml file with a text editor. In the meantime search for provisioning+email2 and it should pull up many examples.
I might need this, something I can just copy and paste to my /Windows directory and reboot. I'm just such an idiot at this thing.
Closed Thread

  PPCGeeks > Windows Mobile > Windows Mobile Hacks/Tweaks


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 12:48 PM.


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