Currently using Windows Mobile 6.1 Prof and am looking for an app/regedit/hack that would prevent the deletion of sms, email, call log, etc. Or, disable menu options such as delete from SMS, email, call history, etc. Want to retain the functionality but prevent changes from being made. Kiosk mode maybe? Limited user account?
There is prob a reg hack for this, but why are you trying to do this?
I will have a sniff about for something.
Why? To make sure the kids are following the rules! Just because my kids are on restriction from using the phone doesn't mean that I am going to take their phones away when they go off to school, practice, etc, because I want them to have it in case of an emergency. But, also I want to know that they aren't using it when their not supposed to...during class, after bed time, while at the library, etc. I am not willing to install spy software, I don't want to view their sms conversations, I just want to keep them honest so they know if they use it when their not supposed to there is a record of it.
Edit: Oh and BTW, thanks for the reply.
Related
I would be willing to start a bounty for a auto text delete app... like delete texts for each person after 100 texts... is this possible?
Its not auto, but try SMS Quick delete
No Offense. But Its not that hard to Delete Text Messages.
I agree with this post. I think getting sms quick delete to do a nightly scheduled delete would be amazing.
ebartolon said:
No Offense. But Its not that hard to Delete Text Messages.
Click to expand...
Click to collapse
I think youre missing the point.
I agree, btw something like this would be great. Either running to deleted messages by scheduled task and or delete message based on a specified count.
ebartolon said:
No Offense. But Its not that hard to Delete Text Messages.
Click to expand...
Click to collapse
It's not that hard to mail a letter via postal service, but I'd still rather email.
I think it's a great idea, you could adjust it to purge anything over x number of messages or older than x number of days.
I'd love to see this happen.
OP I think you may have a better chance by emailing SMS Quick Delete because they already have the app started...
I haven't looked into what APIs the SDK offers for dealing with text messages, but just thinking this through real quick, this shouldn't be a hard app to write.
When I get a text, it appears in both the stock app and in Handcent. This indicates that the messages are stored in a central location. The existence of Handcent and Chomp also make it clear that third party apps can access and manipulate this storage.
Performing tasks on a schedule is easy to code.
What sort of features would people like to see in this? Delete by age? Delete by count? Exempt certain contacts from having their messages deleted? etc...
I've been looking for an idea for a simple app to write to get more familiar with coding for the Android environment. If there's interest in something like this, it seems like as good a project as any to practice with.
subliminalurge said:
I haven't looked into what APIs the SDK offers for dealing with text messages, but just thinking this through real quick, this shouldn't be a hard app to write.
When I get a text, it appears in both the stock app and in Handcent. This indicates that the messages are stored in a central location. The existence of Handcent and Chomp also make it clear that third party apps can access and manipulate this storage.
Performing tasks on a schedule is easy to code.
What sort of features would people like to see in this? Delete by age? Delete by count? Exempt certain contacts from having their messages deleted? etc...
I've been looking for an idea for a simple app to write to get more familiar with coding for the Android environment. If there's interest in something like this, it seems like as good a project as any to practice with.
Click to expand...
Click to collapse
Issue is
1. You want to delete it when no one is sending you messages as to delete one you missed which would make you think that scheduled at night is best but...
2. Either count or time (i.e. middle of the night schedule) can screw you up if you get a message and the app then deletes it before you are able to check your messages...
I think it could be anything if you could prevent the deletion of new texts then I guess it wouldn't matter as much.
pipskicks said:
Issue is
1. You want to delete it when no one is sending you messages as to delete one you missed which would make you think that scheduled at night is best but...
2. Either count or time (i.e. middle of the night schedule) can screw you up if you get a message and the app then deletes it before you are able to check your messages...
I think it could be anything if you could prevent the deletion of new texts then I guess it wouldn't matter as much.
Click to expand...
Click to collapse
I see what you're saying, but if it's properly designed, neither one should really be an issue. If, for example, it's set to auto-delete anything over 30 days old, well, frankly if it's been sitting on your phone for 30 days and you haven't read it yet, then either it wasn't important, or you've been sitting in jail and likely have more important things to worry about.
Same with going by number of messages, you'd want the threshold set at a level where there's not really much chance of you not getting to it before it gets deleted.
Ideally, these thresholds would be user configurable. For me, deleting anything over 100 texts would easily retain a month's worth, but for my daughter, it would be blasting stuff that was only a few hours old. (I've honest to god seen this girl sleep with her phone in her hands, thumbs never leaving typing position....)
That said, it would definitely be a good idea to never, ever delete unread messages. Or, at least have separate criteria for unread messages.
isn't this a feature that's included in non-Sense messages app??? I much prefer that version, but I don't know how to replace the sense version with that one (if possible)
I think having delete by both age and number would be best... for example, if it could delete any message that is more than say 5 days old, up to the point where there is <10 messages left in the thread then stop deleting from that thread
and if you could adjust the two variables...
and:
adjust which persons messages get deleted...maybe even make it so that you could adjust the two variables individually depending on the person?
dmc971989 said:
maybe even make it so that you could adjust the two variables individually depending on the person?
Click to expand...
Click to collapse
Ultimately, that's the idea. Let each user specify their own criteria.
To be honest, if I decide to take a crack at this, my initial "proof of concept" version would probably just have a couple criteria hardcoded in, and then I would add configurability in increments.
The actual "guts" of this program should be crazy simple to code, but being new to Android, I'm still getting used to designing UIs on the platform, so that would be the portion that slows me down (and also the part that I'm looking to get some practice with...).
the file for storing texts is /data/data/com.android.providers.telephony/databases/mmssms.db
and no that's not a typo, there is a data folder within the data folder
also, by the way, I tried messing with it once to restore some old texts from a previous rom, and kept force closing my handcent and the stock app until I just deleted the file and let it recreate itself
Yeah honestly i am shocked that no one has done this. My friend and i have had so many texts our phone slows way down. And then when we try to delete txts of the contact(s) with the largest amount of texts the phone will lock up for along time or untill we pull the battery. After the phone lock up the texts are still there. i would be happy if all my contacts where limited to 100 texts. this issue normally happens around the 1000 mark (for a single contact) from what i have noticed.
Also this has happend on sevral roms that i have used so its def not a rom issue
danaff37 said:
the file for storing texts is /data/data/com.android.providers.telephony/databases/mmssms.db
and no that's not a typo, there is a data folder within the data folder
also, by the way, I tried messing with it once to restore some old texts from a previous rom, and kept force closing my handcent and the stock app until I just deleted the file and let it recreate itself
Click to expand...
Click to collapse
Yeah, that's a database file. Probably not a great idea to edit it directly, you would want to make changes through the sqlite interface....
any solutions?
I've been looking for a way to manage my phone data online - in real time.
What I'm basically looking for is a website or online tool that could act as a kind of gateway between my cell service provider (AT&T) and my device. I want to be able to go to a website and view my call history, listen to voicemails, read incoming and sent texts, manage contacts, etc. But I also want this data to be received by the phone too.
I've seen some sites out there that do some of what I'm looking for, like YouMail. This site lets you set up a kind of gateway where your voicemails are stored, but you will also receive them on the phone. If they could do that for text messages I'd sign up right now.
I'm familiar with MS MyPhone, but that's not real time and doesn't include voicemails.
So, is there a method/program/website I can use to get simultaneous copies of my phone's data? Kind of like one of those spy programs I guess...? But here's the issue - the phone I'd need this for is not a BlackBerry, iPhone, or WM. It's a LG Xenon.
Any ideas on this?
Ive seen MS chose to combine IM and SMS and to me this looks really messy.
First of all the integration of IM is quite nice but I wish it was kept seperate from SMS conversations since these are to the majority of people still different than IMs and used on different devices or apps. I dont want to continue a conversation automatically on a different app or something. This will be very annoying to the other user.
Certainly if somebody just left his/her pc on or IM on accidently....
They should have added facebook private messaging as well and IM/SMS seperated like it was and just added a chat pivot in the messaging hub.
to me an sms is still something every user has always with him her, like when u send somebody an address or something it should be on their phones and not deliverd trough IM and its annoying having to switch first.
Its kind of short sighted implementation, the idea is good but the reality will be very annoying the way it works now.
you will get a ton of sms like notifications for every IM which can be annoying since on a chat conversation people send much more messages per minute than trough sms. Having to toggle online offline all the time will be a pita
am i the only one who thinks this will be garbage? Instead they should have allowed third party apps like whatsapp to use this on user permission. I hope I can switch off the live messenger. Or just revert back to the original sms screen
I like the idea to have an overview of my messages regardlessly whether they come via SMS, Windows Live or Facebook. Although I agree that getting notifications for all those messages shown on the SMS tile would be kind of overwhelming. But I can imagine Microsoft changes the way the tile works. So it still shows the number of SMS, but in addition to that shows an icon or something when you recieve a chat message from Facebook or Windows Live.
In my opinion.. the best feauture ever, of every OS. Loved that!
I love it as well, and think its nice not to have to go to 4 different places for my facebook, text, wlm & (eventually skype).
While I hope they either have a toggle setting for separate 'rows', or add it soon after Mango for those who really don't like it, I honestly doubt they want to mess it up by having too many places for messages. It fits in pretty perfectly with their vision for the overall UI design imo.
For me,M$ thread is not a new idea,it just copying the messaging app in the HP webos...however HP webos messaging is better,they can download apps that support HP connect and integrate into the messaging app(so,this means they can have more than 1 im clients in 1 messaging app).
Feel so sorry to HP webos,always being copied by others,even the UI design of playbook has been copied
Marvin_S said:
First of all the integration of IM is quite nice but I wish it was kept seperate from SMS conversations since these are to the majority of people still different than IMs and used on different devices or apps. I dont want to continue a conversation automatically on a different app or something. This will be very annoying to the other user.
Click to expand...
Click to collapse
Threading will be the beginning of the end for SMS IMNSHO. Most people still use SMS because it's what they know and are used to.
My wife is a great example, she keeps sending me SMSes while I'm out because that's what she's used to. Even though I've had email (and to some extent IM) on my phones since forever. With a "messaging hub" it takes all the guesswork out of the equation - she'll write the message as she normally does and the phone will decide whether it should deliver via FB, Messenger, Skype or SMS.
Now, if you don't want to continue the conversation if the user has moved to a different device you don't have to. The phone will tell you how the message was sent as well as what services the recipient is currently logged on to.
Marvin_S said:
to me an sms is still something every user has always with him her, like when u send somebody an address or something it should be on their phones and not deliverd trough IM and its annoying having to switch first.
Click to expand...
Click to collapse
This just proves my point - you're used to SMS. And again, you can choose whether to send as SMS or IM.
Personally I find this feature great. Two things should be done to make it even better though;
1. Implement a industry-wide protocol so it doesn't matter if you're on a crackberry, iphone or windows phone. Sure, Skype and Messenger goes a long way towards achieving this but there are still people who use smaller IM services only.
2. Allow third-party apps to hook in to the messaging hub - there's a few apps out there today that are not chat apps as such but still implement messaging. Being able to receive (and reply to) these messages from the same place would be great. It would also make it easier for other IM services to integrate with the OS.
dkp1977 said:
Although I agree that getting notifications for all those messages shown on the SMS tile would be kind of overwhelming.
Click to expand...
Click to collapse
But why? Are you less likely to want to read a message coming in thru Messenger than one delivered via SMS? I for one don't care how my messages are delivered, I just want to be notified. It's a bit like having three post boxes outside your house - one for deliveries by DHL only, another for Deutsche Post and a third for everyone else - i.e. pointless
I really like this new feature as well. I am confident that any replies you send to someone will use the same service they used to "text" you, unless you choose to change it. People on non-WP7 phones won't suddenly need to be jumping all over the place.
On the other hand, when other people send you messages from multiple sources (SMS, FB, WLM, etc), you will be able to get all of the messages in one convenient place. I like that.
I want to know why some Apps read my SMS...
Downloaded "Go Keyboard" from the market and I think it is a nice App. But when I read the (German) comments, some people complaint about that this App can read your SMS.
What do you think?
Sent from Nexus S Limited Edition
If the keyboard should be smart it needs to learn from your typing. One way is to read your SMS/texts or emails.
So you think this is important for the app to work properly and can be neglected?
Maybe sounds like a stupid question but I am still an Android beginner.
Anyway there is nothing important in my messages that I should worry about...
Sent from Nexus S Limited Edition
Superskunk said:
So you think this is important for the app to work properly and can be neglected?
Maybe sounds like a stupid question but I am still an Android beginner.
Anyway there is nothing important in my messages that I should worry about...
Sent from Nexus S Limited Edition
Click to expand...
Click to collapse
As nothing is save on the internet... it's up to you. The app isn't unknown and widely spread/used, I'd not worry about giving the requested permission.
Other apps however... different story. Rethink your decision everytime an app requests permissions.
If the app works w/o that specific permission is something I don't know. There's an app that can restrict specific permissions, requires root and I sadly don't remember the name right now.
Of course an app can work without certain permissions. But those permission make it more powerful and add functions. If you chopped off your arms, you couldn't entertain someone with juggling could you ?
madd0g said:
Of course an app can work without certain permissions. But those permission make it more powerful and add functions. If you chopped off your arms, you couldn't entertain someone with juggling could you ?
Click to expand...
Click to collapse
http://www.youtube.com/watch?v=lleKvepxp5E
Just saying
I wondered the same thing! I recently switched to KelLMSKing MIUI Mod and now when I get an SMS, I get two notifications. One is Car Locator wants to read my SMS. It is a GPS App where I can save my car's position in a parking lot and find it easily again. I have no idea why it would want to intercept my SMS messages, so I Deny it.. I looked it up and apparently in some countries, you can pay for parking by text message, and receive reminders that time is running out. That's a feature I'll never use, so I'll just tell it to remember to always Deny that request. The other notification is from Touchdown, which gets my Exchange Server emails for work.. I'm not sure what SMS it would be looking for, so I'll deny them, too
As for the keyboard, I have no idea why it would want to read incoming messages or how that would help it to learn your style.
I think it's more of a perusal of the messages for commonly typed words so that it knows the best words to recommend and predict. Like a scan, to add your speech to the dictionary.
I don't believe any developer is sitting up at night reading my texts. If he is, he should hit me back and help me out with some of my problems. <_<
What is Facebook's excuse then?
edit SMS or MMS
Allows application to write to SMS messages stored on your device or SIM card. Malicious applications may delete your messages.
receive SMS
Allows application to receive and process SMS messages. Malicious applications may monitor your messages or delete them without showing them to you.
read SMS or MMS
Allows application to read SMS messages stored on your device or SIM card. Malicious applications may read your confidential messages.
Click to expand...
Click to collapse
praveenmarkandu said:
What is Facebook's excuse then?
Click to expand...
Click to collapse
Facebook just blatently wants info to target you for advertising... but because theyre so big most people don't care
Facebook needs that permission to verify your account. Afair there's an option to add your mobile# to your fb account.
An application in the market that has been around awhile should be fine. Google will remove malicious software as soon as they know about it. It is new apps asking these permissions that I would be weary of. I use the Go keyboard myself and love it with royal purple neon theme.
Sent from my Google Nexus S using XDA App
Hello
I'm sure lots of you just allready though about this:
Make a real android SPY phone!!!
a device that could record calls and send them remotly back to you by email, log all keys typed, make a log of calls, and sms, record sound remotly and keep a gps location. I've allready did this with some apps (cerberus, total recal, sms backup+, sync) the next step is rooting so the aps can be realy stealth and undeleted proof.
But I'm still looking for new methods (mine are some how buggy)
please tell me your method, what apps you use, and the procedure.
BondJames. Bond
I'd tell you, but then I'd have to kill you.
Kidding, the only spy-tool I am using is wifikill, which gives me more bandwith.
wifikill, interesting...
maybe I'll include that in my bundle
thanks
It's not on the market anymore, so you might need to do some digging. I would be interested in a tool that would transform my droid into a gsm-blocker, but I guess that is impossible.
sorry... don't know any :-(
As I dont have a ftp to DL/UL files from/to my droid I use Sinc that is a 2 way syncronization tool to a dropbox account ;-)
i See this is kinda old but i would love to hear if you ever got a spy thing working.
and how you did it (what apps root no root etc...)
Well, have many app to spy cell phone, but i prefer to HelloSPY app. its satble and easy to setup on target phone.
Quick Features List
Track Phone Location
Read Phone SMS Remotely
Read Phone Contacts
See Call History
Track Internet Browsing History
See All Photos Captured
Record Apps Usage
Auto Answer
Back Up & Download CSV
Free Update
100% Undetectable
You can download FREE and try it at hellospy.com
Hope it can help you!
envenenador said:
Hello
I'm sure lots of you just allready though about this:
Make a real android SPY phone!!!
a device that could record calls and send them remotly back to you by email, log all keys typed, make a log of calls, and sms, record sound remotly and keep a gps location. I've allready did this with some apps (cerberus, total recal, sms backup+, sync) the next step is rooting so the aps can be realy stealth and undeleted proof.
But I'm still looking for new methods (mine are some how buggy)
please tell me your method, what apps you use, and the procedure.
BondJames. Bond
Click to expand...
Click to collapse
Hello, I'm not a spy, let alone how to make one. I just used one, works well - iKeyMonitor android spy app, logs keystrokes, passwords typed, SMS, WhatsApp messages, GPS location, captures screenshots, chat logs, social networks viewed, websites visited... All these features are tested by myself. But I bought a 3-month license, I think it's enough.
Some apps...
envenenador said:
As I dont have a ftp to DL/UL files from/to my droid I use Sinc that is a 2 way syncronization tool to a dropbox account
Click to expand...
Click to collapse
Ear Spy: https://play.google.com/store/apps/details?id=com.microphone.earspy
Cell Tracker https://play.google.com/store/apps/details?id=com.local_cell_tracker
Secret Video Recorder PRO: https://play.google.com/store/apps/details?id=com.zeronoiseapps.secretvideorecorderpro