Gammu/Wammu may not be able to retrieve dates for sent messages, only received messages.
MMS messages may not be able to be exported using Gammu/Wammu with some phones. If you don't see MMS in the exported messages, you may be able to save the message attachments to the phone's storage and copy them to a PC via a USB cable.
ⓘ This generates an XML export file which differs from the Gammu export file format
ⓘ This method will appear to export a fewer number of messages, but that's because it combines multi-part messages when exporting
-
Docker
-
Add the user to the dialout group
sudo usermod -a -G dialout $USER newgrp dialout
-
(Optional) x11docker
-
Set up the phone
This will depend on the phone, e.g. for the LG 840G (https://www.howardforums.com/showthread.php/1843461-LG305C-LG306G-issues/page12):
-
Go into the service mode of the phone
In the phone dialer, dial 3845#*840#
-
Scroll down to USB Connection Mode and select it
-
Select Data Service
ⓘ This will need to be done every time you wish to connect this particular phone to Gammu
-
-
Plug the phone into a USB port of the PC
-
(Optional) Create a temporary directory, e.g.
mkdir tmp-wammu
-
Open a terminal and go to the directory where you want to save the messages
-
Open Wammu using Docker
e.g. using x11docker:
x11docker ghcr.io/bmaupin/wammu wammu --share /dev/ttyACM0 --share "$PWD" --user=RETAIN
or from Docker Hub:
x11docker bmaupin/wammu wammu --share /dev/ttyACM0 --share "$PWD" --user=RETAIN
The Dockerfile used for this image is here for reference or if you'd prefer to build it locally:
FROM ubuntu:18.04 WORKDIR /workdir RUN apt update && \ apt -y install python-six wammu RUN useradd -ms /bin/bash wammu && \ usermod -a -G dialout wammu USER wammu
-
Configure the phone
-
Do you want to configure phone connection now? > Yes > Next
-
Configure the phone as needed, e.g. for LG 840G:
- Configuration style > Guided configuration > Next
- Connection type > USB cable > Next
- Phone type > None of the above > Next
- Connection type > AT based > Next
- Driver to use > Generic AT over serial line or it's emulation > Next
- Please enter device where phone is accessible > select /dev/ttyACM0 from dropdown > Next > Next > Finish
-
-
Connect the phone
Phone > Connect
-
Export SMS
-
Retrieve > Messages
-
Backups > Export messages to XML
-
Browse to the directory where you opened Wammu from and give the file a name
-
(Gammu to Android SMS converter)
dateenc
field
- Ruby
-
Download and fix the script
https://gist.githubusercontent.com/kares/1999289/raw/f84f964ef5036baecf9d0fe5144f13b1ebfcf1a9/gammusms2android.rb chmod +x gammusms2android.rb sed -i 's/evn/env/' gammusms2android.rb
-
Run the conversion script, e.g.
./gammusms2android.rb wammu-sms-backup.xml > wammu-sms-converted.xml
If you get an error, it may be because sent messages don't have a
dateenc
field. -
Import the messages to an Android phone using SMS Backup & Restore
- Gammu (e.g.
sudo apt install gammu
) - Add the user to the dialout group (see above)
-
Follow the steps above under Set up the phone
-
Plug the phone into a USB port of the PC
-
Configure the Gammu connection to the phone
gammu-detect > ~/.gammurc
-
Make sure Gammu can connect to the phone
gammu identify
e.g.
$ gammu identify Device : /dev/ttyACM0 Manufacturer : LG ELECTRONICS Model : unknown (LG840G) Firmware : LG840G-.... 1 [JUL 31 2012 22:00:00] IMEI : 873624396293243 SIM IMSI : 544948444768289
-
Download SMS from the phone
gammu backupsms gammu-sms-backup.txt
e.g.
$ gammu backupsms gammu-sms-backup.txt Delete each sms after backup? (yes/no/ALL/ONLY/NONE) no Backup sms from folder "Inbox" (SIM)? (yes/no/ALL/ONLY/NONE) yes Backup sms from folder "Outbox" (SIM)? (yes/no/ALL/ONLY/NONE) yes Backup sms from folder "Inbox"? (yes/no/ALL/ONLY/NONE) yes Backup sms from folder "Outbox"? (yes/no/ALL/ONLY/NONE) yes
(Transferring Text Messages (SMS) from Nokia to Android)
- Perl
-
Download and extract the conversion script
wget http://web.archive.org/web/20150411011010if_/http://archive.ginkel.com/sms-gammu2android-0.1.tar.gz tar -xvf sms-gammu2android-0.1.tar.gz
-
Fix date parsing
After this section:
if (/^Sent = (.*)/) { $time = str2time($1);
Add this section:
} elsif (/^DateTime = (.*)/) { $time = str2time($1);
-
Run the script, e.g.
./sms-gammu2android-0.1/sms-gammu2android gammu-sms-backup.txt > gammu-sms-converted.xml
-
Import the messages to an Android phone using SMS Backup & Restore
-
List the SMS folders
gammu getsmsfolders
-
Get a message from a folder
gammu getsms FOLDER_NUMBER MESSAGE_NUMBER
- Use folder number from the previous step
- Messages start at index 1
ⓘ You may find that specifying a folder returns messages for another folder. E.g. if Outbox is folder 4,
gammu getsms 4 1
may give you the first message from Inbox (folder 3). If this happens, getting messages from folder 3 or 4 will always return the same messages. The Outbox messages will be mixed in with the Inbox messages. For example:$ gammu getsmsfolders 1. " Inbox", SIM memory, Inbox folder 2. " Outbox", SIM memory, Outbox folder 3. " Inbox", phone memory, Inbox folder 4. " Outbox", phone memory, Outbox folder $ gammu getsms 3 1 Location 100001, folder "Inbox", phone memory, Inbox folder SMS message ... $ gammu getsms 4 1 Location 100001, folder "Inbox", phone memory, Inbox folder SMS message ... $ gammu getsms 4 3 Location 100003, folder "Outbox", phone memory SMS message ... $ gammu getsms 4 10 Location 100010, folder "Inbox", phone memory, Inbox folder SMS message