Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Screen incoming SMS in Symbian

Tags:

sms

symbian

I'm using sockets to read all incoming SMS:

 `smsAddr.SetTextMatch(KNullDesC8);`

The ones that belong to me I accept:

iReadSocket.Ioctl(KIoctlReadMessageSucceeded, iStatus, NULL, KSolSmsProv);

The ones that are malicious (like current Silence SMS threat) I would stop and the others I would like to pass into Inbox.

Currently my problem is in forwarding SMS into Inbox - they will appear there only after rebooting device.

Is there any API or solution to force Symbian to retry writing SMS into Inbox?

like image 424
Riho Avatar asked Nov 15 '22 16:11

Riho


1 Answers

You can insert messages manually - take a look at this example in the Forum Nokia Wiki. Note, however, that the example does not set character set and encoding - you may have to deal with character set conversion and encoding, which will be particularly complicated for binary messages.

How are you currently forwarding messages to the Inbox?

like image 165
KevinD Avatar answered Jan 06 '23 04:01

KevinD