You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issues/64 - registered_delivery should default to 0b00000001 (#72)
What:
- make `registered_delivery` default to `0b00000001`
Why:
- SMPP v3.4 supports 3 different types of delivery confirmations:
(i) SMSC Delivery Receipt (bits 1 and 0)
(ii) SME originated Acknowledgement (bits 3 and 2)
(iii) Intermediate Notification (bit 5)
Before this PR, the default used to be 0b00000101 which meant
we are trying to combine type (i) and type (ii) of delivery confirmation:
1. SMSC Delivery Receipt requested where final delivery outcome is delivery success or failure. - type (i)
2. SME Delivery Acknowledgement requested - type (ii)
With the new default of 0b00000001 we are only using type (i);
1. SMSC Delivery Receipt requested where final delivery outcome is delivery success or failure. - type (i)
- closes: #64
0 commit comments