<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi, <br>
A few pointers:<br>
- For 0.9.x: Always read the README for each module, residing in the
module directory, for 0.10.x, see iptel.org/ser<br>
- In general, iptel.org is the best source of info<br>
<br>
Below is the relevant info from msilo's README.<br>
g-)<br>
<br>
1.5. Installation &amp; Running<br>
<br>
1.5.1. Database setup<br>
<br>
&nbsp;&nbsp; Before running SER with msilo, you have to setup the database<br>
&nbsp;&nbsp; table where the module will store the message. For that, if<br>
&nbsp;&nbsp; the table was not created by the installation script or you<br>
&nbsp;&nbsp; choose to install everything by yourself you can use the<br>
&nbsp;&nbsp; following SQL script (good for MySQL) as template. Database<br>
&nbsp;&nbsp; and table name can be set with module parameters so they can<br>
&nbsp;&nbsp; be changed, but the name of the columns must be as they are in<br>
&nbsp;&nbsp; the next SQL script.<br>
<br>
&nbsp;&nbsp; Example 1-10. msilo sql script<br>
...<br>
<br>
-- SQL script for MSILO module<br>
<br>
DROP DATABASE IF EXISTS msilo;<br>
<br>
-- create a database for storage<br>
CREATE DATABASE msilo;<br>
<br>
USE msilo;<br>
<br>
-- create the table<br>
CREATE TABLE silo(<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- unique ID per message<br>
&nbsp;&nbsp;&nbsp; mid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- src address - From URI<br>
&nbsp;&nbsp;&nbsp; src_addr VARCHAR(255) NOT NULL DEFAULT "",<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- dst address - To URI<br>
&nbsp;&nbsp;&nbsp; dst_addr VARCHAR(255) NOT NULL DEFAULT "",<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- r-uri == username@domain (for compatibility with old version)<br>
&nbsp;&nbsp;&nbsp; r_uri VARCHAR(255) NOT NULL DEFAULT "",<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- username<br>
&nbsp;&nbsp;&nbsp; username VARCHAR(64) NOT NULL DEFAULT "",<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- domain<br>
&nbsp;&nbsp;&nbsp; domain VARCHAR(128) NOT NULL DEFAULT "",<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- incoming time<br>
&nbsp;&nbsp;&nbsp; inc_time INTEGER NOT NULL DEFAULT 0,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- expiration time<br>
&nbsp;&nbsp;&nbsp; exp_time INTEGER NOT NULL DEFAULT 0,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- content type<br>
&nbsp;&nbsp;&nbsp; ctype VARCHAR(32) NOT NULL DEFAULT "text/plain",<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- body of the message<br>
&nbsp;&nbsp;&nbsp; body BLOB NOT NULL DEFAULT ""<br>
);<br>
<br>
<br>
Meidiana Ten wrote:
<blockquote
 cite="mid20061011104140.47165.qmail@web32408.mail.mud.yahoo.com"
 type="cite">
  <div>Hi there,</div>
  <div>I've read your post in mailing list about voice_silo table.</div>
  <div>I setup my SER 0.9.7 and I am trying to activate msilo module to
store voice message for offline user.</div>
  <div>I've checked the SER database and found that there is no table
named voice_silo.</div>
  <div>Please help me with the table description so I can create the
table.</div>
  <div>And please tell me how voicemail is store? ( I mean if it is
store directly into voice_silo table using x-lite or we must use other
application to input voice then store it into any folder). I really
need detail because I'm newbie in Linux.</div>
  <div>&nbsp;</div>
  <div>Thanx</div>
  <div>&nbsp;</div>
  <div>Meidiana</div>
  <p> </p>
  <hr size="1">Do you Yahoo!?<br>
Get on board. <a
 href="http://us.rd.yahoo.com/evt=40791/*http://advision.webevents.yahoo.com/mailbeta">You're
invited</a> to try the new Yahoo! Mail.
  <pre wrap="">
<hr size="4" width="90%">
_______________________________________________
Serusers mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Serusers@lists.iptel.org">Serusers@lists.iptel.org</a>
<a class="moz-txt-link-freetext" href="http://lists.iptel.org/mailman/listinfo/serusers">http://lists.iptel.org/mailman/listinfo/serusers</a>
  </pre>
</blockquote>
</body>
</html>