Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
asterisk:realtime-mysql-views [2007/03/21 18:48] – 74.67.56.138 | asterisk:realtime-mysql-views [Unknown date] (current) – external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== OpenSER to Asterisk Realtime Views for MySQL ====== | ||
+ | ==== Alter the OpenSER Tables to Work with Asterisk ==== | ||
+ | |||
+ | This is the easiest way to integrate them, in the future I will change this to use groups. | ||
+ | |||
+ | < | ||
+ | USE openser; | ||
+ | ALTER TABLE subscriber | ||
+ | ADD vmail_password varchar(40) NULL, | ||
+ | ADD vmail BOOL DEFAULT TRUE; | ||
+ | </ | ||
+ | |||
+ | ==== Create the Asterisk Database ==== | ||
+ | < | ||
+ | CREATE DATABASE asterisk; | ||
+ | USE asterisk; | ||
+ | </ | ||
+ | |||
+ | ==== Grant Permissions to Asterisk User ==== | ||
+ | This allows asterisk to log in per your settings in the asterisk configuration. | ||
+ | < | ||
+ | GRANT ALL ON asterisk.* to asterisk@yourhostoriphere IDENTIFIED BY ' | ||
+ | </ | ||
+ | |||
+ | ==== Voicemail Users View ==== | ||
+ | This creates a view that maps every user with the vmail column set to true in openser.subscriber have access to voicemail. | ||
+ | < | ||
+ | CREATE VIEW voicemail AS | ||
+ | SELECT | ||
+ | | ||
+ | ' | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | NULL as pager, | ||
+ | | ||
+ | FROM openser.subscriber | ||
+ | </ | ||
+ | |||
+ | Note: for openser 1.2.0 I had to change " | ||
+ | |||
+ | ===== SIP Users View ===== | ||
+ | In this view, you can change the type from a static ' | ||
+ | < | ||
+ | CREATE VIEW sip AS | ||
+ | SELECT | ||
+ | | ||
+ | ' | ||
+ | NULL as secret, | ||
+ | ' | ||
+ | | ||
+ | ' | ||
+ | | ||
+ | ' | ||
+ | ' | ||
+ | NULL as fromuser, | ||
+ | NULL as authuser, | ||
+ | NULL as fromdomain, | ||
+ | NULL as insecure, | ||
+ | ' | ||
+ | NULL as disallow, | ||
+ | NULL as allow, | ||
+ | NULL as restrictcid, | ||
+ | NULL as ipaddr, | ||
+ | NULL as port, | ||
+ | NULL as regseconds | ||
+ | FROM openser.subscriber; | ||
+ | </ | ||
+ | |||
+ | |||
+ | Mail me at mikebwilliams@gmail.com. |