1
0
Fork 0
smsgateway/README.md

37 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
2012-10-08 11:40:21 +00:00
* DatabaseAuth for a PDO based backend (non-working yet)
2012-10-06 21:21:08 +00:00
* FileAuth to store users and passwords in a shadow-like file
2012-10-08 11:40:21 +00:00
* NullAuth to accept everyone without a password
2012-09-25 17:20:56 +00:00
* Logger backends for audit and message logging
2012-10-08 11:40:21 +00:00
* DatabaseLogger for PDO based logging (non-working yet)
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
-------------
2012-10-08 11:40:21 +00:00
Currently, there are no configurable parts exist, everything is hard-coded.
My plans are:
2012-10-07 19:01:49 +00:00
2012-10-08 11:40:21 +00:00
* File paths for FileSender, FileAuth and FileLogger
2012-10-07 19:01:49 +00:00
* Executable path for GnokiiSender
* Database parameters for DatabaseSender, DatabaseAuth and DatabaseLogger