plugins for windows

2006-07-07 Thread Ziyaad Bhayat








Hi,

 

Ca anyone recommend free-ware plugins for outlook to send
and receive sms’s that works well with Kannel.

 

Kind regards,

 

Ziyaad Bhayat

 








Re: Class 2 SMS

2006-07-07 Thread Stipe Tolj

Rajendra rait wrote:

Hi,

I tried that but no luck. Any other suggestions 


not really... without having the device present, remotely is a bit tricky.

Try to describe the problem situation again to the list and let's see if someone 
has similar experiences.


Stipe

---
Kölner Landstrasse 419
40589 Düsseldorf, NRW, Germany

tolj.org system architecture  Kannel Software Foundation (KSF)
http://www.tolj.org/  http://www.kannel.org/

mailto:st_{at}_tolj.org   mailto:stolj_{at}_kannel.org
---



Re: CIMD 2.0 & Greek

2006-07-07 Thread Stipe Tolj

Thanos Chatziathanassiou wrote:


Stipe Tolj wrote:


Thanos Chatziathanassiou wrote:


--- charset.c.orig  Thu Jan 22 16:08:24 2004
+++ charset.c   Mon Feb 27 12:23:49 2006
@@ -76,11 +76,15 @@
  * The escape character, at position 27, is mapped to a space,
  * though normally the function that indexes into this table will
  * treat it specially. */
+
+/* patched for greek chars already present in GSM 7bit
+   (chars 0x10,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1a) */
+
 static const unsigned char gsm_to_latin1[128] = {
 '@', 0xa3,  '$', 0xa5, 0xe8, 0xe9, 0xf9, 0xec,   /* 0 - 7 */
0xf2, 0xc7,   10, 0xd8, 0xf8,   13, 0xc5, 0xe5,   /* 8 - 15 */
-'?',  '_',  '?',  '?',  '?',  '?',  '?',  '?',   /* 16 - 23 */
- '?',  '?',  '?',  ' ', 0xc6, 0xe6, 0xdf, 0xc9,   /* 24 - 31 */
+   0x10,  '_', 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,   /* 16 - 23 */
+0x18, 0x19, 0x1a,  ' ', 0xc6, 0xe6, 0xdf, 0xc9,   /* 24 - 31 */
 ' ',  '!',  '"',  '#', 0xa4,  '%',  '&', '\'',   /* 32 - 39 */
 '(',  ')',  '*',  '+',  ',',  '-',  '.',  '/',   /* 40 - 47 */
 '0',  '1',  '2',  '3',  '4',  '5',  '6',  '7',   /* 48 - 55 */



this patch is "works" if you punch in the greek values of GSM 03.38 
alphabet in there. But remember(!), they are not part of ISO-8859-1 
(latin1), they are part of latin7. So this patch is a kludge.


Yes, it is...but then again so is GSM 03.38 :)

We obviously "loose" characters (those marked with '?') when mapping 
from GSM default alphabet to latin1. We should use UTF-8 (unicode) 
instead?!


We could, but we'd be giving up on 160-chars-long SMS. Besides, some 
(admittedly old) devices don't handle utf8 all too well...


If I understand correctly, your problem is that this isn't 
``gsm_to_latin1'' any more. Maybe we could translate to/from iso-8859-7 
for these chars. i.e. 0x10 would become 0xC4 which is greek capital 
delta on iso-8859-7.
Thing is, my end application (and probably Kyriakos' too) was already 
prepared to handle this, so I simply didn't bother. If we're talking 
about integrating it properly to kannel, I think that's the best way to 
go. Maybe even have it as a configuration option.

That would only leave a problem with the Euro sign (double-byte 0x1B 0x65).

Thoughts ?


[I'll move this thread to devel@ list, since it's more appropriate there]

yep, correct. This "should" be configurable. Actually we do may gsm_to_latin1() 
already _inside_ the smsc modules. Which seems "wrong" to me. We should exit the 
smsc-specific layer with GSM default charset, and allow the user to change the 
exit charset encoding in the abstaction layer. Which would mean this has to be 
done only in one global place for all smsc modules.


Alex, your thoughts on this?
Others?

Stipe

---
Kölner Landstrasse 419
40589 Düsseldorf, NRW, Germany

tolj.org system architecture  Kannel Software Foundation (KSF)
http://www.tolj.org/  http://www.kannel.org/

mailto:st_{at}_tolj.org   mailto:stolj_{at}_kannel.org
---



Re:

2006-07-07 Thread Stipe Tolj

Ziyaad Bhayat wrote:


Hi everyone,

 


I've installed Kannel and I can send and receive sms's. How can I setup
three different smsbox's in order o filter from three different providers.


Hi Ziyaad,

first of all: please use a subject on the mail, otherwise people's MUA will 
reference this wrong in some super-vancy-hyperbloc-threaded-tree ;) (just 
kidding, but subjects should be used)


Ok, there is no need for multiple smsboxes for "only" logical seperation of 
different providers.


Multiple smsboxes can (and obviously) should be used for load-balancing... So if 
you have some hundret msg/sec. then this would be appropriate, but not for the 
purpose you want.


For MO traffic:
Use the escape code %i within the get-url value in sms-service group to let your 
application layer know from which smsc-id the msg originated. (see table 6-9 in 
user's guide)


For MT traffic:
Use the "smsc=..." GET variable for the sendsms interface and corresponding 
'accept-smsc...' config directives in the smsc group to control the MT routing.


Stipe

---
Kölner Landstrasse 419
40589 Düsseldorf, NRW, Germany

tolj.org system architecture  Kannel Software Foundation (KSF)
http://www.tolj.org/  http://www.kannel.org/

mailto:st_{at}_tolj.org   mailto:stolj_{at}_kannel.org
---



unsubscribe

2006-07-07 Thread Dermot Wrycraft










 

Unsubscribe

 






This message has been scanned for viruses by BlackSpider MailControl





Re: unsubscribe

2006-07-07 Thread Colin Pitrat

Maybe you want to send a mail to [EMAIL PROTECTED], don't you ?

Colin

Aftab Rashid wrote:
 

 

 


**unsubscribe**

 





Re: CIMD 2.0 & Greek

2006-07-07 Thread Thanos Chatziathanassiou

Stipe Tolj wrote:

Thanos Chatziathanassiou wrote:


--- charset.c.orig  Thu Jan 22 16:08:24 2004
+++ charset.c   Mon Feb 27 12:23:49 2006
@@ -76,11 +76,15 @@
  * The escape character, at position 27, is mapped to a space,
  * though normally the function that indexes into this table will
  * treat it specially. */
+
+/* patched for greek chars already present in GSM 7bit
+   (chars 0x10,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1a) */
+
 static const unsigned char gsm_to_latin1[128] = {
 '@', 0xa3,  '$', 0xa5, 0xe8, 0xe9, 0xf9, 0xec,   /* 0 - 7 */
0xf2, 0xc7,   10, 0xd8, 0xf8,   13, 0xc5, 0xe5,   /* 8 - 15 */
-'?',  '_',  '?',  '?',  '?',  '?',  '?',  '?',   /* 16 - 23 */
- '?',  '?',  '?',  ' ', 0xc6, 0xe6, 0xdf, 0xc9,   /* 24 - 31 */
+   0x10,  '_', 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,   /* 16 - 23 */
+0x18, 0x19, 0x1a,  ' ', 0xc6, 0xe6, 0xdf, 0xc9,   /* 24 - 31 */
 ' ',  '!',  '"',  '#', 0xa4,  '%',  '&', '\'',   /* 32 - 39 */
 '(',  ')',  '*',  '+',  ',',  '-',  '.',  '/',   /* 40 - 47 */
 '0',  '1',  '2',  '3',  '4',  '5',  '6',  '7',   /* 48 - 55 */


this patch is "works" if you punch in the greek values of GSM 03.38 
alphabet in there. But remember(!), they are not part of ISO-8859-1 
(latin1), they are part of latin7. So this patch is a kludge.

Yes, it is...but then again so is GSM 03.38 :)
We obviously "loose" characters (those marked with '?') when mapping 
from GSM default alphabet to latin1. We should use UTF-8 (unicode) 
instead?!
We could, but we'd be giving up on 160-chars-long SMS. Besides, some 
(admittedly old) devices don't handle utf8 all too well...


If I understand correctly, your problem is that this isn't 
``gsm_to_latin1'' any more. Maybe we could translate to/from iso-8859-7 
for these chars. i.e. 0x10 would become 0xC4 which is greek capital 
delta on iso-8859-7.
Thing is, my end application (and probably Kyriakos' too) was already 
prepared to handle this, so I simply didn't bother. If we're talking 
about integrating it properly to kannel, I think that's the best way to 
go. Maybe even have it as a configuration option.

That would only leave a problem with the Euro sign (double-byte 0x1B 0x65).

Thoughts ?


Stipe

---
Kölner Landstrasse 419
40589 Düsseldorf, NRW, Germany

tolj.org system architecture  Kannel Software Foundation (KSF)
http://www.tolj.org/  http://www.kannel.org/

mailto:st_{at}_tolj.org   mailto:stolj_{at}_kannel.org
---





unsubscribe

2006-07-07 Thread Aftab Rashid








 

 

 

unsubscribe

 








Re: Class 2 SMS

2006-07-07 Thread Rajendra rait

Hi,

I tried that but no luck. Any other suggestions 

Raj



From: Stipe Tolj <[EMAIL PROTECTED]>
To: Rajendra rait <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED],  users@kannel.org
Subject: Re: Class 2 SMS
Date: Fri, 07 Jul 2006 01:34:05 +0200

Rajendra rait wrote:


Colin,

Thankyou for your reply...

As per your mail i did the changes in my kannel.conf and also i changed 
the paramaters in the http url and this is what i tried


http://xxx.xxx.xxx.xxx:13013/cgi-bin/sendsms?username=xxx&password=xxx&pid=127&dcs=0xF2&mclass=2&from=&to=&text=0969620401100103

Now if you look at the data_encoding field its what we were expecting 
data_coding: 242 = 0x00f2, also now i can't see the sms, but i am not 
sure that i m receing it or not, the way i tested was kept the phone near 
my speakers to test the sms.


See we are trying to send sim designated binary sms through kannel an 
actual Class 2 SMS. The app in the SIM would read this sms and then act 
accordingly.


so you want to pass the SMS to a SIM toolkit application? This would be 
mclass=3, see table 6-15 of Kannel's user guide.


Stipe

---
Kölner Landstrasse 419
40589 Düsseldorf, NRW, Germany

tolj.org system architecture  Kannel Software Foundation (KSF)
http://www.tolj.org/  http://www.kannel.org/

mailto:st_{at}_tolj.org   mailto:stolj_{at}_kannel.org
---






Re:

2006-07-07 Thread Wayne Khan

Hi Ziyaad,
Why do you need three smsboxes to filter sms from the different providers?

If there is a way to differentiate between the providers, the coding 
part should be quite trivial.


Ziyaad Bhayat wrote:


Hi everyone,

 

I’ve installed Kannel and I can send and receive sms’s. How can I 
setup three different smsbox’s in order o filter from three different 
providers.


 


Kind regards,

 


**Ziyaad Bhayat**

 



--
This message has been scanned for viruses and
dangerous content by *MailScanner* , and is
believed to be clean. 


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.