> > - use sqlbox. > > What's that? Is an additional module that allows you to send/receive sms through a database. Instead of calling smsbox for sending an sms, just do an insert on a specific table and sqlbox will take care of everything.
> > - hack kannel code to handle dlr as needed. > > This is what I have done with a three line patch: replace the > sql_remove with an sql_update. > In my opinion, an SQL table like the one for DLRs should only get > INSERTs and SELECTs and never UPDATEs and DELETEs. Also for the sake > of scalability. Not sure what you have done is right. As far as I understand, the table you define in kannel config handles kannel queue to smscs. If you disable deletes, your message "queue" will grow infinitly? You might want to duplicate inserts into a second table and updated that new table instead of poking with kannels queue table. Regards Alvaro