|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Quote:
I snatched this from Elephant007. He has his xml set up for 2 cities with this parameter. <parm name="Weather.CityList" datatype="string" value="NAM|US|TX|ABILENE,NAM|US|OK|OKLAHOMA CITY" /> If you go to accuweather.com and input the city you want, look at the address bar on the browser you're using and follow the same format he is using for the city area. Let me know if that works for you. |
|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Quote:
|
|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Quote:
|
|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Have been playing around with UC and got my exchange server setup working. However, I can't get it to automatically setup to retrieve the full message. What option is that.
Also, how can I set it up to automatically store the mail data to the storage card instead of the internal memory? |
|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Quote:
__________________
|
|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Quote:
Set Exchange to download entire message and unlimited attachment size and delete without warnings Code:
<wap-provisioningdoc> <!-- *** Start Configure Email Settings No Warn on Delete/Download Size Limit to Entire Message/Include Attachments Unlimited Size *** --> <characteristic type="Registry"> <characteristic type="HKCU\Software\Microsoft\Inbox\Settings" translation="filesystem"> <parm name="WarnOnDeleteSoftkey" datatype="integer" value="0"/> </characteristic> <characteristic type="HKCU\Software\Microsoft\ActiveSync" translation="filesystem"> <parm name="MIMETruncation" datatype="integer" value="-1"/> <parm name="MailBodyTruncation" datatype="integer" value="-1"/> <parm name="HTMLTruncation" datatype="integer" value="-1"/> <parm name="MailFileAttachments" datatype="integer" value="-1"/> <parm name="BodyTruncation" datatype="integer" value="-1"/> <parm name="NPWRunOnDevice" datatype="integer" value="0"/> </characteristic> </characteristic> <!-- *** End Configure Email Settings No Warn on Delete/Download Size Limit to Entire Message/Include Attachments Unlimited Size *** --> </wap-provisioningdoc> Last edited by elephant007; 03-25-2009 at 12:19 PM. |
This post has been thanked 1 times. |
|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Quote:
For instance, this is my set up for "Sync". It took me a bit to get it to work: Code:
<wap-provisioningdoc> <characteristic type="Sync"> <characteristic type="Connection"> <parm name="Server" value="xxxx"/> <parm name="User" value="xxxx"/> <parm name="Password" value="xxxx"/> <parm name="SavePassword" value="1"/> <parm name="Domain" value=""/> <parm name="AllowSSLOption" value="1"/> <parm name="UseSSL" value="1"/> <parm name="EnableRNDIS" value="1"/> </characteristic> <characteristic type="Settings"> <parm name="PeakStartTime" value="0800"/> <parm name="PeakEndTime" value="1800"/> <parm name="PeakFrequency" value="-1"/> <parm name="OffPeakFrequency" value="0"/> <parm name="BodyTruncation" value="-1"/> <parm name="SendMailItemsImmediately" value="1"/> <parm name="MailBodyTruncation" value="-1"/> <parm name="HTMLTruncation" value="-1"/> <parm name="MIMETruncation" value="-1"/> <parm name="SyncWhenRoaming" value="1"/> <characteristic type="PeakDays"> <parm name="Sun" value="0"/> <parm name="Mon" value="1"/> <parm name="Tue" value="1"/> <parm name="Wed" value="1"/> <parm name="Thr" value="1"/> <parm name="Fri" value="1"/> <parm name="Sat" value="0"/> </characteristic> </characteristic> <characteristic type="Calendar"> <parm name="Enabled" value="1"/> <parm name="CalendarAgeFilter" value="6"/> </characteristic> <characteristic type="Contacts"> <parm name="Enabled" value="1"/> </characteristic> <characteristic type="Mail"> <parm name="Enabled" value="1"/> <parm name="EmailAgeFilter" value="5"/> </characteristic> <characteristic type="Tasks"> <parm name="Enabled" value="0"/> </characteristic> </characteristic> </wap-provisioningdoc> |
|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Quote:
The problem I've seen others have is that all the shortcuts in the start menu are checked 'System Files'. This script goes through each of the Start Menu folders and removes all file attributes, then deletes it, one by one. Here's the Mortscript Code: Code:
# First delete the Start Menu's original contents SrcDir = "\Storage Card\Cabs\Start Menu" aDir = "\Windows\Start Menu" ForEach bDir in directories ( aDir & "\*" ) If ( bdir ne "\Windows\Start Menu\Settings" ) if ( ElementCount( DirContents( bDir, DC_FILES ) ) > 0 ) ForEach tbdFile in files ( bDir & "\*" ) SetFileAttribs( tbdFile , 0 , 0 , 0 ) delete( tbdFile ) EndForEach endif if ( ElementCount( DirContents( bDir, DC_DIRS ) ) > 0 ) ForEach cDir in directories ( bDir & "\*") if ( ElementCount( DirContents( cDir, DC_FILES ) ) > 0 ) ForEach tbdFile in files ( cDir & "\*" ) SetFileAttribs( tbdFile , 0 , 0 , 0 ) delete( tbdFile ) EndForEach Endif if (ElementCount( DirContents( cDir, DC_DIRS ) ) > 0 ) ForEach dDir in directories (cDir & "\*") if ( ElementCount( DirContents( dDir, DC_FILES ) ) > 0 ) ForEach tbdFile in files ( dDir & "\*" ) SetFileAttribs( tbdFile , 0 , 0 , 0 ) delete( tbdFile ) EndForEach Endif if ( ElementCount( DirContents( dDir, DC_DIRS ) ) > 0 ) ForEach eDir in directories (dDir & "\*") if ( ElementCount( DirContents( eDir, DC_FILES ) ) > 0 ) ForEach tbdFile in files ( eDir & "\*" ) SetFileAttribs( tbdFile , 0 , 0 , 0 ) delete( tbdFile ) EndForEach Endif if ( ElementCount( DirContents( eDir, DC_DIRS ) ) > 0 ) message ( "Some folders are too deep. May require manual deletion.", "Error - fDir" ) Endif Deltree ( eDir ) EndForEach Endif Deltree ( dDir ) EndForEach EndIf DelTree ( cDir ) EndForEach endif Deltree( bDir ) Endif EndForEach ForEach tbdFile in files ( aDir & "\*" ) SetFileAttribs( tbdFile , 0 , 0 , 0 ) Delete( tbdFile ) EndForEach # Then Recreate from a premade source Foreach tbcDir in directories ( SrcDir & "\*" ) Xcopy( SrcDir & "\*", aDir, 1, 1 ) Endforeach Foreach tbcFile in files ( SrcDir & "\*" ) Xcopy( SrcDir & "\*", aDir, 1, 1 ) Endforeach # Lastly, delete the script copied to the Memory. Delete ( "\CustomStartMenu.mscr" ) Code:
CAB: \Storage Card\Cabs\MortScript-4.2-PPC.cab CPY1:\Storage Card\Cabs\CustomStartMenu.txt CPY2:\CustomStartMenu.mscr EXEC:\CustomStartMenu.mscr My replacement Start Menu was already set up on my SD card. The easiest way I found was to organize the real start menu however I liked it, then just copied all of the contents over to my SD. I copied the Settings folder to my SD card (which is apparently empty) for backup, but the script is supposed to skip over the settings folder when deleting. It's partially because Mortscript doesn't want to automatically copy over the settings folder for some reason. But the reason could easily be poor coding on my part. Limitations: The deletion portion of this script is limited to about five levels deep into the start menu. So if you originally have this folder -> \Start Menu\Programs\Utilities\Internet\IM\, it'll prolly throw up an error. I've never seen a rom that organized the start menu for you so I think 3 levels is overkill. I haven't seen and don't think there will be any limitation on how deep of folders you can copy. If there are any problems I'll help as much as I can.
__________________
Amp'd Mobile
Moto V3m -> Moto E816 -> Moto Q Sprint HTC Mogul -> HTC Touch Pro -> Evo 4G |
This post has been thanked 3 times. |
|
||||
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!
Quote:
Registry Code Code:
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Inbox\Settings] "AttsOnCard"=dword:00000001 Code:
<wap-provisioningdoc> <characteristic type="Registry"> <characteristic type="HKCU\Software\Microsoft\Inbox\Settings" translation="filesystem"> <parm name="AttsOnCard" datatype="integer" value="1"/> </characteristic> </characteristic> </wap-provisioningdoc> Last edited by elephant007; 03-25-2009 at 12:48 PM. |
|
|
|