Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information