Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-24 Thread Emmanuel CHANSON
Many thanks Paul, it works (I knew it due to some tests done with another
script)
So the MMS-C doesn't reject the message :)

BUT,

I see that my fake-sender string address is modified with '@unknown' at the
end
Can I prevent Mbuni to add this string at the end ?
It is comes from the following piece of code ?

in ./mmlib/mms_util.c:

*  if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
"/TYPE=PLMN") == 0)) {
mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") :
octstr_imm(""));
  } else if (typ)
octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
  else
octstr_append(*address, keep_suffix ? octstr_imm("@unknown") :
octstr_imm(""));
  octstr_destroy(typ);
}*


Best regards,

Emmanuel

2010/8/24 Paul Bagyenda 

> In src/extras/mmsbox-mm1/mmsbox_mm1.c there is a line that says:
>
> mms_replace_header_value(m, "From", "#insert");
>
> remove it. My guess is message submission will stop working (as I expect
> the network MMSC doesn't allow you to fake sender address).
>
>
> On Aug 23, 2010, at 14:42, Emmanuel CHANSON wrote:
>
> *hence Mbuni removes the sender address and tells the MMSC to insert one
> *
> And is it possible to patch Mbuni to modify this behavior ?
>
> Regards,
>
> Emmanuel*
> *
> 2010/8/23 Paul Bagyenda 
>
>> When you use the mm1 module of mmsbox to send an MMS, you obviously cannot
>> fake the sender. The MMSC pretty much always inserts a sender address for
>> you, hence Mbuni removes the sender address and tells the MMSC to insert
>> one.
>>
>> On Aug 19, 2010, at 23:53, Emmanuel CHANSON wrote:
>>
>> Yes, I know that in SMS messaging it is restricted,
>>
>> but in MMS I am quite sure it is possible by setting the *From* header
>> inside a MMS to a given string. (test done in another context without
>> Mbuni).
>> The thing is that I ask some info about how Mbuni handle these different
>> parameters (sender, faked-sender, ...) because I have a behavior I don't
>> understand where:
>>
>> - I have the string let's say *Sender* set in my config file,
>> - I send my MMS
>> - Inside mbuni logs I do see *'from sen...@unknown*'
>> - In the pcap trace I don't see any value in *From* Header !! the field
>> is empty
>> - On my mobile phone I receive the MMS with +123456789 from value
>>
>> I think because the *From* value inside pcap trace is empty then MMS-C
>> put the Sender modem MSISDN.
>> So is there a problem when the sender is not a MSISDN address ?
>>
>> In mmlib/mms_util.c I found:
>>
>> *if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
>> "/TYPE=PLMN") == 0)) {
>> mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
>> octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") :
>> octstr_imm(""));
>>   } else if (typ)
>> octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
>>   else
>> octstr_append(*address, keep_suffix ? octstr_imm("@unknown") :
>> octstr_imm(""));
>>   octstr_destroy(typ);
>> }*
>>
>> Not being an expert in C I wonder if Mbuni is able to replace a MSISDN
>> address by a string and why it should add '@unknown' after the string.
>>
>> In any case even with this it don't seems to work as my From field value
>> is empty...
>>
>> Maybe some Mbuni experts a some clues about this ?
>>
>> Regards,
>>
>> Emmanuel
>>
>> 2010/8/19 Alvaro Cornejo 
>>
>>> Emmanuel
>>>
>>> Don't know much about mbuni, but for sms messaging with gsm modems it
>>> is no possible to set the &From variable. It allways will be the SIM
>>> phone number (MSISDN). This feature is restricted by the operators in
>>> general. You can do that with SMPP.
>>>
>>> As you connect through GPRS, it might be different.
>>>
>>> Better ask your provider if it is possible.
>>>
>>> Regards
>>>
>>> Alvaro
>>>
>>> |-|
>>> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
>>> celular y Nextel
>>> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
>>> SMS y GPRS online
>>>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
>>> www.pravcom.com
>>>
>>>
>>>
>>> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
>>>  wrote:
>>> > One question about the sender value in mmsbox:
>>> >
>>> > Mbuni CVS + GPRS modem as mmsc.
>>> >
>>> > How mmsbox handle the From value &from if the value is not an MSISDN
>>> like
>>> > +x/TYPE=PLMN ?
>>> > I do see in logs that mbuni seems to send a MMS with my string value in
>>> From
>>> > Header BUT:
>>> > - From value is empty in a pcap trace token when mmsbox sent the MMS to
>>> MMSC
>>> > - I receive on my destination mobile sender info like my real modem SIM
>>> > number ie +123456789
>>> >
>>> > My purpose is to send a MMS with &from= received like this on
>>> > destination mobile for instance recipient will receive a MMS coming
>>> from
>>> > MYCOMPANY.
>>> 

Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-23 Thread Paul Bagyenda
In src/extras/mmsbox-mm1/mmsbox_mm1.c there is a line that says:

mms_replace_header_value(m, "From", "#insert");

remove it. My guess is message submission will stop working (as I expect the 
network MMSC doesn't allow you to fake sender address). 


On Aug 23, 2010, at 14:42, Emmanuel CHANSON wrote:

> hence Mbuni removes the sender address and tells the MMSC to insert one
> 
> And is it possible to patch Mbuni to modify this behavior ?
> 
> Regards,
> 
> Emmanuel
> 
> 2010/8/23 Paul Bagyenda 
> When you use the mm1 module of mmsbox to send an MMS, you obviously cannot 
> fake the sender. The MMSC pretty much always inserts a sender address for 
> you, hence Mbuni removes the sender address and tells the MMSC to insert one.
> 
> On Aug 19, 2010, at 23:53, Emmanuel CHANSON wrote:
> 
>> Yes, I know that in SMS messaging it is restricted,
>> 
>> but in MMS I am quite sure it is possible by setting the From header inside 
>> a MMS to a given string. (test done in another context without Mbuni).
>> The thing is that I ask some info about how Mbuni handle these different 
>> parameters (sender, faked-sender, ...) because I have a behavior I don't 
>> understand where:
>> 
>> - I have the string let's say Sender set in my config file,
>> - I send my MMS
>> - Inside mbuni logs I do see 'from sen...@unknown'
>> - In the pcap trace I don't see any value in From Header !! the field is 
>> empty
>> - On my mobile phone I receive the MMS with +123456789 from value
>> 
>> I think because the From value inside pcap trace is empty then MMS-C put the 
>> Sender modem MSISDN.
>> So is there a problem when the sender is not a MSISDN address ?
>> 
>> In mmlib/mms_util.c I found:
>> 
>> if (isphonenum(*address) || (typ && octstr_str_case_compare(typ, 
>> "/TYPE=PLMN") == 0)) {
>> mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
>> octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") : 
>> octstr_imm(""));
>>   } else if (typ)
>> octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
>>   else
>> octstr_append(*address, keep_suffix ? octstr_imm("@unknown") : 
>> octstr_imm(""));
>>   octstr_destroy(typ);
>> }
>> 
>> Not being an expert in C I wonder if Mbuni is able to replace a MSISDN 
>> address by a string and why it should add '@unknown' after the string.
>> 
>> In any case even with this it don't seems to work as my From field value is 
>> empty...
>> 
>> Maybe some Mbuni experts a some clues about this ?
>> 
>> Regards,
>> 
>> Emmanuel
>> 
>> 2010/8/19 Alvaro Cornejo 
>> Emmanuel
>> 
>> Don't know much about mbuni, but for sms messaging with gsm modems it
>> is no possible to set the &From variable. It allways will be the SIM
>> phone number (MSISDN). This feature is restricted by the operators in
>> general. You can do that with SMPP.
>> 
>> As you connect through GPRS, it might be different.
>> 
>> Better ask your provider if it is possible.
>> 
>> Regards
>> 
>> Alvaro
>> |-|
>> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
>> celular y Nextel
>> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
>> SMS y GPRS online
>>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
>> www.pravcom.com
>> 
>> 
>> 
>> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
>>  wrote:
>> > One question about the sender value in mmsbox:
>> >
>> > Mbuni CVS + GPRS modem as mmsc.
>> >
>> > How mmsbox handle the From value &from if the value is not an MSISDN like
>> > +x/TYPE=PLMN ?
>> > I do see in logs that mbuni seems to send a MMS with my string value in 
>> > From
>> > Header BUT:
>> > - From value is empty in a pcap trace token when mmsbox sent the MMS to 
>> > MMSC
>> > - I receive on my destination mobile sender info like my real modem SIM
>> > number ie +123456789
>> >
>> > My purpose is to send a MMS with &from= received like this on
>> > destination mobile for instance recipient will receive a MMS coming from
>> > MYCOMPANY.
>> >
>> > In mmsbox.conf:
>> > 
>> > group = send-mms-user
>> > username = tester
>> > password = foobar
>> > faked-sender = Sender
>> >
>> > Test sendmms command:
>> > -
>> > lynx -dump
>> > "http://localhost:10003/?username=tester&password=foobar&mmsc=nokiaphone&from=Sender&to=%2Bx/TYPE=PLMN&subject=Test&content-url=http://localhost/mms/mms-2.smil";
>> >
>> > mmsbox.log:
>> > ...
>> > bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS Send:
>> > From sen...@unknown, to +x/TYPE=PLMN, msgsize=96880:
>> > msgid=[725F16D40E89735B8F6FE52B698E4CB4]
>> >
>> > Regards,
>> >
>> > Emmanuel
>> >
>> >
>> > ___
>> > Users mailing list
>> > [email protected]
>> > http://lists.mbuni.org/mailman/listinfo/users
>> >
>> >
>> ___
>> U

Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-23 Thread Emmanuel CHANSON
Thanks Paul for the answer,

*The MMSC pretty much always inserts a sender address for you*
-> MMSC do you mean the modem ? or the MMSC of my provider?

*hence Mbuni removes the sender address and tells the MMSC to insert one
*->And is it possible to patch Mbuni to modify this behavior ? not remove
the sender address ?

Regards,

Emmanuel*
*

2010/8/23 Emmanuel CHANSON 

> *hence Mbuni removes the sender address and tells the MMSC to insert one
> *
> And is it possible to patch Mbuni to modify this behavior ?
>
> Regards,
>
> Emmanuel*
> *
> 2010/8/23 Paul Bagyenda 
>
> When you use the mm1 module of mmsbox to send an MMS, you obviously cannot
>> fake the sender. The MMSC pretty much always inserts a sender address for
>> you, hence Mbuni removes the sender address and tells the MMSC to insert
>> one.
>>
>> On Aug 19, 2010, at 23:53, Emmanuel CHANSON wrote:
>>
>> Yes, I know that in SMS messaging it is restricted,
>>
>> but in MMS I am quite sure it is possible by setting the *From* header
>> inside a MMS to a given string. (test done in another context without
>> Mbuni).
>> The thing is that I ask some info about how Mbuni handle these different
>> parameters (sender, faked-sender, ...) because I have a behavior I don't
>> understand where:
>>
>> - I have the string let's say *Sender* set in my config file,
>> - I send my MMS
>> - Inside mbuni logs I do see *'from sen...@unknown*'
>> - In the pcap trace I don't see any value in *From* Header !! the field
>> is empty
>> - On my mobile phone I receive the MMS with +123456789 from value
>>
>> I think because the *From* value inside pcap trace is empty then MMS-C
>> put the Sender modem MSISDN.
>> So is there a problem when the sender is not a MSISDN address ?
>>
>> In mmlib/mms_util.c I found:
>>
>> *if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
>> "/TYPE=PLMN") == 0)) {
>> mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
>> octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") :
>> octstr_imm(""));
>>   } else if (typ)
>> octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
>>   else
>> octstr_append(*address, keep_suffix ? octstr_imm("@unknown") :
>> octstr_imm(""));
>>   octstr_destroy(typ);
>> }*
>>
>> Not being an expert in C I wonder if Mbuni is able to replace a MSISDN
>> address by a string and why it should add '@unknown' after the string.
>>
>> In any case even with this it don't seems to work as my From field value
>> is empty...
>>
>> Maybe some Mbuni experts a some clues about this ?
>>
>> Regards,
>>
>> Emmanuel
>>
>> 2010/8/19 Alvaro Cornejo 
>>
>>> Emmanuel
>>>
>>> Don't know much about mbuni, but for sms messaging with gsm modems it
>>> is no possible to set the &From variable. It allways will be the SIM
>>> phone number (MSISDN). This feature is restricted by the operators in
>>> general. You can do that with SMPP.
>>>
>>> As you connect through GPRS, it might be different.
>>>
>>> Better ask your provider if it is possible.
>>>
>>> Regards
>>>
>>> Alvaro
>>>
>>> |-|
>>> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
>>> celular y Nextel
>>> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
>>> SMS y GPRS online
>>>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
>>> www.pravcom.com
>>>
>>>
>>>
>>> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
>>>  wrote:
>>> > One question about the sender value in mmsbox:
>>> >
>>> > Mbuni CVS + GPRS modem as mmsc.
>>> >
>>> > How mmsbox handle the From value &from if the value is not an MSISDN
>>> like
>>> > +x/TYPE=PLMN ?
>>> > I do see in logs that mbuni seems to send a MMS with my string value in
>>> From
>>> > Header BUT:
>>> > - From value is empty in a pcap trace token when mmsbox sent the MMS to
>>> MMSC
>>> > - I receive on my destination mobile sender info like my real modem SIM
>>> > number ie +123456789
>>> >
>>> > My purpose is to send a MMS with &from= received like this on
>>> > destination mobile for instance recipient will receive a MMS coming
>>> from
>>> > MYCOMPANY.
>>> >
>>> > In mmsbox.conf:
>>> > 
>>> > group = send-mms-user
>>> > username = tester
>>> > password = foobar
>>> > faked-sender = Sender
>>> >
>>> > Test sendmms command:
>>> > -
>>> > lynx -dump
>>> > "
>>> http://localhost:10003/?username=tester&password=foobar&mmsc=nokiaphone&from=Sender&to=%2Bx/TYPE=PLMN&subject=Test&content-url=http://localhost/mms/mms-2.smil
>>> "
>>> >
>>> > mmsbox.log:
>>> > ...
>>> > bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS
>>> Send:
>>> > From sen...@unknown, to +x/TYPE=PLMN, msgsize=96880:
>>> > msgid=[725F16D40E89735B8F6FE52B698E4CB4]
>>> >
>>> > Regards,
>>> >
>>> > Emmanuel
>>> >
>>> >
>>> > ___
>>
>>
>

Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-23 Thread Emmanuel CHANSON
*hence Mbuni removes the sender address and tells the MMSC to insert one
*
And is it possible to patch Mbuni to modify this behavior ?

Regards,

Emmanuel*
*
2010/8/23 Paul Bagyenda 

> When you use the mm1 module of mmsbox to send an MMS, you obviously cannot
> fake the sender. The MMSC pretty much always inserts a sender address for
> you, hence Mbuni removes the sender address and tells the MMSC to insert
> one.
>
> On Aug 19, 2010, at 23:53, Emmanuel CHANSON wrote:
>
> Yes, I know that in SMS messaging it is restricted,
>
> but in MMS I am quite sure it is possible by setting the *From* header
> inside a MMS to a given string. (test done in another context without
> Mbuni).
> The thing is that I ask some info about how Mbuni handle these different
> parameters (sender, faked-sender, ...) because I have a behavior I don't
> understand where:
>
> - I have the string let's say *Sender* set in my config file,
> - I send my MMS
> - Inside mbuni logs I do see *'from sen...@unknown*'
> - In the pcap trace I don't see any value in *From* Header !! the field is
> empty
> - On my mobile phone I receive the MMS with +123456789 from value
>
> I think because the *From* value inside pcap trace is empty then MMS-C put
> the Sender modem MSISDN.
> So is there a problem when the sender is not a MSISDN address ?
>
> In mmlib/mms_util.c I found:
>
> *if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
> "/TYPE=PLMN") == 0)) {
> mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
> octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") :
> octstr_imm(""));
>   } else if (typ)
> octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
>   else
> octstr_append(*address, keep_suffix ? octstr_imm("@unknown") :
> octstr_imm(""));
>   octstr_destroy(typ);
> }*
>
> Not being an expert in C I wonder if Mbuni is able to replace a MSISDN
> address by a string and why it should add '@unknown' after the string.
>
> In any case even with this it don't seems to work as my From field value is
> empty...
>
> Maybe some Mbuni experts a some clues about this ?
>
> Regards,
>
> Emmanuel
>
> 2010/8/19 Alvaro Cornejo 
>
>> Emmanuel
>>
>> Don't know much about mbuni, but for sms messaging with gsm modems it
>> is no possible to set the &From variable. It allways will be the SIM
>> phone number (MSISDN). This feature is restricted by the operators in
>> general. You can do that with SMPP.
>>
>> As you connect through GPRS, it might be different.
>>
>> Better ask your provider if it is possible.
>>
>> Regards
>>
>> Alvaro
>>
>> |-|
>> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
>> celular y Nextel
>> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
>> SMS y GPRS online
>>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
>> www.pravcom.com
>>
>>
>>
>> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
>>  wrote:
>> > One question about the sender value in mmsbox:
>> >
>> > Mbuni CVS + GPRS modem as mmsc.
>> >
>> > How mmsbox handle the From value &from if the value is not an MSISDN
>> like
>> > +x/TYPE=PLMN ?
>> > I do see in logs that mbuni seems to send a MMS with my string value in
>> From
>> > Header BUT:
>> > - From value is empty in a pcap trace token when mmsbox sent the MMS to
>> MMSC
>> > - I receive on my destination mobile sender info like my real modem SIM
>> > number ie +123456789
>> >
>> > My purpose is to send a MMS with &from= received like this on
>> > destination mobile for instance recipient will receive a MMS coming from
>> > MYCOMPANY.
>> >
>> > In mmsbox.conf:
>> > 
>> > group = send-mms-user
>> > username = tester
>> > password = foobar
>> > faked-sender = Sender
>> >
>> > Test sendmms command:
>> > -
>> > lynx -dump
>> > "
>> http://localhost:10003/?username=tester&password=foobar&mmsc=nokiaphone&from=Sender&to=%2Bx/TYPE=PLMN&subject=Test&content-url=http://localhost/mms/mms-2.smil
>> "
>> >
>> > mmsbox.log:
>> > ...
>> > bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS
>> Send:
>> > From sen...@unknown, to +x/TYPE=PLMN, msgsize=96880:
>> > msgid=[725F16D40E89735B8F6FE52B698E4CB4]
>> >
>> > Regards,
>> >
>> > Emmanuel
>> >
>> >
>> > ___
>> > Users mailing list
>> > [email protected]
>> > http://lists.mbuni.org/mailman/listinfo/users
>> >
>> >
>> ___
>> Users mailing list
>> [email protected]
>> http://lists.mbuni.org/mailman/listinfo/users
>>
>
>
>
> --
> Emmanuel
>
> CHANSON Emmanuel
> Mobile Nouvelle-Calédonie: +687.77.35.02
> Mobile France: +33 (0) 6.68.03.89.56
> @email : [email protected]
> ___
> Users mailing list
> [email protected]
> http://lists.mbuni.org/mail

Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-23 Thread Paul Bagyenda
When you use the mm1 module of mmsbox to send an MMS, you obviously cannot fake 
the sender. The MMSC pretty much always inserts a sender address for you, hence 
Mbuni removes the sender address and tells the MMSC to insert one.
On Aug 19, 2010, at 23:53, Emmanuel CHANSON wrote:

> Yes, I know that in SMS messaging it is restricted,
> 
> but in MMS I am quite sure it is possible by setting the From header inside a 
> MMS to a given string. (test done in another context without Mbuni).
> The thing is that I ask some info about how Mbuni handle these different 
> parameters (sender, faked-sender, ...) because I have a behavior I don't 
> understand where:
> 
> - I have the string let's say Sender set in my config file,
> - I send my MMS
> - Inside mbuni logs I do see 'from sen...@unknown'
> - In the pcap trace I don't see any value in From Header !! the field is empty
> - On my mobile phone I receive the MMS with +123456789 from value
> 
> I think because the From value inside pcap trace is empty then MMS-C put the 
> Sender modem MSISDN.
> So is there a problem when the sender is not a MSISDN address ?
> 
> In mmlib/mms_util.c I found:
> 
> if (isphonenum(*address) || (typ && octstr_str_case_compare(typ, 
> "/TYPE=PLMN") == 0)) {
> mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
> octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") : 
> octstr_imm(""));
>   } else if (typ)
> octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
>   else
> octstr_append(*address, keep_suffix ? octstr_imm("@unknown") : 
> octstr_imm(""));
>   octstr_destroy(typ);
> }
> 
> Not being an expert in C I wonder if Mbuni is able to replace a MSISDN 
> address by a string and why it should add '@unknown' after the string.
> 
> In any case even with this it don't seems to work as my From field value is 
> empty...
> 
> Maybe some Mbuni experts a some clues about this ?
> 
> Regards,
> 
> Emmanuel
> 
> 2010/8/19 Alvaro Cornejo 
> Emmanuel
> 
> Don't know much about mbuni, but for sms messaging with gsm modems it
> is no possible to set the &From variable. It allways will be the SIM
> phone number (MSISDN). This feature is restricted by the operators in
> general. You can do that with SMPP.
> 
> As you connect through GPRS, it might be different.
> 
> Better ask your provider if it is possible.
> 
> Regards
> 
> Alvaro
> |-|
> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
> celular y Nextel
> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
> SMS y GPRS online
>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
> www.pravcom.com
> 
> 
> 
> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
>  wrote:
> > One question about the sender value in mmsbox:
> >
> > Mbuni CVS + GPRS modem as mmsc.
> >
> > How mmsbox handle the From value &from if the value is not an MSISDN like
> > +x/TYPE=PLMN ?
> > I do see in logs that mbuni seems to send a MMS with my string value in From
> > Header BUT:
> > - From value is empty in a pcap trace token when mmsbox sent the MMS to MMSC
> > - I receive on my destination mobile sender info like my real modem SIM
> > number ie +123456789
> >
> > My purpose is to send a MMS with &from= received like this on
> > destination mobile for instance recipient will receive a MMS coming from
> > MYCOMPANY.
> >
> > In mmsbox.conf:
> > 
> > group = send-mms-user
> > username = tester
> > password = foobar
> > faked-sender = Sender
> >
> > Test sendmms command:
> > -
> > lynx -dump
> > "http://localhost:10003/?username=tester&password=foobar&mmsc=nokiaphone&from=Sender&to=%2Bx/TYPE=PLMN&subject=Test&content-url=http://localhost/mms/mms-2.smil";
> >
> > mmsbox.log:
> > ...
> > bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS Send:
> > From sen...@unknown, to +x/TYPE=PLMN, msgsize=96880:
> > msgid=[725F16D40E89735B8F6FE52B698E4CB4]
> >
> > Regards,
> >
> > Emmanuel
> >
> >
> > ___
> > Users mailing list
> > [email protected]
> > http://lists.mbuni.org/mailman/listinfo/users
> >
> >
> ___
> Users mailing list
> [email protected]
> http://lists.mbuni.org/mailman/listinfo/users
> 
> 
> 
> -- 
> Emmanuel
> 
> CHANSON Emmanuel
> Mobile Nouvelle-Calédonie: +687.77.35.02
> Mobile France: +33 (0) 6.68.03.89.56
> @email : [email protected]
> ___
> Users mailing list
> [email protected]
> http://lists.mbuni.org/mailman/listinfo/users

___
Users mailing list
[email protected]
http://lists.mbuni.org/mailman/listinfo/users


Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-21 Thread Emmanuel CHANSON
Any help from some experts?

Best regards,

Emmanuel

2010/8/20 Emmanuel CHANSON 

> I tested with "1010" as sender in the URL and 1010 also configured in
> fake-sender that overide the from url value:
>
> In mbuni log I see:
>
> bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS Send:
> *From 1010,* to +687773502/TYPE=PLMN, msgsize=25088:
> msgid=[B16C7CA0902E3919037AA6780EA962E2]
>
> BUT in the pcap trace I have that:
> ...
> Subject: Test 1010
> X-Mms-Expiry: Aug  26, 2010 15:22:21.0
> Date: Aug 20, 2010 02:22:21.0
> *From: *
> To: +*msisdn*/TYPE=PLMN
> ...
>
> And MMS is received with the sender MSISDN instead of 1010.
>
> BR,
>
>
> Emmanuel
>
> 2010/8/19 Alvaro Cornejo 
>
>> Have you tried a numeric From?
>>
>> The @unknown seems to come from the 2nd else in the code you quoted.
>> This means that "Sender" is valued as false in
>>
>> if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
>> "/TYPE=PLMN") == 0))  and in if(typ)...
>>
>> What does that means... no idea
>>
>> Regards
>>
>> Alvaro
>>
>>
>> |-|
>> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
>> celular y Nextel
>> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
>> SMS y GPRS online
>>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
>> www.pravcom.com
>>
>>
>>
>> On Thu, Aug 19, 2010 at 3:53 PM, Emmanuel CHANSON
>>  wrote:
>> > Yes, I know that in SMS messaging it is restricted,
>> >
>> > but in MMS I am quite sure it is possible by setting the From header
>> inside
>> > a MMS to a given string. (test done in another context without Mbuni).
>> > The thing is that I ask some info about how Mbuni handle these different
>> > parameters (sender, faked-sender, ...) because I have a behavior I don't
>> > understand where:
>> >
>> > - I have the string let's say Sender set in my config file,
>> > - I send my MMS
>> > - Inside mbuni logs I do see 'from sen...@unknown'
>> > - In the pcap trace I don't see any value in From Header !! the field is
>> > empty
>> > - On my mobile phone I receive the MMS with +123456789 from value
>> >
>> > I think because the From value inside pcap trace is empty then MMS-C put
>> the
>> > Sender modem MSISDN.
>> > So is there a problem when the sender is not a MSISDN address ?
>> >
>> > In mmlib/mms_util.c I found:
>> >
>> > if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
>> > "/TYPE=PLMN") == 0)) {
>> > mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
>> > octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") :
>> > octstr_imm(""));
>> >   } else if (typ)
>> > octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
>> >   else
>> > octstr_append(*address, keep_suffix ? octstr_imm("@unknown") :
>> > octstr_imm(""));
>> >   octstr_destroy(typ);
>> > }
>> >
>> > Not being an expert in C I wonder if Mbuni is able to replace a MSISDN
>> > address by a string and why it should add '@unknown' after the string.
>> >
>> > In any case even with this it don't seems to work as my From field value
>> is
>> > empty...
>> >
>> > Maybe some Mbuni experts a some clues about this ?
>> >
>> > Regards,
>> >
>> > Emmanuel
>> >
>> > 2010/8/19 Alvaro Cornejo 
>> >>
>> >> Emmanuel
>> >>
>> >> Don't know much about mbuni, but for sms messaging with gsm modems it
>> >> is no possible to set the &From variable. It allways will be the SIM
>> >> phone number (MSISDN). This feature is restricted by the operators in
>> >> general. You can do that with SMPP.
>> >>
>> >> As you connect through GPRS, it might be different.
>> >>
>> >> Better ask your provider if it is possible.
>> >>
>> >> Regards
>> >>
>> >> Alvaro
>> >>
>> >>
>> |-|
>> >> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
>> >> celular y Nextel
>> >> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
>> >> SMS y GPRS online
>> >>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
>> >> www.pravcom.com
>> >>
>> >>
>> >>
>> >> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
>> >>  wrote:
>> >> > One question about the sender value in mmsbox:
>> >> >
>> >> > Mbuni CVS + GPRS modem as mmsc.
>> >> >
>> >> > How mmsbox handle the From value &from if the value is not an MSISDN
>> >> > like
>> >> > +x/TYPE=PLMN ?
>> >> > I do see in logs that mbuni seems to send a MMS with my string value
>> in
>> >> > From
>> >> > Header BUT:
>> >> > - From value is empty in a pcap trace token when mmsbox sent the MMS
>> to
>> >> > MMSC
>> >> > - I receive on my destination mobile sender info like my real modem
>> SIM
>> >> > number ie +123456789
>> >> >
>> >> > My purpose is to send a MMS with &from= received like this on
>> >> > destination mobile for insta

Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-19 Thread Emmanuel CHANSON
I tested with "1010" as sender in the URL and 1010 also configured in
fake-sender that overide the from url value:

In mbuni log I see:

bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS Send:
*From 1010,* to +687773502/TYPE=PLMN, msgsize=25088:
msgid=[B16C7CA0902E3919037AA6780EA962E2]

BUT in the pcap trace I have that:
...
Subject: Test 1010
X-Mms-Expiry: Aug  26, 2010 15:22:21.0
Date: Aug 20, 2010 02:22:21.0
*From: *
To: +*msisdn*/TYPE=PLMN
...

And MMS is received with the sender MSISDN instead of 1010.

BR,

Emmanuel

2010/8/19 Alvaro Cornejo 

> Have you tried a numeric From?
>
> The @unknown seems to come from the 2nd else in the code you quoted.
> This means that "Sender" is valued as false in
>
> if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
> "/TYPE=PLMN") == 0))  and in if(typ)...
>
> What does that means... no idea
>
> Regards
>
> Alvaro
>
>
> |-|
> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
> celular y Nextel
> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
> SMS y GPRS online
>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
> www.pravcom.com
>
>
>
> On Thu, Aug 19, 2010 at 3:53 PM, Emmanuel CHANSON
>  wrote:
> > Yes, I know that in SMS messaging it is restricted,
> >
> > but in MMS I am quite sure it is possible by setting the From header
> inside
> > a MMS to a given string. (test done in another context without Mbuni).
> > The thing is that I ask some info about how Mbuni handle these different
> > parameters (sender, faked-sender, ...) because I have a behavior I don't
> > understand where:
> >
> > - I have the string let's say Sender set in my config file,
> > - I send my MMS
> > - Inside mbuni logs I do see 'from sen...@unknown'
> > - In the pcap trace I don't see any value in From Header !! the field is
> > empty
> > - On my mobile phone I receive the MMS with +123456789 from value
> >
> > I think because the From value inside pcap trace is empty then MMS-C put
> the
> > Sender modem MSISDN.
> > So is there a problem when the sender is not a MSISDN address ?
> >
> > In mmlib/mms_util.c I found:
> >
> > if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
> > "/TYPE=PLMN") == 0)) {
> > mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
> > octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") :
> > octstr_imm(""));
> >   } else if (typ)
> > octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
> >   else
> > octstr_append(*address, keep_suffix ? octstr_imm("@unknown") :
> > octstr_imm(""));
> >   octstr_destroy(typ);
> > }
> >
> > Not being an expert in C I wonder if Mbuni is able to replace a MSISDN
> > address by a string and why it should add '@unknown' after the string.
> >
> > In any case even with this it don't seems to work as my From field value
> is
> > empty...
> >
> > Maybe some Mbuni experts a some clues about this ?
> >
> > Regards,
> >
> > Emmanuel
> >
> > 2010/8/19 Alvaro Cornejo 
> >>
> >> Emmanuel
> >>
> >> Don't know much about mbuni, but for sms messaging with gsm modems it
> >> is no possible to set the &From variable. It allways will be the SIM
> >> phone number (MSISDN). This feature is restricted by the operators in
> >> general. You can do that with SMPP.
> >>
> >> As you connect through GPRS, it might be different.
> >>
> >> Better ask your provider if it is possible.
> >>
> >> Regards
> >>
> >> Alvaro
> >>
> >>
> |-|
> >> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
> >> celular y Nextel
> >> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
> >> SMS y GPRS online
> >>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
> >> www.pravcom.com
> >>
> >>
> >>
> >> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
> >>  wrote:
> >> > One question about the sender value in mmsbox:
> >> >
> >> > Mbuni CVS + GPRS modem as mmsc.
> >> >
> >> > How mmsbox handle the From value &from if the value is not an MSISDN
> >> > like
> >> > +x/TYPE=PLMN ?
> >> > I do see in logs that mbuni seems to send a MMS with my string value
> in
> >> > From
> >> > Header BUT:
> >> > - From value is empty in a pcap trace token when mmsbox sent the MMS
> to
> >> > MMSC
> >> > - I receive on my destination mobile sender info like my real modem
> SIM
> >> > number ie +123456789
> >> >
> >> > My purpose is to send a MMS with &from= received like this on
> >> > destination mobile for instance recipient will receive a MMS coming
> from
> >> > MYCOMPANY.
> >> >
> >> > In mmsbox.conf:
> >> > 
> >> > group = send-mms-user
> >> > username = tester
> >> > password = foobar
> >> > faked-sender = Sender
> >> >
> >> > Test s

Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-19 Thread Alvaro Cornejo
Have you tried a numeric From?

The @unknown seems to come from the 2nd else in the code you quoted.
This means that "Sender" is valued as false in

if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
"/TYPE=PLMN") == 0))  and in if(typ)...

What does that means... no idea

Regards

Alvaro

|-|
Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
celular y Nextel
en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
SMS y GPRS online
              Visitenos en www.perusms.NET www.smsglobal.com.mx y
www.pravcom.com



On Thu, Aug 19, 2010 at 3:53 PM, Emmanuel CHANSON
 wrote:
> Yes, I know that in SMS messaging it is restricted,
>
> but in MMS I am quite sure it is possible by setting the From header inside
> a MMS to a given string. (test done in another context without Mbuni).
> The thing is that I ask some info about how Mbuni handle these different
> parameters (sender, faked-sender, ...) because I have a behavior I don't
> understand where:
>
> - I have the string let's say Sender set in my config file,
> - I send my MMS
> - Inside mbuni logs I do see 'from sen...@unknown'
> - In the pcap trace I don't see any value in From Header !! the field is
> empty
> - On my mobile phone I receive the MMS with +123456789 from value
>
> I think because the From value inside pcap trace is empty then MMS-C put the
> Sender modem MSISDN.
> So is there a problem when the sender is not a MSISDN address ?
>
> In mmlib/mms_util.c I found:
>
> if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
> "/TYPE=PLMN") == 0)) {
>     mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
>     octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") :
> octstr_imm(""));
>   } else if (typ)
>     octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
>   else
>     octstr_append(*address, keep_suffix ? octstr_imm("@unknown") :
> octstr_imm(""));
>   octstr_destroy(typ);
> }
>
> Not being an expert in C I wonder if Mbuni is able to replace a MSISDN
> address by a string and why it should add '@unknown' after the string.
>
> In any case even with this it don't seems to work as my From field value is
> empty...
>
> Maybe some Mbuni experts a some clues about this ?
>
> Regards,
>
> Emmanuel
>
> 2010/8/19 Alvaro Cornejo 
>>
>> Emmanuel
>>
>> Don't know much about mbuni, but for sms messaging with gsm modems it
>> is no possible to set the &From variable. It allways will be the SIM
>> phone number (MSISDN). This feature is restricted by the operators in
>> general. You can do that with SMPP.
>>
>> As you connect through GPRS, it might be different.
>>
>> Better ask your provider if it is possible.
>>
>> Regards
>>
>> Alvaro
>>
>> |-|
>> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
>> celular y Nextel
>> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
>> SMS y GPRS online
>>               Visitenos en www.perusms.NET www.smsglobal.com.mx y
>> www.pravcom.com
>>
>>
>>
>> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
>>  wrote:
>> > One question about the sender value in mmsbox:
>> >
>> > Mbuni CVS + GPRS modem as mmsc.
>> >
>> > How mmsbox handle the From value &from if the value is not an MSISDN
>> > like
>> > +x/TYPE=PLMN ?
>> > I do see in logs that mbuni seems to send a MMS with my string value in
>> > From
>> > Header BUT:
>> > - From value is empty in a pcap trace token when mmsbox sent the MMS to
>> > MMSC
>> > - I receive on my destination mobile sender info like my real modem SIM
>> > number ie +123456789
>> >
>> > My purpose is to send a MMS with &from= received like this on
>> > destination mobile for instance recipient will receive a MMS coming from
>> > MYCOMPANY.
>> >
>> > In mmsbox.conf:
>> > 
>> > group = send-mms-user
>> > username = tester
>> > password = foobar
>> > faked-sender = Sender
>> >
>> > Test sendmms command:
>> > -
>> > lynx -dump
>> >
>> > "http://localhost:10003/?username=tester&password=foobar&mmsc=nokiaphone&from=Sender&to=%2Bx/TYPE=PLMN&subject=Test&content-url=http://localhost/mms/mms-2.smil";
>> >
>> > mmsbox.log:
>> > ...
>> > bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS
>> > Send:
>> > From sen...@unknown, to +x/TYPE=PLMN, msgsize=96880:
>> > msgid=[725F16D40E89735B8F6FE52B698E4CB4]
>> >
>> > Regards,
>> >
>> > Emmanuel
>> >
>> >
>> > ___
>> > Users mailing list
>> > [email protected]
>> > http://lists.mbuni.org/mailman/listinfo/users
>> >
>> >
>> ___
>> Users mailing list
>> [email protected]
>> http://lists.mbuni.org/mailman/listinfo/users
>
>
>
> --
> Emmanuel
>
>

Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-19 Thread Emmanuel CHANSON
Yes, I know that in SMS messaging it is restricted,

but in MMS I am quite sure it is possible by setting the *From* header
inside a MMS to a given string. (test done in another context without
Mbuni).
The thing is that I ask some info about how Mbuni handle these different
parameters (sender, faked-sender, ...) because I have a behavior I don't
understand where:

- I have the string let's say *Sender* set in my config file,
- I send my MMS
- Inside mbuni logs I do see *'from sen...@unknown*'
- In the pcap trace I don't see any value in *From* Header !! the field is
empty
- On my mobile phone I receive the MMS with +123456789 from value

I think because the *From* value inside pcap trace is empty then MMS-C put
the Sender modem MSISDN.
So is there a problem when the sender is not a MSISDN address ?

In mmlib/mms_util.c I found:

*if (isphonenum(*address) || (typ && octstr_str_case_compare(typ,
"/TYPE=PLMN") == 0)) {
mms_normalize_phonenum(address, unified_prefix, strip_prefixes);
octstr_append(*address, keep_suffix ? octstr_imm("/TYPE=PLMN") :
octstr_imm(""));
  } else if (typ)
octstr_append(*address, keep_suffix ? typ : octstr_imm(""));
  else
octstr_append(*address, keep_suffix ? octstr_imm("@unknown") :
octstr_imm(""));
  octstr_destroy(typ);
}*

Not being an expert in C I wonder if Mbuni is able to replace a MSISDN
address by a string and why it should add '@unknown' after the string.

In any case even with this it don't seems to work as my From field value is
empty...

Maybe some Mbuni experts a some clues about this ?

Regards,

Emmanuel

2010/8/19 Alvaro Cornejo 

> Emmanuel
>
> Don't know much about mbuni, but for sms messaging with gsm modems it
> is no possible to set the &From variable. It allways will be the SIM
> phone number (MSISDN). This feature is restricted by the operators in
> general. You can do that with SMPP.
>
> As you connect through GPRS, it might be different.
>
> Better ask your provider if it is possible.
>
> Regards
>
> Alvaro
>
> |-|
> Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
> celular y Nextel
> en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
> SMS y GPRS online
>   Visitenos en www.perusms.NET www.smsglobal.com.mx y
> www.pravcom.com
>
>
>
> On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
>  wrote:
> > One question about the sender value in mmsbox:
> >
> > Mbuni CVS + GPRS modem as mmsc.
> >
> > How mmsbox handle the From value &from if the value is not an MSISDN like
> > +x/TYPE=PLMN ?
> > I do see in logs that mbuni seems to send a MMS with my string value in
> From
> > Header BUT:
> > - From value is empty in a pcap trace token when mmsbox sent the MMS to
> MMSC
> > - I receive on my destination mobile sender info like my real modem SIM
> > number ie +123456789
> >
> > My purpose is to send a MMS with &from= received like this on
> > destination mobile for instance recipient will receive a MMS coming from
> > MYCOMPANY.
> >
> > In mmsbox.conf:
> > 
> > group = send-mms-user
> > username = tester
> > password = foobar
> > faked-sender = Sender
> >
> > Test sendmms command:
> > -
> > lynx -dump
> > "
> http://localhost:10003/?username=tester&password=foobar&mmsc=nokiaphone&from=Sender&to=%2Bx/TYPE=PLMN&subject=Test&content-url=http://localhost/mms/mms-2.smil
> "
> >
> > mmsbox.log:
> > ...
> > bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS
> Send:
> > From sen...@unknown, to +x/TYPE=PLMN, msgsize=96880:
> > msgid=[725F16D40E89735B8F6FE52B698E4CB4]
> >
> > Regards,
> >
> > Emmanuel
> >
> >
> > ___
> > Users mailing list
> > [email protected]
> > http://lists.mbuni.org/mailman/listinfo/users
> >
> >
> ___
> Users mailing list
> [email protected]
> http://lists.mbuni.org/mailman/listinfo/users
>



-- 
Emmanuel

CHANSON Emmanuel
Mobile Nouvelle-Calédonie: +687.77.35.02
Mobile France: +33 (0) 6.68.03.89.56
@email : [email protected]
___
Users mailing list
[email protected]
http://lists.mbuni.org/mailman/listinfo/users


Re: [Users] From Header value & mmsbox with MM1 m-send-req

2010-08-19 Thread Alvaro Cornejo
Emmanuel

Don't know much about mbuni, but for sms messaging with gsm modems it
is no possible to set the &From variable. It allways will be the SIM
phone number (MSISDN). This feature is restricted by the operators in
general. You can do that with SMPP.

As you connect through GPRS, it might be different.

Better ask your provider if it is possible.

Regards

Alvaro
|-|
Envíe y Reciba Datos y mensajes de Texto (SMS) hacia y desde cualquier
celular y Nextel
en el Perú, México y en mas de 180 paises. Use aplicaciones 2 vias via
SMS y GPRS online
              Visitenos en www.perusms.NET www.smsglobal.com.mx y
www.pravcom.com



On Wed, Aug 18, 2010 at 11:39 PM, Emmanuel CHANSON
 wrote:
> One question about the sender value in mmsbox:
>
> Mbuni CVS + GPRS modem as mmsc.
>
> How mmsbox handle the From value &from if the value is not an MSISDN like
> +x/TYPE=PLMN ?
> I do see in logs that mbuni seems to send a MMS with my string value in From
> Header BUT:
> - From value is empty in a pcap trace token when mmsbox sent the MMS to MMSC
> - I receive on my destination mobile sender info like my real modem SIM
> number ie +123456789
>
> My purpose is to send a MMS with &from= received like this on
> destination mobile for instance recipient will receive a MMS coming from
> MYCOMPANY.
>
> In mmsbox.conf:
> 
> group = send-mms-user
> username = tester
> password = foobar
> faked-sender = Sender
>
> Test sendmms command:
> -
> lynx -dump
> "http://localhost:10003/?username=tester&password=foobar&mmsc=nokiaphone&from=Sender&to=%2Bx/TYPE=PLMN&subject=Test&content-url=http://localhost/mms/mms-2.smil";
>
> mmsbox.log:
> ...
> bearerbox.c:1519  [MM7] [n/a] Sent MMSBox Outgoing Queue MMS Send:
> From sen...@unknown, to +x/TYPE=PLMN, msgsize=96880:
> msgid=[725F16D40E89735B8F6FE52B698E4CB4]
>
> Regards,
>
> Emmanuel
>
>
> ___
> Users mailing list
> [email protected]
> http://lists.mbuni.org/mailman/listinfo/users
>
>
___
Users mailing list
[email protected]
http://lists.mbuni.org/mailman/listinfo/users