1
0
Fork 0
smsgateway/README.md

38 lines
1.0 KiB
Markdown
Raw Normal View History

2012-09-21 17:17:15 +00:00
SmsGateway
==========
SmsGateway is a JSON-RPC based SMS Gateway.
Features
--------
2012-09-25 17:20:56 +00:00
* Senders to support SMS sending as many ways as possible
2012-10-06 21:21:08 +00:00
* GnokiiSender to send using gnokii
* FileSender to store messages in files
2012-09-25 17:20:56 +00:00
* Authentication backends for authentication purposes
* DatabaseAuth for a PDO based backend
2012-10-06 21:21:08 +00:00
* FileAuth to store users and passwords in a shadow-like file
* NullAuth to accept everyone without a password (TODO)
2012-09-25 17:20:56 +00:00
* Logger backends for audit and message logging
* DatabaseLogger for PDO based logging
2012-10-06 21:21:08 +00:00
* FileLogger to log messages to files
2012-10-07 19:01:49 +00:00
Installation
------------
SmsGateway can be installed using [composer](http://getcomposer.org/):
$ php composer.phar create-project gergelypolonkai/smsgateway
Configuration
-------------
Currently, there are no configurable parts exist. My plans are:
* File paths for FileSender, FileAuth and FileLogger (currently these are
hard-coded)
* Executable path for GnokiiSender
* Database parameters for DatabaseSender, DatabaseAuth and DatabaseLogger