SMS Listener : phone is saving all incoming SMS txt in built in folder - HD2 General

Was going through my Tmobile HD2 and found a folder called SMS Listener under My Device/Temp . When I opened it , there was every txt I had received since I had purchased the phone . I have not done any master resets since date of purchase. Honestly this was kinda scary . There was alot of incriminating txt . Is there a way to prevent this?

bump......

Is this a US t mobile HD2 your referring to?
I'd imagine theres a reg entry you could change but I have never encountered this before......

Hmmm....
can't find any such folder on my UK HD2. Must be a tmous thing.

I found it in the registry did a search on the net . It is some home connected to SMS wakes up the phone when there is an incoming txt. But why is it saving it to the main memory in the phone using Word mobile word document .docx. How can this be disabled without turning off sms. ?
\HKCR\CLSID\{54F38CD4-B778-28BA-6F63-2D942AFCCD7D}InProcServer32\windows\SmsListener.dll

Is this related to the Patriot act or something?

its been discussed and here is a way to "turn off the sms logger / listener"
http://forum.xda-developers.com/showthread.php?t=660101 (page 2, post # 11, provided by member vponomarev )
and...
http://forum.xda-developers.com/showthread.php?t=690265

i also found this simslistener on my hd 2 iwould like to know what is its purpose
all my text are there for anyone to see
private thing
anyone have an answer ?

this is true, I backup my sms with that file SmsListener_log.txt

Related

Read SMS

Hello!
I have some difficulties to read SMS in my application : my application doesn't want to use the fonction SmsOpen in mode RECEIVE. Do you know the parameters to use in this function to read Sms?
Gremlins (and I'm not Gizmo!)
funny as Gizmo asked me exact the same question via private mail ...
This was my response:
----------------------------------------
I've never used the function to read SMS messages but here is my suggestion:
check the return code of SmsOpen, it is probably SMS_E_RECEIVEHANDLEALREADYOPEN. According the SDK help it means, that another app has already opened and is using the provider. In most cases, that might be Inbox, so shut down the Inbox task befor you are running your code.
If your error code is different, check the meaning in the help file, look for SmsOpen -> SMS specific error codes.
You don't have disable Inbox. The problem is the internal SMS handler - if you look in \Windows\Startup, you'll see a SMSHandler (I don't have a T-Mobile at the moment, so can't confirm the exact name). You need to get your application to start before it. In addition, you need to do a SmsSetMessageNotification() for both SMS_MSGTYPE_RAW as well as SMS_MSGTYPE_TEXT message types. Strangely, the code does not get the notification if you only set it for one of the two.
I have a T-Mobile MDA. There is a folder called "AutoStart" in the Windows folder, so I guess the file called "SMSReceiver.exe" is the handler you were talking about. I named my application "aaamyapplication" in order to start it up first after a soft reset (There is actually no "startup" registry-entry either for "SMSReceiver" nor for my application... in the end I kicked "SMSReceiver" out).
Unfortunately receiving an SMS through my app does not work (but strangely the system is still able to receive SMS in spite of deleting "SMSReceiver").
Do you have a good guess what I should do? I would be grateful for any advice
t_lex
Could some body be more specific on what Jvd said ??? i'm running an XDA2 and when i look in windows/startup i only get the followng :
CheckAutoRun
ChgDfLnk
IA_Caller_ID
MMReg
poutlook
stk
wifiIcon

SMS program

Hi Folks,
This is my first post, although I've owned my XDAIIs for several weeks and I've ROM'd it to the iMATE 1.4 ROM. So I've had a good play.
I was looking at smsOrganizer (from Jeyo) which is badly supported (and it ain't free) and I wondered why I (we) couldn't write something to do the same thing, for free.
Is there a forum for this kind of activity, or could someone point me in the direction of some exmples of how to pass data between the PC and phone?
Best regards
AndrwB
Andrew, look into RAPI: eg here
http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnarppc2k/html/ppc_teapppi.asp
Development and Hacking is the right place for this kind of query...what do you want the app to do?
V
Hi V,
Basically I want to control the SMS message transfer on my XDA from Outlook, just like smsOrganizer.
Re. your link, I think we've got those? but I generally write embedded C, non of this fancy C++ stuff :-((
AndrewB
Hi V,
I just tried this :
http://support.microsoft.com/default.aspx?scid=kb;en-us;307256
And I can now copy files to and from my device
Not bad for 1 hours playing, specially as I've fixed 2 work related bugs too )
Andrew B
Good stuff.
I'm just learning C++ actually, I never learnt C, coming from self-taught VB on the PC.
RAPI is the way to do most PC<>PDA communications, although right now I'm only just getting into sms stuff. It'd be easy enough (I think) to write an interface to create an SMS on the PC in text, transmit that to the PDA and then SMS it off, but the backend of it would require some implementation.
Keep us posted though!
V
99% of c programs should compile and work just fine on
c++ compilers and you can write c++ programs without using
oop in which case they are pretty much c programs
From what I've read it looks as if you need to write an app to sit on the device and another app on the main PC. The app on the phone just acts as an agent passing data between the sms services and the PC.
Anybody got any ideas?
AndrewB
Yipeeeee
I can now write a DLL that sits on the device and I can write a C++ application on my PC to communicate with it
Now to start reading some text messages from the device to the PC......
Does anybody know agood way to send and recieve SMS ?? I would also like to edit the text and pass it to an Edit Box.
I am not too sure about the available API's that will let me do this.
Please HELP :shock:
Hey , i would like to send and recieve SMS on my xda2. Also pass the recieved message into an Edit Control. Does anybody know a good way to do this ??
I know about the SMS API but i am unaware of others. Pleas Help !! thnkx
SMS Auto sending
Hi everybody,
Is there a way to auto send all sms in draft? Basically, every sms in draft folder needs to be send one by one by ticking send button.
OK,
I can now send a text message from my PC to a DLL on my phone using RAPI, then send a SMS using MAPI.
The trouble is I can't get the subject and body fields to display correctly on my XDAIIs. Also I can't get the Name to appear instead of the number.
I'll try to post the code later on the understanding that it is FREE and we pool our experiences/knowledge.
Here is the code for the DLL and the PC program. Just press one of the keys on the tol bar to send the message. The number and message are hard coded.
There are ABSOLUTELY NO guarentees with this code, use it at you own risk.
can it recieve SMS as well ?? Has any body thought about other API's to use for sending and recieving SMS's maybe ?
Well.... Not yet.
This is my first ever .net VC++ program !!!!
There are lots of code snipets around but no full source code.
This is a work in progress project hence it is in the "Development and Hacking" fourm.
If you'd like to add some functionality to it......
I am asking because there seems to be a problem when trying to recieve SMS with SMS api as the HANDLE is already attributed to the messaging application (inbox/draft/outbox).
I believe you are using RAPI ? However i do not understand this API that well could u specify a bit more ?
Thanks for your help.
Hi nutitija,
I'm only using the RAPI function to pass parameters from my PC to the XDA. The actual sending of messages is done using the MAPI in the XDA.
My biggest problem is getting the subject/body and from fields to display correctly in the different XDA mail views.

O2 SMS Plus & HTC Home Plugin

After searching the forums I am unable to find an answer to this one.
How do I set HTC Home middle button (SMS) to open O2 SMS Plus instead of tmail when I press it. I searched the registry and came up dry and there is no setting I see in HHC. Actually if there is a way to set O2 SMS Plus as the default SMS/MMS application for the entire BA I would prefer that. I use Gmail for email and that requires tmail so I was afraid to change it in HKLM/software/microsoft/shell/rai/MSINBOX as I presumed I would lose access to Gmail.
Thanks in advance to all who answer.
Nobody knows
Well 2 days and 118 views with no responses pretty much implies that either I was not very clear or nobody has an answer.
In case I was unclear I am looking for a way to make O2 SMS Plus the default sms reader/composer instead of the MS one (tmail). But I must still use tmail for regular email such as Gmail.
Thanks again. Even if nobody knows this I have gleaned so much information from this forum/wiki that it won't hurt my feelings any.
You've probably had this answered long ago, but I thought I'd write in for anyone else who finds this thread.
The way to edit which program gets called through HTC Home is to edit the file HTCHome.dll with a hex editor, and then re-signing the dll. Unfortunately, HTCHome.dll only uses one reference to tmail.exe for both SMS and email, so if you change one it changes both of them. So the above isn't possible, I believe...

[App Request] SMS/MMS Hide function

Hey guys and girls,
Ive got a Samsung Omnia (please no booing ) and I need an application to hide text and or mms messages. I work overseas from time to time with my business and my wife and I swap MMS and text messages to each other while I am away. Having a new phone means everyone wants to check it out and i certainly do not want anyone stumbling across any MMS or text messages my wife has sent me ;-)
I have already well and truly searched this forum and the only software I can find is by evolvens and it doesn work.
Im sure it couldnt be to hard for someone to code a little piece of software to hide sms or mms depending on who sent it?
Sorry if ive posted in the wrong section, id be willing to pay for the right app and im sure many others would as well.
Cheers
Dave
hey, i ran into a problem in my last relationship where i ended up dating 2 chicks... so i had their sms' saved using ez secret sms 2.0. basically, you can set it up to run in the background, and you set certain contacts to be received in this program instead of outlook. the program can be named anything you want. so i named it something boring like system priority. you click it, and it brings up a calculator. you put in the code you specified, and hit ok... and it opens your "secret inbox." you can also set it to notify you in some way that you received a text from whoever. i set it as "islanders won!" for one chick, and "rangers lost!" for the other... pretty simple program to use, and it works fairly well.
if you want to hide just the pics, you could always just save the pics and encrypt the folder using resco explorer with a password or something. but if you really want to save the actual sms, this program worked fairly well for me.
I agree - SMS Security is great - I use it on my Diamond with no problems
I don't think it willl work with MMS though. As the post above - save the image from your MMS into your main files in a private folder. Call that folder something odd and I'm sure you friends won't open it. If you really want to protect the images, you can lock just that file with Resco or I use VisCrypt
Thanks hays and ou2mame for your input, I will try ez secret sms,
hays is this the same program you use on your diamond?
Thanks again guys
waverdr said:
Thanks hays and ou2mame for your input, I will try ez secret sms,
hays is this the same program you use on your diamond?
Thanks again guys
Click to expand...
Click to collapse
Yes it is. It works 100%
It is easy to switch it on and off reverting back to normal diamond SMS
I've emailed the author to suggest a few minor tweaks and will report back

New SMS problem never heard before!!

Hey guys, I havent heard anyone talking about this but i discovered e bug today!
So here's how it goes :
1: I was typing my sms halfway to person A
2: I went to type another half sms to person B
3: I went back to person A's incomplete sms, completed the message and sent out
OUTCOME: The msg went to person B instead!! But on my message chat log, it says that the msg was sent correctly to person A!
Anyone having this problem? So far I only heard of msg getting stucked in outbox, havent heard of this yet!!
why send 2 messages at the same time? seems a bit confusing!
because I was composing a long message to A. Then B needed me to sent an urgent reply over. So I decided to send B a reply first before continuing to compose e long msg to A!
Anw that shdn't be the problem since my previous phones can all handle this kind of multitasking!!
Yes ive had this problem of a message going to the wrong person even though in the log it states it didnt. Was quite a embarrassing text as well ):
exactly what happened to me! I hope this is e ONLY way to send a wrong msg to the wrong recipients without realising. SIIIGH
Anyone knows how do I feedback to HTC so they can make a patch or someting?!
i also have same problem as well as having text window open with person A and then person B texts me and it comes up on same window as my person A page. so now im replying right after this text of person B thinking im replying to person A and it goes to B. this is after i installed cookie home tab 185 and editor 1851 and then resinstall 185 and same thing. now it can also be after that one sms hotfix that is on hd2 site. whatever is the reason is there a way to fix it. also sometimes under swype my delete button wont work for texting but it will work in traditional qwerty so thats another bug as well as when this bug happens i get this other bug when u type with swype every letter has a period like john is j.o.h.n. and space bar wont work.
i dont know whats up right now i backed up with spb backup and will try uninstall cht and see if it was the cause or not but i dont think ive seen any post regarding this issue after posts for cht 185 on xda. any ideas?
i've read several threads about sms messages going to the wrong person.
i would just like some clarification from you guys! are you using HTC's messaging client or are you using windows mobile's default sms messaging application?
personally, i kept HTC messaging disabled on my stock ROM and i'm currently using an NRGZ ROM (Energy ROM "Standard" Sense June 11, 2010) which does away with the HTC messaging out of the box. i much rather like the stock messaging client and it also keeps your messages in a form that is much more friendly and compatible for backup with pimbackup and/or microsoft myphone.
the only reason i'm asking is if someone can confirm if the problem occurs ONLY and SPECIFICALLY with the HTC messaging client or it has also been known to occur when using the stock windows mobile client?
would just like to know if i should also be careful about my messaging practices...
i can confirm its using HTC messaging which i believe is what it uses as stock and when u do factory reset. i have factory reset three times and still get issues.
How do you disable HTC builtin messaging so i can use WinMo one? thanks.
ok i used Zenyee Disable HTC Messaging 1.2 to disable HTC and using win mo...it works correctly so far....i have question...how do u turn of the MESSAGE SENT notifcation that pops up after every sent message? i dont see any options for it and under MESSAGE OPTIONS .."request message delivery notification" box is unchecked. thanks
kenograndmaster said:
ok i used Zenyee Disable HTC Messaging 1.2 to disable HTC and using win mo...it works correctly so far....i have question...how do u turn of the MESSAGE SENT notifcation that pops up after every sent message? i dont see any options for it and under MESSAGE OPTIONS .."request message delivery notification" box is unchecked. thanks
Click to expand...
Click to collapse
You have to get a registry editor and change these keys:
Code:
[B]HKCU[/B]\Software\Microsoft\Inbox\Settings\SMSNoSentMsg =1 (default 0)
[B]HKLM[/B]\Software\Microsoft\Inbox\Settings\SMSNoSentMsg =1 (default 0)
sumflipnol said:
You have to get a registry editor and change these keys:
Code:
[B]HKCU[/B]\Software\Microsoft\Inbox\Settings\SMSNoSentMsg =1 (default 0)
[B]HKLM[/B]\Software\Microsoft\Inbox\Settings\SMSNoSentMsg =1 (default 0)
Click to expand...
Click to collapse
ok i did that and it works thanks...however i didnt have a SMSNoSent available at the HKCU section but I did see it at the HKLM area and enabled to 1.
i have another issue which you may know about. When you send a text...then when that person replies back, you get incoming text notification. When you click to reply to that person and youre in the reply window where the screen is greyish and theres a SEND button thats on the screen itself next to your reply box, sometimes that window shows my reply back to show up before he replied to my original text so its out of order. However, if you go to ALL MESSAGES and view a specific conversation that way then it shows correctly (this is the text reply white window where you see the colors icons next to the names.
Is this bug due to me replying to that text too quickly? so thats why it was out of order. this only happens sometimes ...im going to play around with it to see if it is only due to really quick replies.
Thanks
also i got this other problem. when you are in home screen and you get incoming text you will see the number 1 on your messaging icon and when you click it and reply to text, the number 1 doesnt disappear, it still treats that text you received as new and only way i can get rid of it is delete text which i would rather prefer it disappear after i read text. anyone can help please? thx
using winmo messaging with cookies home tab185 and editor 1851
This problem was already mentioned here on the forum, here: http://forum.xda-developers.com/showthread.php?t=642091&highlight=sms+wrong+contact
One workaround is to use the back or home hard keys instead of the "All Messages" option to travel between conversations.
kenograndmaster said:
also i got this other problem. when you are in home screen and you get incoming text you will see the number 1 on your messaging icon and when you click it and reply to text, the number 1 doesnt disappear, it still treats that text you received as new and only way i can get rid of it is delete text which i would rather prefer it disappear after i read text. anyone can help please? thx
using winmo messaging with cookies home tab185 and editor 1851
Click to expand...
Click to collapse
i got my hd2 on june 1st, 2010. i used the stock ROM for 30 full days with HTC messaging DISABLED (i even wrote a guide about it...search for threads started by me in the HD2 general section). in these 30 days, i learned that disabling HTC messaging had no SERIOUS ill effects, but it did have some annoying odd little problems like you've mentioned in the quoted post above. additionally, my "green LED" would keep flashing for several minutes after reading the last unread SMS. another odd problem was that accessing a contact's page within Sense would work fine until i scrolled to the contact's messaging history tab...it would just close the contact's page altogether! i suspect the reason for this was that this tab relies on a fully working HTC messaging client, which i had disabled!
due to these issues (and a few other issues unrelated to SMS messaging), i decided i had familiarized myself enough with the HD2 and its stock ROM...so i went for a good cooked ROM after a few weeks of research. i highly recommend NRGZ's "energy" ROMs (there are many flavors). all the variants of energy ROMs completely EXCLUDE HTC messaging and the stock messaging works 100% properly with no odd side effects.
you can battle these little issues all you want but you can save yourself some time and effort if you can find a ROM that suits all (or most) of your needs.
PS: it would be nice if someone can suggest even more custom ROMs that also exclude HTC messaging, as described in bold above in the second-last paragraph!
DeadVirus said:
This problem was already mentioned here on the forum, here: http://forum.xda-developers.com/showthread.php?t=642091&highlight=sms+wrong+contact
One workaround is to use the back or home hard keys instead of the "All Messages" option to travel between conversations.
Click to expand...
Click to collapse
that workaround worked so if im on person A window and i have partial reply text going and get a new text from B and when replyin to B with using back button i can text np.
my thing is sometimes when u have like 4 conversations going ...having it listed like in ALL MESSAGES is useful. im still seeing how having 3 conv. behaves with usin back button but thanks for that.
also since cookie home tab uses htc text app ..i wish i can use the text app that was being used in spb mobile shell 3.5. on that one the gui is better and u just press OK on the partial screen u were on and it will take u back to all messages and u can open and reply anyone n it works. this workaround pressing back key is good but i dont want to hard press a key all the time like this i prefer touchscreen . so in meantime im stickign with my cookie home tab 185 and will use back button for now or winmobile one.
p.s. i tested out this issue on my friends hd2 and neither his htc sense text app or the spb mobile shell text app is buggy and both work correctly. so i either can keep doing factory reset til it works right or deal with it.
The new update maybe can help ...
Update for HTC HD2 – New SMS Function Update
Date : 2010-07-05 Category : Update
This update for HTC HD2 amends the internal management of SMS functionality, and enhances SMS transmission stability, and lets you reach out to your friends and family with instant notifications. Keeping in touch has always been very important, and this update delivers just that: fast and reliable SMS messaging.
Download for UK or go to the HTC site for support.
queenkong said:
Hey guys, I havent heard anyone talking about this but i discovered e bug today!
So here's how it goes :
1: I was typing my sms halfway to person A
2: I went to type another half sms to person B
3: I went back to person A's incomplete sms, completed the message and sent out
OUTCOME: The msg went to person B instead!! But on my message chat log, it says that the msg was sent correctly to person A!
Anyone having this problem? So far I only heard of msg getting stucked in outbox, havent heard of this yet!!
Click to expand...
Click to collapse
*
Just one time i get it! I don't understand what's the **** at this moment ^^
Hi, I think you didn't realize unfinished texts should be saved as draft, otherwise it reappear in every new message tread input box in hTC message.
kenograndmaster said:
also i got this other problem. when you are in home screen and you get incoming text you will see the number 1 on your messaging icon and when you click it and reply to text, the number 1 doesnt disappear, it still treats that text you received as new and only way i can get rid of it is delete text which i would rather prefer it disappear after i read text. anyone can help please? thx
using winmo messaging with cookies home tab185 and editor 1851
Click to expand...
Click to collapse
This problem was already mentioned here on the forum, here: http://forum.xda-developers.com/show...+wrong+contact
One workaround is to use the back or home hard keys instead of the "All Messages" option to travel between conversations.
-------------------------------------------------------------
After an RMA and getting replacement phone with latest rom i still had the same problem. However, now thers a fix that helped me that TM said it came out june 8th regarding Contacts issue.
My contacts were saved to SIM only so i had this issue regarding texting wrong person. If you save to SIM/PHONE or PHONE only, texting works correctly. So this is the fix for me at least.
At the moment i saved my contacts out of my SIM and into my account. I did factory reset and then tested out texting without any contacts on PHONE or SIM by using numbers. This worked but you may suspect it may be due to using numbers rather than choosing of contact list? I will know soon cuz im waiting for TM to sync up my contacts from my act. to my phone and she had to create a trouble ticket. So when i get my contact list on my phone only, i will try again and make sure its works. Right now im crossing fingers but i believe it will work.
kenograndmaster said:
This problem was already mentioned here on the forum, here: http://forum.xda-developers.com/show...+wrong+contact
One workaround is to use the back or home hard keys instead of the "All Messages" option to travel between conversations.
-------------------------------------------------------------
After an RMA and getting replacement phone with latest rom i still had the same problem. However, now thers a fix that helped me that TM said it came out june 8th regarding Contacts issue.
My contacts were saved to SIM only so i had this issue regarding texting wrong person. If you save to SIM/PHONE or PHONE only, texting works correctly. So this is the fix for me at least.
At the moment i saved my contacts out of my SIM and into my account. I did factory reset and then tested out texting without any contacts on PHONE or SIM by using numbers. This worked but you may suspect it may be due to using numbers rather than choosing of contact list? I will know soon cuz im waiting for TM to sync up my contacts from my act. to my phone and she had to create a trouble ticket. So when i get my contact list on my phone only, i will try again and make sure its works. Right now im crossing fingers but i believe it will work.
Click to expand...
Click to collapse
I've never had my contacts on the SIM... and I have this problem. If you use numbers it probably works... the problem is with contacts...

Categories

Resources