Hi Nhadie,
Yes... you can use it for instant messaging. eyeBeam is in my opinion the best featured SIP client ever. It can do voice, video, instant messaging, presence, conferencing etc... and all standard SIP. Note that the eyeBeam is the commercial version and Xlite is free. And with Xlite you cannot do anything else than voice.
- Teemu
2005/10/11, Nhadie nhadie@cbcpworld.com:
Hi Teemu,
Are you saying you can use eyebeam afor instant messagin? i thought it was just for calling.
Regards, Nhadie
Hi,
I've been configuring msilo for offline messaging and I've faced few problems.
First... I use Xten (or now Counterpath) Eyebeam and each time user starts to type an instant message it sends a SIP MESSAGE with Content-Type: application/im-iscomposing+xml and msilo naturally stores this message also. I tried to prevent this with the following configuration but it didn't work..
if (search("Content-Type: application/im-iscomposing+xml")) {
# # Do not store composing MESSAGEs # } else {
# # Store offline message # }
Or course this is done only for method=="MESSAGE"... Can you see why this is not working?
Second... Is there a way to make the reply to the offline message appear to be coming from the user that it was sent to? I mean you can configure msilo to reply for example with user registrar@myserproxy.com mailto:registrar@myserproxy.com, but that opens a new IM window for the user so it's not that good.
Thanks in advance...
Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- ---------------------------- ------ | -- Computers are like Air Conditioners, | ------ It doesn't work when Windows are open! | ---------------------------- ------ |
-- Teemu Harju http://www.teemuharju.net
Hi Teeemu Harju,
the search command uses a regexp. So I guess you should change your search to be a regexp.
-Atle
* Teemu Harju teemu.harju@gmail.com [051011 09:05]:
Hi Nhadie,
Yes... you can use it for instant messaging. eyeBeam is in my opinion the best featured SIP client ever. It can do voice, video, instant messaging, presence, conferencing etc... and all standard SIP. Note that the eyeBeam is the commercial version and Xlite is free. And with Xlite you cannot do anything else than voice.
- Teemu
2005/10/11, Nhadie nhadie@cbcpworld.com:
Hi Teemu,
Are you saying you can use eyebeam afor instant messagin? i thought it was just for calling.
Regards, Nhadie
Hi,
I've been configuring msilo for offline messaging and I've faced few problems.
First... I use Xten (or now Counterpath) Eyebeam and each time user starts to type an instant message it sends a SIP MESSAGE with Content-Type: application/im-iscomposing+xml and msilo naturally stores this message also. I tried to prevent this with the following configuration but it didn't work..
if (search("Content-Type: application/im-iscomposing+xml")) {
# # Do not store composing MESSAGEs # } else {
# # Store offline message # }
Or course this is done only for method=="MESSAGE"... Can you see why this is not working?
Second... Is there a way to make the reply to the offline message appear to be coming from the user that it was sent to? I mean you can configure msilo to reply for example with user registrar@myserproxy.com mailto:registrar@myserproxy.com, but that opens a new IM window for the user so it's not that good.
Thanks in advance...
Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- ---------------------------- ------ | -- Computers are like Air Conditioners, | ------ It doesn't work when Windows are open! | ---------------------------- ------ |
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Hi,
I sort of tried the regexp like this "^Content-Type: application/im-iscomposing+xml$", but that didn't seem to work. I can try to figure out the regexp myself also, but if someone could point me how it is wrong I'd really appreciate it. ;)
- Teemu
2005/10/11, Atle Samuelsen clona@cyberhouse.no:
Hi Teeemu Harju,
the search command uses a regexp. So I guess you should change your search to be a regexp.
-Atle
- Teemu Harju teemu.harju@gmail.com [051011 09:05]:
Hi Nhadie,
Yes... you can use it for instant messaging. eyeBeam is in my opinion
the
best featured SIP client ever. It can do voice, video, instant
messaging,
presence, conferencing etc... and all standard SIP. Note that the
eyeBeam is
the commercial version and Xlite is free. And with Xlite you cannot do anything else than voice.
- Teemu
2005/10/11, Nhadie nhadie@cbcpworld.com:
Hi Teemu,
Are you saying you can use eyebeam afor instant messagin? i thought it was just for calling.
Regards, Nhadie
Hi,
I've been configuring msilo for offline messaging and I've faced few problems.
First... I use Xten (or now Counterpath) Eyebeam and each time user starts to type an instant message it sends a SIP MESSAGE with Content-Type: application/im-iscomposing+xml and msilo naturally stores this message also. I tried to prevent this with the following configuration but it didn't work..
if (search("Content-Type: application/im-iscomposing+xml")) {
# # Do not store composing MESSAGEs # } else {
# # Store offline message # }
Or course this is done only for method=="MESSAGE"... Can you see why this is not working?
Second... Is there a way to make the reply to the offline message appear to be coming from the user that it was sent to? I mean you
can
configure msilo to reply for example with user registrar@myserproxy.com mailto:registrar@myserproxy.com, but that opens a new IM window for the user so it's not that good.
Thanks in advance...
Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- ---------------------------- ------ | -- Computers are like Air Conditioners, | ------ It doesn't work when Windows are open! | ---------------------------- ------ |
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- Teemu Harju http://www.teemuharju.net
Hi Teemu,
I think it should be something like : "^Content-Type:.application/im-iscomposing+xml"
but, Im not sure. I dont know regexps that good myself.
try it out. start with only content-type, then extend it
-Atle
* Teemu Harju teemu.harju@gmail.com [051011 11:06]:
Hi,
I sort of tried the regexp like this "^Content-Type: application/im-iscomposing+xml$", but that didn't seem to work. I can try to figure out the regexp myself also, but if someone could point me how it is wrong I'd really appreciate it. ;)
- Teemu
2005/10/11, Atle Samuelsen clona@cyberhouse.no:
Hi Teeemu Harju,
the search command uses a regexp. So I guess you should change your search to be a regexp.
-Atle
- Teemu Harju teemu.harju@gmail.com [051011 09:05]:
Hi Nhadie,
Yes... you can use it for instant messaging. eyeBeam is in my opinion
the
best featured SIP client ever. It can do voice, video, instant
messaging,
presence, conferencing etc... and all standard SIP. Note that the
eyeBeam is
the commercial version and Xlite is free. And with Xlite you cannot do anything else than voice.
- Teemu
2005/10/11, Nhadie nhadie@cbcpworld.com:
Hi Teemu,
Are you saying you can use eyebeam afor instant messagin? i thought it was just for calling.
Regards, Nhadie
Hi,
I've been configuring msilo for offline messaging and I've faced few problems.
First... I use Xten (or now Counterpath) Eyebeam and each time user starts to type an instant message it sends a SIP MESSAGE with Content-Type: application/im-iscomposing+xml and msilo naturally stores this message also. I tried to prevent this with the following configuration but it didn't work..
if (search("Content-Type: application/im-iscomposing+xml")) {
# # Do not store composing MESSAGEs # } else {
# # Store offline message # }
Or course this is done only for method=="MESSAGE"... Can you see why this is not working?
Second... Is there a way to make the reply to the offline message appear to be coming from the user that it was sent to? I mean you
can
configure msilo to reply for example with user registrar@myserproxy.com mailto:registrar@myserproxy.com, but that opens a new IM window for the user so it's not that good.
Thanks in advance...
Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- ---------------------------- ------ | -- Computers are like Air Conditioners, | ------ It doesn't work when Windows are open! | ---------------------------- ------ |
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Thanks Atle,
Ah... of course.. I've forgotten to escape those special characters.
- Teemu
2005/10/11, Atle Samuelsen clona@cyberhouse.no:
Hi Teemu,
I think it should be something like : "^Content-Type:.application/im-iscomposing+xml"
but, Im not sure. I dont know regexps that good myself.
try it out. start with only content-type, then extend it
-Atle
- Teemu Harju teemu.harju@gmail.com [051011 11:06]:
Hi,
I sort of tried the regexp like this "^Content-Type: application/im-iscomposing+xml$", but that didn't seem to work. I can
try to
figure out the regexp myself also, but if someone could point me how it
is
wrong I'd really appreciate it. ;)
- Teemu
2005/10/11, Atle Samuelsen clona@cyberhouse.no:
Hi Teeemu Harju,
the search command uses a regexp. So I guess you should change your search to be a regexp.
-Atle
- Teemu Harju teemu.harju@gmail.com [051011 09:05]:
Hi Nhadie,
Yes... you can use it for instant messaging. eyeBeam is in my
opinion
the
best featured SIP client ever. It can do voice, video, instant
messaging,
presence, conferencing etc... and all standard SIP. Note that the
eyeBeam is
the commercial version and Xlite is free. And with Xlite you cannot
do
anything else than voice.
- Teemu
2005/10/11, Nhadie nhadie@cbcpworld.com:
Hi Teemu,
Are you saying you can use eyebeam afor instant messagin? i
thought it
was just for calling.
Regards, Nhadie
Hi,
I've been configuring msilo for offline messaging and I've faced
few
problems.
First... I use Xten (or now Counterpath) Eyebeam and each time
user
starts to type an instant message it sends a SIP MESSAGE with Content-Type: application/im-iscomposing+xml and msilo naturally stores this message also. I tried to prevent this with the
following
configuration but it didn't work..
if (search("Content-Type: application/im-iscomposing+xml")) {
# # Do not store composing MESSAGEs # } else {
# # Store offline message # }
Or course this is done only for method=="MESSAGE"... Can you see
why
this is not working?
Second... Is there a way to make the reply to the offline
message
appear to be coming from the user that it was sent to? I mean
you
can
configure msilo to reply for example with user registrar@myserproxy.com mailto:registrar@myserproxy.com, but
that
opens a new IM window for the user so it's not that good.
Thanks in advance...
Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- ---------------------------- ------ | -- Computers are like Air Conditioners, | ------ It doesn't work when Windows are open! | ---------------------------- ------ |
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- Teemu Harju http://www.teemuharju.net
Nema problema ;-)
-Atle * Teemu Harju teemu.harju@gmail.com [051011 12:30]:
Thanks Atle,
Ah... of course.. I've forgotten to escape those special characters.
- Teemu
2005/10/11, Atle Samuelsen clona@cyberhouse.no:
Hi Teemu,
I think it should be something like : "^Content-Type:.application/im-iscomposing+xml"
but, Im not sure. I dont know regexps that good myself.
try it out. start with only content-type, then extend it
-Atle
- Teemu Harju teemu.harju@gmail.com [051011 11:06]:
Hi,
I sort of tried the regexp like this "^Content-Type: application/im-iscomposing+xml$", but that didn't seem to work. I can
try to
figure out the regexp myself also, but if someone could point me how it
is
wrong I'd really appreciate it. ;)
- Teemu
2005/10/11, Atle Samuelsen clona@cyberhouse.no:
Hi Teeemu Harju,
the search command uses a regexp. So I guess you should change your search to be a regexp.
-Atle
- Teemu Harju teemu.harju@gmail.com [051011 09:05]:
Hi Nhadie,
Yes... you can use it for instant messaging. eyeBeam is in my
opinion
the
best featured SIP client ever. It can do voice, video, instant
messaging,
presence, conferencing etc... and all standard SIP. Note that the
eyeBeam is
the commercial version and Xlite is free. And with Xlite you cannot
do
anything else than voice.
- Teemu
2005/10/11, Nhadie nhadie@cbcpworld.com:
Hi Teemu,
Are you saying you can use eyebeam afor instant messagin? i
thought it
was just for calling.
Regards, Nhadie
> Hi, > > I've been configuring msilo for offline messaging and I've faced
few
> problems. > > First... I use Xten (or now Counterpath) Eyebeam and each time
user
> starts to type an instant message it sends a SIP MESSAGE with > Content-Type: application/im-iscomposing+xml and msilo naturally > stores this message also. I tried to prevent this with the
following
> configuration but it didn't work.. > > if (search("Content-Type: application/im-iscomposing+xml")) { > > # > # Do not store composing MESSAGEs > # > } else { > > # > # Store offline message > # > } > > Or course this is done only for method=="MESSAGE"... Can you see
why
> this is not working? > > Second... Is there a way to make the reply to the offline
message
> appear to be coming from the user that it was sent to? I mean
you
can
> configure msilo to reply for example with user > registrar@myserproxy.com mailto:registrar@myserproxy.com, but
that
> opens a new IM window for the user so it's not that good. > > Thanks in advance... > -- > Teemu Harju > http://www.teemuharju.net >
> >_______________________________________________ >Serusers mailing list >serusers@lists.iptel.org >http://lists.iptel.org/mailman/listinfo/serusers > >
-- ---------------------------- ------ | -- Computers are like Air Conditioners, | ------ It doesn't work when Windows are open! | ---------------------------- ------ |
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
-- Teemu Harju http://www.teemuharju.net
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers