Skip to content

Instantly share code, notes, and snippets.

@tomysmile
Last active June 3, 2017 05:57
Show Gist options
  • Save tomysmile/ae75439a9e1bbce6b71e to your computer and use it in GitHub Desktop.
Save tomysmile/ae75439a9e1bbce6b71e to your computer and use it in GitHub Desktop.
Gammu: Configuring SMSD in OSX using MySQL Database

Configuring Gammu in OSX with MySQL

Requirements:

Step by step:

  • Check the sql files in here
$ cd /usr/share/doc/gammu/examples/sql

or from https://github.com/gammu/gammu/blob/master/docs/sql/mysql.sql

  • runs below commands:
$ wget https://raw.githubusercontent.com/gammu/gammu/master/docs/sql/mysql.sql
$ mysql -u root -p
mysql> create database gammu;
ok
mysql>quit

Create User for Gammu

$ mysql -u root -p
mysql> CREATE USER 'gammu'@'localhost' IDENTIFIED BY 'gammu';
mysql> CREATE USER 'gammu'@'%' IDENTIFIED BY 'gammu';
mysql> GRANT ALL PRIVILEGES ON gammu.* TO 'gammu'@'localhost' WITH GRANT OPTION;
mysql> GRANT ALL PRIVILEGES ON gammu.* TO 'gammu'@'%' WITH GRANT OPTION;
mysql> flush privileges;
mysql> quit;

Import from MySQL

$ mysql -u root -p gammu < mysql.sql
mysql> show tables;
  • Configure SMSDRC
$ sudo touch /etc/gammu-smsdrc
$ sudo nano /etc/gammu-smsdrc

—
# /etc/gammu-smsdrc

port = /dev/(your_device)
connection = (your_connection)
startinfo = yes
# Debugging
logformat = textall
# SMSD configuration, see gammu-smsdrc(5)
[smsd]
service = mysql
driver = native_mysql
deliveryreport = sms
logfile = /var/log/gammu/smsd.log
debuglevel = 255
pin = 1234
user = root #your mysql user
password = 123456789 #your mysql password
pc = localhost #Server Mysql
database = gammu #DB name
phoneid = modem_1
-

Running Gammu Daemon

Run gammu-smsd with this command on your terminal : (it will runs the daemon with config from /etc/gammu-smsdrc)

$ sudo gammu-smsd

or for specific configuration file

$ gammu-smsd -c ~/.gammu-smsdrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment