do not set report folder, let status report files saved in incoming
report = /var/spool/sms/report
delaytime = 2
errorsleeptime = 10
blocktime = 180
autosplit = 3
The delays you’re experiencing with your ZTE MF636 modem and smsd could be caused by a few factors. Here’s how we can troubleshoot and potentially improve the processing speed:
1. Optimize Initialization Strings:
Redundant init lines: Your configuration has multiple init lines with similar commands. Try removing duplicates and keeping the most concise set.
Alternative AT+CPMS: The AT+CPMS="ME" command might be causing delays. Experiment with AT+CPMS="SM" to see if message storage reading improves.
2. Adjust Timeouts:
delaytime: This defines the interval between checking for new messages. A value of 2 seconds might be too frequent. Try increasing it to 5 or 10 seconds.
errorsleeptime: This defines the wait time after encountering an error. A value of 10 seconds might be unnecessarily long. Try reducing it to 5 seconds for faster retries.
3. Consider Alternative Modem Type:
Wavecom USB: While some users report success with this setting, ZTE modems might have a specific type. Check online resources or your modem manual for the recommended modem type in smsd.conf.
Here’s a revised configuration based on the suggestions above (remember to back up your original configuration):
Try removing redundant init lines and experiment with AT+CPMS=“SM”
init = ATZ
init2 = ATE0
Check online resources for the recommended modem type for ZTE MF636
modem_type = # Replace with the correct modem type
device = /dev/gsmmodem
baudrate = 19200
queues = modem1
smsc = +3097100000
decode_unicode_text = yes
incoming = yes`
Additional Tips:
Consult online resources and forums specific to ZTE MF636 and smsd for troubleshooting tips from other users.
Monitor the smsd logs (/var/log/sms/smsd.log) for any error messages that might indicate specific issues.
Remember to restart smsd after making any configuration changes. Hopefully, these suggestions help improve the processing speed of your smsd with the ZTE MF636 modem.