Active Topics

 



Notices


Reply
Thread Tools
Posts: 1,378 | Thanked: 1,604 times | Joined on Jun 2010 @ Göteborg, Sweden
#491
I see the same issue as winmik reported and I don't want to remove fmms. I use "always ask". The connection made at the sms receipt is GPRS data but thereafter, using the IP connect desktop widget the connection automatically goes to mms. It seems that "always ask" is unset by smscon and there is no reset.

I would prefer a choice 1) to keep the gprs connection up after receving for eg "Location" or 2) to reset after receiving and responding to eg "Location" to whatever was the case before.
 
ossipena's Avatar
Posts: 3,159 | Thanked: 2,023 times | Joined on Feb 2008 @ Finland
#492
Originally Posted by Saturn View Post
The number is not checked. If the command is valid, i.e. matches what has been defined, then it is executed.

Stupid question, but did you check that it is running?

There were some more people mentioning that it didn't work for them but we didn't manage to understand if it is another program intercepting/changing the dbus signals or it is something else.

We have excluded basic stuff like differences between European and US networks and seemed to be more like userspace problem but nothing like a breakthrough.
the reason could be found in the logs:

for some reason the daemon stops between sending the test sms with smscon editor and closing the editor. (it is between those two with 90% certainty)

as soon as I manually restarted the daemon from command line, everything started to work normally.
__________________
Want to know something?
K.I.S.S. approach:
wiki category:beginners. Browse it through and you'll be much wiser!
If the link doesn't help, just use
Google Custom Search
 
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#493
@ ossipena:

The daemon always stops after a test command, this is intended behaviour (the test mode were originally only for development purposes).
__________________
SMSCON wiki (tutorial, changelog etc.)
SMSCON package (package information)
SMSCON-editor (GUI editor for SMSCON)
 
Posts: 156 | Thanked: 18 times | Joined on Feb 2010
#494
hey guys

this app makes the n900 even more perfect. .

thks for all the hard wrk developers!

had a request. .

if i lock my device through an sms the phone keeps sending sms s to the defined no.!!!

im usin the sms editor. . (noob type here)

even if i deselect the send msg reply n send sms on keyboard use still same behaviour!!!

is there ny fix for this or should i wait 4 an update!!!

thks in advance!

Last edited by dattadude; 2010-11-22 at 16:37.
 
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#495
Originally Posted by winmik View Post
Yes, I know, that setting is set to "always ask".

Anyway, I think it has stopped connecting to MMs on its own know, so (hopefully) problem solved... Thanx!
For smscon to work properly, the setting should be "Connect automatically". I know this is against some people's wishes, but otherwise it won't work.
__________________
SMSCON wiki (tutorial, changelog etc.)
SMSCON package (package information)
SMSCON-editor (GUI editor for SMSCON)
 

The Following User Says Thank You to digitalvoid For This Useful Post:
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#496
Originally Posted by winmik View Post
I recently installed, works fine but I have a big problem:

it makes my n900 keep connecting to an "MMS" gprs connection, no matter how many times I disconnect it. This is a problem because:

a. i think additional charges might occur (this connection is different from the one I use for using my data plan...)
b. it is always connected draining battery without reason, and I have to disconnect/connect again every time I want to do something online.

.....

What can i do? Any idea would be helpful...
In 0.5-9 I added some code to *not select* any MMS or WAP data connections, but I can't test this myself. Maybe fMMS is in some way interfering smscon...
__________________
SMSCON wiki (tutorial, changelog etc.)
SMSCON package (package information)
SMSCON-editor (GUI editor for SMSCON)
 
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#497
Originally Posted by handaxe View Post
I see the same issue as winmik reported and I don't want to remove fmms. I use "always ask". The connection made at the sms receipt is GPRS data but thereafter, using the IP connect desktop widget the connection automatically goes to mms. It seems that "always ask" is unset by smscon and there is no reset.

I would prefer a choice 1) to keep the gprs connection up after receving for eg "Location" or 2) to reset after receiving and responding to eg "Location" to whatever was the case before.
The sole purpose of smscon is to maximize the possibility to get your phone back in case of losing or theft. For this smscon has to set it to 'Connect auomatically' otherwise it can't connect; 'Always ask' needs a user intervention which ofcourse is impossible when phone is lying somewhere on the ground or somewhere else...
__________________
SMSCON wiki (tutorial, changelog etc.)
SMSCON package (package information)
SMSCON-editor (GUI editor for SMSCON)
 

The Following User Says Thank You to digitalvoid For This Useful Post:
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#498
Originally Posted by dattadude View Post
hey guys

this app makes the n900 even more perfect. .

thks for all the hard wrk developers!

had a request. .

if i lock my device through an sms the phone keeps sending sms s to the defined no.!!!

im usin the sms editor. . (noob type here)

even if i deselect the send msg reply n send sms on keyboard use still same behaviour!!!

is there ny fix for this or should i wait 4 an update!!!

thks in advance!
In 0.5-9 there is some experimental code which would solve the problem if there is no cell connection (no possibility to send SMS), it would automatically try to resend the same message after 900 seconds untill it succeded.

Maybe this code is not working 100% yet... (I could not test it properly; were I live there is always great cell reception).
__________________
SMSCON wiki (tutorial, changelog etc.)
SMSCON package (package information)
SMSCON-editor (GUI editor for SMSCON)
 

The Following User Says Thank You to digitalvoid For This Useful Post:
Posts: 39 | Thanked: 10 times | Joined on Nov 2009
#499
@digitalvoid
will the new version have the fix for the numers? the one who made NerdKnight.

def SMSreceive(PDUmessage, MessageCenter, SomeString, Number):
"""
Receive SMS command and execute command.
"""
n=int(PDUmessage[1])
n=n//2+n%2+13
MessageArray = PDUmessage[n:len(PDUmessage)]

Message = DeOctifyMessage(MessageArray) # decode sms message as plain text

ProcessCommand(Message, Number) # process sms command
Because I think that's the problem with commands not being recognized, I am not getting commands recognized, thanks!
 
Posts: 200 | Thanked: 300 times | Joined on Nov 2009 @ The Netherlands
#500
Originally Posted by snakekontrol View Post
@digitalvoid
will the new version have the fix for the numers? the one who made NerdKnight.

Because I think that's the problem with commands not being recognized, I am not getting commands recognized, thanks!
Yes, it will have the number fix!
__________________
SMSCON wiki (tutorial, changelog etc.)
SMSCON package (package information)
SMSCON-editor (GUI editor for SMSCON)
 
Reply


 
Forum Jump


All times are GMT. The time now is 18:55.