View Single Post
  #2 (permalink)  
Old 05-16-2008, 12:05 PM
rstoyguy's Avatar
rstoyguy
SuperNoob
Offline
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: Anyway to change the 30KB receive cap on email?

Quote:
Originally Posted by strommsarnac View Post
I've searched around and can't find another post about this. Am hoping it's a reg entry. Any ideas? I'd like at least 200KB.

Also, what about changing the default of not displaying images, is there something to change that too?
This was taken from here.... http://forum.ppcgeeks.com/showpost.p...&postcount=290

You can setup e-mail with usercustomization and xml. In the following example the value "RETREIVE" is equal to the kb you want. A value of "-1" will download the whole message. Otherwise you have to change the setting in pocket outlook.

Code:
Code:
 
<characteristic type="EMAIL2"> 
<characteristic type="{414787bd-61f7-4635-b300-75413cfbf6ca}"> 
<parm name="SERVICENAME" value="xxx@embarqmail.com" /> 
<parm name="SERVICETYPE" value="POP3" /> 
<parm name="INSERVER" value="pop.embarqmail.com" /> 
<parm name="OUTSERVER" value="smtp.embarqmail.com" /> 
<parm name="NAME" value="xxx@embarqmail.com" /> 
<parm name="REPLYADDR" value="xxx@embarqmail.com" /> 
<parm name="AUTHNAME" value="xxx@embarqmail.com" /> 
<parm name="AUTHSECRET" value="pass" /> 
<parm name="DOMAIN" value="" /> 
<parm name="AUTHREQUIRED" value="1" /> 
<parm name="LINGER" value="30" /> 
<parm name="RETRIEVE"value="2048" /> 
<parm name="KEEPMAX" value="0" /> 
<parm name="DWNDAY" value="7" /> 
<parm name="SMTPALTENABLED" value="0" /> 
<parm name="SMTPALTAUTHNAME" value="" /> 
<parm name="SMTPALTPASSWORD" value="" /> 
<parm name="SMTPALTDOMAIN" value="" /> 
<characteristic type="TAGPROPS"> 
<parm name="8128000B" value="0"/> 
<parm name="812C000B" value="0"/> 
</characteristic> </characteristic>
__________________
If this post was helpfull, let me know by clicking Thanks!


Last edited by rstoyguy; 05-16-2008 at 12:07 PM.