diff --git a/mbuni/doc/userguide.shtml b/mbuni/doc/userguide.shtml index b97eb66..7cb4136 100644 --- a/mbuni/doc/userguide.shtml +++ b/mbuni/doc/userguide.shtml @@ -448,25 +448,21 @@ Kannel in a non-standard location, you will need to supply the location to c

Mbuni consists of -4 programs: +3 programs:

which are by default installed in /usr/local/bin

-

mmsrelay is the main relay server of the MMSC. It routes +

mmsc is the MMSC component. It consists of the relay + server (mmsrelay), which routes incoming messages to email, other MMS gateways, MMS clients/handsets, -etc. It also manages routing messages to MMS clients -using WAP Push, sending of delivery reports, etc. -

- mmsproxy -provides the HTTP interface of the MMSC via which messages are -sent and received by MMS clients.

mmsfromemail is + and the client-facing MMSC interface (mmsproxy) via which messages are +sent and received by MMS clients (MM1 as well as MM7).

mmsfromemail is the email2MMS MMSC module.

mmsbox is the VAS gateway

@@ -534,8 +530,7 @@ is not very efficient but it works (which is important!)

operation. We look at the two usage scenarios below.

Running Mbuni as a MMSC

-

To run the MMSC, you must run (mmsrelay -and mmsproxy). mmsfromemail +

To run the MMSC, you must run the command mmsc. mmsfromemail should be called from your MTA (SMTP Mailer) to convert and deliver an MMS from an email sender. The order in which they are started is unimportant.

diff --git a/mbuni/extras/pgsql-queue/Readme.txt b/mbuni/extras/pgsql-queue/Readme.txt index 8bd5e00..f88597a 100644 --- a/mbuni/extras/pgsql-queue/Readme.txt +++ b/mbuni/extras/pgsql-queue/Readme.txt @@ -2,7 +2,7 @@ This module provides Queue management for mbuni using PostgreSQL as the storage To use it, you need only add two lines to the mbuni config 'mbuni' group: queue-manager-module = "/path_to/libmms_pgsql_queue.so" -queue-module-init-data = "number_of_db_connections:host=dbhost user=db_user password=dbpassword dbname=dbname" +queue-module-init-data = "host=dbhost user=db_user password=dbpassword dbname=dbname" Make sure the database you are trying to connect to has already been created and the relevant tables created using the supplied file "tables.sql". diff --git a/mbuni/mmsc/mmsc.c b/mbuni/mmsc/mmsc.c index e8aad29..4e9fd99 100644 --- a/mbuni/mmsc/mmsc.c +++ b/mbuni/mmsc/mmsc.c @@ -67,7 +67,7 @@ int main(int argc, char *argv[]) mms_cfg_destroy(cfg); if (!settings) - panic(0, "No global MMSC configuration!"); + panic(0, "No MMSC configuration!"); signal(SIGHUP, relog_now);