Receiving SMS

Hello,

Would someone be willing to point me in the direction of some documentation, or give me a small pre-cursor on receiving sms txt?

Thank you in advance!

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

No sms output file?

From what I can gather it should be calling the /usr/sbin/caipalo script which outputs the file to /tmp/smses_received

However, nothing is being outputed, the asterisk cli is showing its receiving the message. What could be wrong?

SMS output

chuky,
have you copied the "ciapalo" file at its place? Is it in your configuration? Its the place written in configuration the same place where you copied it? It is executable by the user that executes asterisk?

In the mean time, I would suggest you read a book on Linux and linux administration, it will give you a lot of information that is needed if you want to deal with asterisk and co. This not to say I don't like to answer questions, but just because seems reading it would be very useful to you.

Have gone through all possiblities.

gmaruzz,

Thanks for the response. I am actually a little offended by your response. As a matter of fact I just finished a 5 day linux training last week, and left Linux+ Certified. Not only did I complete the training, I finished top of the class, and passed the test with a 875 of 900. I actually have 8 years of linux administration, and took this coarse simply as a way to fill in some learning gaps that are created when one has learned simply from experience, and to finally take the test to have proof on my resume of my experience.

When I post a message I do so only after exhausting other possibilites. Secondly, I see it as a why to save many hours of troubleshooting as someone else may have had the same issue.

Lastly, I always approach receiving help from forum users with complete naiveté, I have found that this produces the best results, as there is no need to 'flex' my muscles when asking for help.

However, I can see where you would have gathered this from my posts, and understand where you are coming from.

That said, yes I have ensured all permissions are correct, that it is executable, and executable by the user running asterisk (asterisk in my case), it is in the same location specified in the celliax.conf config file.

Is there any logging being done that you are aware of that would show what is happening when celliax tries to pass the file to ciapalo?

Currently with debugging turned on and set to 100, I do show a notice (in yellow) when it passes the file to ciaplo, but it looks just fine. (other than a couple of unreadable characters that I have been attributing to no UTF8 support, which I have'nt verified yet, but in any case should not hinder its ability to pass the file onto ciaplo.

Thank you for any help you can provide,

Adam

SMS output 2

Dear Adam,

I deeply apologize for having offended you, it was absolutely not in my intentions. Probably just the shortness of the report and the "bona fide" of your approach made me think you was a beginner in linux (there is no bad in being a beginner) and that an introduction to linux could be of help.
I really really apologize for offending you: sorry.

The characters that does not appears are exactly utf8, as you said, and are not displayed in console for the limitations of the console itself, but would be written correctly on the file in /tmp.

Is the file working if you send it something from command line?

eg:
echo "ciao"| /usr/local/asterisk14/sbin/ciapalo

Also, can you verify that the asterisk user can execute it (not a permission level, but as a user - maybe it has no shell or whatever other problem):

su root
su - asterisk
echo "ciao"| /usr/local/asterisk14/sbin/ciapalo

We'll found the problem! :)
-giovanni

-bash: !": event not found

Giovanni,

No problem, I by no means feel that I am an expert either. Hence my asking for help, :)

When executing echo "Hello World" | /usr/sbin/ciapalo

I receive

-bash: !": event not found

I will go through the program to see if I am missing something in the script, or if I am missing something in my bash.

However, any suggestions are welcome.

Adam

SMS output 3

maybe you just have perl installed in another location, or no perl....

It does look like it is a

It does look like it is a permissions problem........*doh*

Let me hash this out and I will repost my results.

Yes, it was permissions. I

Yes, it was permissions.

I through 7777 at it, but it was giving an error that it did not like that the whole world could write to the script.

Now that that is straightened out! Any sugestions on how to grab the phone number and message into variables? There doesnt seem to be any identifying aspects about the string that I can use to que a grep.

SMS output 4

Happy to know it now works for you.

maybe I don't get this new question. What it write to the file?

Grabbing info from file

It wrote the following:
---REC UNREAD|||---|||---00310038003100350037003100380035003000380039|||---1815XXXXXXX|||---10/01/28,09:26:08-24|||---ကĨ ☀ࠤ|||---004300720061007A00790020006200690074006300680021|||---Hello World|||

I would like to modify the perl script to not only to append to smses_received, but to also put the from phone number and message content into variables, and validate the information, and execute another program.

I WILL tell you I am a PERL noobie!!!!

I guess I will have to count the delimiter "---" and "|||" to find the feild I want.

I will do some reading and find out what I can do, I guess its time to learn perl. But suggestions are always welcome! :)

Adam

SMS output 5

Yes, you will have to find wjhat you want and put it in variables, then you can use them

I'll post here an example in some minutes...

How to have incoming SMSs splitted in fields

You can test this one, and adapt it to your needs.

#!/usr/bin/perl
open(FILEOUT, ">> /tmp/smses_received");
while(<>){
print FILEOUT $_ ;
printf FILEOUT "\n" ;

chomp();
@word = split /\|\|\|---/ ;
printf FILEOUT "NUMBER: ";
print FILEOUT $word[3];
printf FILEOUT "\n";
printf FILEOUT "DATE: ";
print FILEOUT $word[4];
printf FILEOUT "\n";
$word[7] =~ s/\|\|\|//g;
printf FILEOUT "TEXT: ";
print FILEOUT $word[7];
printf FILEOUT "\n";
printf FILEOUT "\n";
printf FILEOUT "\n";
}
close(FILEOUT);

SMS Perl Outputs

Great!

Thanks for the example. This will help me greatly in learning how to script with perl!

I really do appreciate your time.

Nice words, thanks

Thanks for your words, very well received!

CelliaxSendsms() from a shell

Any suggestion on how to call CelliaxSendsms() from a shell?

how to send SMS from shell

can I counseil you the Asterisk book from O'Reilly? :)

you can call:

/usr/local/asterisk/sbin/asterisk -rx "celliax_sendsms interface_name receiver_number \"Text of the SMS\""

That is exactly what I was

That is exactly what I was doing, but didnot correlate celliax_sendsms with CelliaxSendsms()

Makes sense. Thanks!

Please dont hate me

Please dont hate me, but how do I get the variable to INCLUDE the \ character, because it normally means do not process the next character. This is what I have:


#!/usr/bin/perl
open(FILEOUT, "> /tmp/smses_received");
while(<>){
print FILEOUT $_ ;
printf FILEOUT "\n" ;

chomp();
@word = split /\|\|\|---/;
printf FILEOUT "NUMBER: ";
print FILEOUT $word[3];
printf FILEOUT "\n";
printf FILEOUT "DATE: ";
print FILEOUT $word[4];
printf FILEOUT "\n";
$word[7] =~ s/\|\|\|//g;
printf FILEOUT "TEXT: ";
print FILEOUT $word[7];
printf FILEOUT "\n";
printf FILEOUT "\n";
printf FILEOUT "\n";

}
close(FILEOUT);

$startcmd = "/usr/activate_relay/activate_relay 1 0";
$goodtxt = "asterisk -rx "celliax_sendsms line0/$word[3] \"Good Password\"\"";
$badtxt = "asterisk -rx "celliax_sendsms line0/$word[3] \"Bad Password\"\"";

if ($word[7] == 1234){
system($startcmd);
system($startcmd);
system($startcmd);
system($goodtxt);
} else {
system($badtxt);

This works, but only sends the First word in a txt. I know this is newbie stuff, but im not sure if its even possible. Maybe I have to add to string together with . or something like that......hmmm

Would it work to do something like this?

System ('asterisk -rx \"celliax_sendsms line0/' . $word[3] . '\"Good Password\"\"');

no hate at all :)

Adam,
I don't hate you in the little.

But this is becoming to be a consulting gig, that's happens to be my job, the job that's paying the bills for me ;).

Sorry, I'm sure you can find a lot of information about programming and administering around the net, I cannot use my time for free for this.

I'm sure you understand me.

i tried...

hi, i have asterisk 1.6.0.25 installed in my ubuntu 9.10 server....i have an interface named line0... im using nokia 5300... i wanna test the CelliaxSendsms function so i tried:

/usr/sbin/asterisk -rx "celliax_sendsms line0 09229207297 \"Text of the SMS\""

in the terminal but it doesnt work for me.. this is the terminal response:

#/usr/sbin/asterisk -rx "celliax_sendsms line0 09229207297 \"Text of the SMS\""
Parsing /etc/asterisk/extconfig.conf
No such command 'celliax_sendsms line0 09229207297 "Text of the SMS"' (type 'help celliax_sendsms line0' for other possible commands)
Asterisk ending (0).

i even tried the CelliaxSendsms function by adding this on my extensions_custom.conf:

[from-internal-custom]
exten=>_5551234,1,CelliaxSendsms(line0/09229207297,"hello world!!")

and tried to dial 5551234 using a softphone but still it doesnt work... asterisk terminal response is:

karmic-desktop*CLI>
== Using SIP RTP TOS bits 184
== Using SIP RTP CoS mark 5
-- Executing [5551234@from-internal:1] CelliaxSendsms("SIP/1001-00000004", "line0/09229207297,"hello world!!"") in new stack
== Spawn extension (from-internal, 5551234, 1) exited non-zero on 'SIP/1001-00000004'
-- Executing [h@from-internal:1] Macro("SIP/1001-00000004", "hangupcall") in new stack
-- Executing [s@macro-hangupcall:1] GotoIf("SIP/1001-00000004", "1?skiprg") in new stack
-- Goto (macro-hangupcall,s,4)
-- Executing [s@macro-hangupcall:4] GotoIf("SIP/1001-00000004", "1?skipblkvm") in new stack
-- Goto (macro-hangupcall,s,7)
-- Executing [s@macro-hangupcall:7] GotoIf("SIP/1001-00000004", "1?theend") in new stack
-- Goto (macro-hangupcall,s,9)
-- Executing [s@macro-hangupcall:9] Hangup("SIP/1001-00000004", "") in new stack
== Spawn extension (macro-hangupcall, s, 9) exited non-zero on 'SIP/1001-00000004' in macro 'hangupcall'
== Spawn extension (from-internal, h, 1) exited non-zero on 'SIP/1001-00000004'
karmic-desktop*CLI>

asterisk log says:

Mar 15 11:04:55] DEBUG[3118] devicestate.c: Notification of state change to be queued on device/channel SIP/1001
[Mar 15 11:04:55] DEBUG[3097] devicestate.c: No provider found, checking channel drivers for SIP - 1001
[Mar 15 11:04:55] DEBUG[3191] pbx.c: Launching 'CelliaxSendsms'
[Mar 15 11:04:55] DEBUG[3097] chan_sip.c: Checking device state for peer 1001
[Mar 15 11:04:55] VERBOSE[3191] logger.c: -- Executing [5551234@from-internal:1] CelliaxSendsms("SIP/1001-00000004", "line0/09229207297,"hello world!!"") in new stack
[Mar 15 11:04:55] DEBUG[3097] devicestate.c: Changing state for SIP/1001 - state 2 (In use)
[Mar 15 11:04:55] DEBUG[3191] celliax_additional.c: CelliaxSendsms: line0/09229207297,"hello world!!"
[Mar 15 11:04:55] DEBUG[3097] devicestate.c: No provider found, checking channel drivers for SIP - 1001
[Mar 15 11:04:55] DEBUG[3191] celliax_additional.c: START
[Mar 15 11:04:55] DEBUG[3097] chan_sip.c: Checking device state for peer 1001
[Mar 15 11:04:55] ERROR[3191] celliax_additional.c: CelliaxSendsms app do not recognize 'line0/09229207297,"hello world!!"'. Requires a destination with slashes (interfacename/destinationnumber, TEXT)
[Mar 15 11:04:55] DEBUG[3097] devicestate.c: Changing state for SIP/1001 - state 2 (In use)

and by the way, this part keeps on repeating in my logs:

[Mar 15 11:06:03] DEBUG[3118] chan_sip.c: Allocating new SIP dialog for (No Call-ID) - OPTIONS (No RTP)
[Mar 15 11:06:03] DEBUG[3118] acl.c: Found IP address for this socket
[Mar 15 11:06:03] DEBUG[3118] chan_sip.c: Setting SIP_TRANSPORT_UDP with address 172.16.0.12:5060
[Mar 15 11:06:03] DEBUG[3118] chan_sip.c: Initializing initreq for method OPTIONS - callid 5bd6c2131e7bb8ef0a0ddf105034eb64@172.16.0.12
[Mar 15 11:06:03] DEBUG[3118] chan_sip.c: Trying to put 'OPTIONS sip' onto UDP socket destined for 172.16.0.33:5060
[Mar 15 11:06:03] DEBUG[3118] chan_sip.c: = Found Their Call ID: 5bd6c2131e7bb8ef0a0ddf105034eb64@172.16.0.12 Their Tag Our tag: as4cc0bab2
[Mar 15 11:06:03] DEBUG[3118] chan_sip.c: Stopping retransmission on '5bd6c2131e7bb8ef0a0ddf105034eb64@172.16.0.12' of Request 102: Match Found
[Mar 15 11:06:03] DEBUG[3118] chan_sip.c: Destroying SIP dialog 5bd6c2131e7bb8ef0a0ddf105034eb64@172.16.0.12
[Mar 15 11:06:05] DEBUG[3127] chan_celliax.c: rev 16983M[(nil)|b6de2b70][DEBUG_SERIAL 2102 ][line0 ][-1, 0,102] Syncing Serial
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2501 ][line0 ][-1, 0,102] sending: AT
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (A)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (T)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2426 ][line0 ][-1, 0,102] sent (carriage return)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 1346 ][line0 ][-1, 0,102] Read line 0: |OK|
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2165 ][line0 ][-1, 0,102] got OK
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2547 ][line0 ][-1, 0,102] sending: AT+CBC, expecting: OK
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (A)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (T)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (+)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (C)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (B)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (C)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2426 ][line0 ][-1, 0,102] sent (carriage return)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 1346 ][line0 ][-1, 0,102] Read line 0: |+CBC: 1,92|
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 1346 ][line0 ][-1, 0,102] Read line 1: |OK|
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 1527 ][line0 ][-1, 0,102] |+CBC: 1,92| +CBC: Powered by power supply, battery strenght=92
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2159 ][line0 ][-1, 0,102] |OK| got what EXPECTED
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2547 ][line0 ][-1, 0,102] sending: AT+CSQ, expecting: OK
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (A)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (T)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (+)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (C)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (S)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (Q)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2426 ][line0 ][-1, 0,102] sent (carriage return)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 1346 ][line0 ][-1, 0,102] Read line 0: |+CSQ: 11,99|
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 1346 ][line0 ][-1, 0,102] Read line 1: |OK|
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 1550 ][line0 ][-1, 0,102] |+CSQ: 11,99| +CSQ: Signal Quality: 11, Error Rate=99
[Mar 15 11:06:05] WARNING[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][WARNING 1561 ][line0 ][-1, 0,102] |+CSQ: 11,99| CELLPHONE GETS SIGNAL LOW
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2159 ][line0 ][-1, 0,102] |OK| got what EXPECTED
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2501 ][line0 ][-1, 0,102] sending: AT+MMGL="HEADER ONLY"
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (A)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (T)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (+)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (M)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (M)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (G)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (L)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (=)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (")
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (H)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (E)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (A)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (D)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (E)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (R)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... ( )
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (O)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (N)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (L)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (Y)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2396 ][line0 ][-1, 0,102] sent data... (")
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2426 ][line0 ][-1, 0,102] sent (carriage return)
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 1346 ][line0 ][-1, 0,102] Read line 0: |ERROR|
[Mar 15 11:06:05] DEBUG[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][DEBUG_AT 2171 ][line0 ][-1, 0,102] got ERROR
[Mar 15 11:06:05] WARNING[3127] celliax_additional.c: rev 16983M[(nil)|b6de2b70][WARNING 1131 ][line0 ][-1, 0,102] AT+MMGL="HEADER ONLY" does not get OK from the modem, maybe a long msg is incoming. If this cellmodem is not a Motorola, you are arriving here because your cellmodem do not supports CNMI kind of incoming SMS alert; please let it know to the developers of Celliax. If this cellmodem is a Motorola and this message keeps repeating, and you cannot correctly receive SMSs from this interface, please manually clean all messages from the cellmodem/SIM. Continuing.

is there something i missed??

your help will be very much appreciated...

by the way.... i tried connecting to irc by i cant find #gsmopen channel in the irc.freenode.net...

another thing...

i just wanna ask if chan_celliax works on usb modem sticks like huawei...

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.