hello,
I've got a little question, about jasmin sms gateway
there are two jasmin sms boxes and when i trying to send sms with DELIVERY_RECEIPT
jasmin shows this errors
DeliveringFailed('Delivering failed, check (system_id) smpps logs for more details',)
and
Found no deliverer on system_id (system_id)
I checked pb.py
https://github.com/jookies/jasmin/blob/master/jasmin/protocols/smpp/pb.py if system_id in self.smpps.bound_connections:
deliverer = self.smpps.bound_connections[system_id].getNextBindingForDelivery()
else:
deliverer = None
if deliverer is None:
self.log.error('Found no deliverer on system_id %s', system_id)
defer.returnValue(False)
else:
if pickled:
pdu = pickle.loads(pdu)
there is system_id in smpp.bound connection list, but anyway self.smpps.bound_connections[system_id].getNextBindingForDelivery() is None
i think its a problem
thanks.