Hello,

I have a GSM/GPRS modem with a Nokia SIM card and service connected to a
Linux machine, and I want to receive and process SMS and MMS messages from
cell phones and send out SMS messages to cell phones as well, whether in
response to received messages or not. "Processing" includes, say, dumping
content in received SMS into a database and replying accordingly with SMS,
or storing the picture and text from received MMS somewhere and replying
accordingly with SMS.

Are Mbuni and Kannel the correct frameworks to use? I read in the mailing
list archives (from a 2006 post) that this is not a proper use for Mbuni,
but if this is the case then I am confused as to the point of Mbuni.

I currently have Kannel receiving and responding to SMS messages, but am
unable to get anything working with Mbuni. I run bearerbox, smsbox, and
wapbox with the following config file (kannel.conf), then mmsbox with the
config file below (mmsbox.conf), but when the GSM modem receives an SMS
notification of MMS message Kannel just runs its default SMS service and
Mbuni has nothing to do with it, and that's that.

I think I am still confused about how MMS works, and what architecture I
need for my intended implementation (MMSC, VAS GW, etc?), let alone what
configuration settings I should be using. Any clarification would be
*greatly* appreciated at this point.

Thank you. Config files are below.

-----
#kannel.conf

group = core
admin-port = 13000
smsbox-port = 13001
wapbox-port = 13002
admin-password = bar
box-deny-ip = "*.*.*.*"
box-allow-ip = "127.0.0.1"

group = modems
id = enfora_spider
name = "Enabler-G Modem"
detect-string = "Enfora"
detect-string2 = "Enabler"
init-string = "AT+CNMI=2,1,0,0,0"
speed = 115200

group = smsc
smsc = at
smsc-id = Enfora
modemtype = enfora_spider
device = /dev/ttyUSB0

group = smsbox
bearerbox-host = 127.0.0.1
sendsms-port = 13013
global-sender = 13013

group = sendsms-user
username = tester
password = foobar

group = sms-service
keyword = repeat
text = "From: %p, Time: %t, Msg: %r"

group = sms-service
keyword = default
text = "No service specified"

group = wapbox
bearerbox-host = localhost
timer-freq = 10
map-url = "http://mmsc/* http://localhost:1981/*";

-----
#mmsbox.conf

group = core
log-file = log/mmsgw.log
log-level = 0
access-log = log/access.log

group = mbuni
name = "Project BudBurst MMSC"
host-alias = mmsc

group = mmsc
id = testone
group-id = mmc1
mmsc-url = http://mbuni:[EMAIL PROTECTED]:8080/eaif
incoming-username = user
incoming-password = pass
incoming-port = 10002
type = eaif

group = send-mms-user
username = tester
password = foobar
faked-sender = 100

group = mms-service
name = me
post-url = http://localhost/mmstest.php
catch-all = true
http-post-parameters = images[]=%i&text[]=%t
accept-x-mbuni-headers = true
text = "received"
keyword = test

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

Reply via email to