aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configs/users.conf.sample5
-rw-r--r--pbx/pbx_config.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/configs/users.conf.sample b/configs/users.conf.sample
index 0e3ca2237..b03d7d3ce 100644
--- a/configs/users.conf.sample
+++ b/configs/users.conf.sample
@@ -34,6 +34,10 @@ hassip = yes
;
hasiax = yes
;
+; Create H.323 friend
+;
+;hash323 = yes
+;
; Create manager entry
;
hasmanager = no
@@ -59,6 +63,7 @@ pickupgroup = 1
;hasvoicemail = yes
;hassip = yes
;hasiax = no
+;hash323 = no
;hasmanager = no
;callwaiting = no
;context = international
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index d76aa68db..b295c57d6 100644
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -1536,6 +1536,10 @@ static void pbx_load_users(void)
snprintf(tmp, sizeof(tmp), "IAX/%s", cat);
append_interface(iface, sizeof(iface), tmp);
}
+ if (ast_true(ast_config_option(cfg, cat, "hash323"))) {
+ snprintf(tmp, sizeof(tmp), "H323/%s", cat);
+ append_interface(iface, sizeof(iface), tmp);
+ }
hasexten = ast_config_option(cfg, cat, "hasexten");
if (hasexten && !ast_true(hasexten))
continue;