Not receiving SMS messages
|
(05-31-2020, 08:23 AM)Hi All,I wrote this script, will check all sms and delete from the modem. Wrote: #!/bin/bash
# This script will check all messages and delete all from the Modem
# Demetrius R. Paula Nov 2020
# Find the modem
modem=-1
for i in `seq 0 9`; do
mmcli -m $i
if [ $? -eq 0 ]; then
modem=$i
break;
fi
done
echo "Modem is $i"
## Check all received and sent sms and delete them from the modem.
mmcli --modem 0 --messaging-list-sms | grep -oP '(?<=SMS/).*(?=.(sent))' | while read -r line ; do
mmcli --modem 0 --messaging-delete-sms=$line
done
mmcli --modem 0 --messaging-list-sms | grep -oP '(?<=SMS/).*(?=.(received))' | while read -r line ; do
mmcli --modem 0 --messaging-delete-sms=$line
done
# Print the list of remaining SMS'
mmcli --modem $i --messaging-list-sms
hope it is helpful.
|
Messages In This Thread |
RE: Not receiving SMS messages - by demetrius - 11-24-2020, 12:43 PM
|
Possibly Related Threads… |
Thread |
Author |
Replies |
Views |
Last Post |
|
Unable to send messages with chatty |
user641 |
0 |
1,025 |
09-07-2022, 04:35 AM
Last Post: user641
|
|
Receiving SMS stopped working |
treebeard |
11 |
7,270 |
08-12-2022, 10:31 AM
Last Post: treebeard
|
|
Chatty - XMPP receiving photos - inline display doesn't work |
arkadione |
2 |
2,492 |
07-10-2022, 03:16 AM
Last Post: arkadione
|
|
Not receiving SMSs |
biketool |
1 |
1,694 |
04-17-2022, 05:11 AM
Last Post: biketool
|
|
GDM3 Receiving call on login screen |
d-.-b |
4 |
4,403 |
10-07-2021, 06:59 PM
Last Post: d-.-b
|
|
Best Way of Receiving Calls Without SIM (VOIP) |
lovepine88 |
16 |
15,025 |
10-07-2021, 12:38 AM
Last Post: AndyM
|
|
Pinephone not receiving SMS. SMS not showing on modem either. |
norbear |
4 |
5,931 |
03-27-2021, 11:43 AM
Last Post: norbear
|
|
Chat client is eating messages |
tecnocris |
0 |
1,503 |
03-06-2021, 10:14 AM
Last Post: tecnocris
|
|
Possible to disable display of SMS text messages? |
Zebulon Walton |
2 |
3,704 |
12-08-2020, 05:32 PM
Last Post: Zebulon Walton
|
|
Receiving Call During Sleep Experiment/Experience |
RTP |
1 |
3,350 |
11-05-2020, 03:47 PM
Last Post: dukla2000
|
Users browsing this thread: 3 Guest(s)