Index: head/net/freeswitch/Makefile =================================================================== --- head/net/freeswitch/Makefile (revision 507515) +++ head/net/freeswitch/Makefile (revision 507516) @@ -1,142 +1,173 @@ # Created by: Corey Smith # $FreeBSD$ PORTNAME= freeswitch -PORTVERSION= 1.8.1 -PORTREVISION= 2 +PORTVERSION= 1.8.5 CATEGORIES= net MASTER_SITES= http://files.freeswitch.org/releases/freeswitch/ \ http://files.freeswitch.org/releases/sounds/:sounds DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER= corsmith@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Multi-protocol soft switch for telephony applications LICENSE= MPL11 ONLY_FOR_ARCHS= amd64 LIB_DEPENDS= libsqlite3.so:databases/sqlite3 \ libcurl.so:ftp/curl \ libpcre.so:devel/pcre \ libspeexdsp.so:audio/speexdsp \ libspeex.so:audio/speex \ libldns.so:dns/ldns \ libopus.so:audio/opus \ libsndfile.so:audio/libsndfile \ libfreetype.so:print/freetype2 \ libpng.so:graphics/png \ libjbig.so:graphics/jbigkit \ libtiff.so:graphics/tiff USES= gmake iconv jpeg libedit libtool lua perl5 pkgconfig shebangfix ssl tar:xz USE_LDCONFIG= yes USE_RC_SUBR= freeswitch + SHEBANG_FILES= scripts/fsxs.in CONFLICTS_BUILD= xmlrpc-c-* GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig \ --enable-zrtp CFLAGS+= -Wno-error USERS= ${PORTNAME} GROUPS= ${USERS} SUB_FILES= pkg-message -OPTIONS_DEFINE= ALL_MODULES X11 EXAMPLES -OPTIONS_DEFAULT= 8K 16K ENGLISH +OPTIONS_DEFINE= ALL_MODULES X11 EXAMPLES PGSQL +OPTIONS_DEFAULT= 8K 16K ENGLISH PGSQL OPTIONS_MULTI= BITRATE LANGUAGE OPTIONS_MULTI_BITRATE= 8K 16K 32K 48K -OPTIONS_MULTI_LANGUAGE= ENGLISH FRENCH RUSSIAN +OPTIONS_MULTI_LANGUAGE= CHINESE_HK CHINESE_SIM BRAZILIAN ENGLISH ENGLISH_CA FRENCH_CA RUSSIAN SWEDISH OPTIONS_SUB= yes NO_OPTIONS_SORT= yes ALL_MODULES_DESC= Build all modules -X11_DESC= graphics/ImageMagick[-nox11] dependency -8K_DESC= 8kHz Audio Files -16K_DESC= 16kHz Audio Files -32K_DESC= 32kHz Audio Files -48K_DESC= 48kHz Audio Files -ENGLISH_DESC= US English Language Sounds -FRENCH_DESC= French Canadian Language Sounds -RUSSIAN_DESC= Russian Language Sounds +X11_DESC= graphics/ImageMagick[-nox11] dependency +8K_DESC= 8kHz Audio Files +16K_DESC= 16kHz Audio Files +32K_DESC= 32kHz Audio Files +48K_DESC= 48kHz Audio Files +BRAZILIAN_DESC= Brazilian Portuguese Language Sounds +CHINESE_HK_DESC= Chinese Traditional Language Sounds +CHINESE_SIM_DESC= Chinese Simplified Language Sounds +ENGLISH_DESC= US English Language Sounds +ENGLISH_CA_DESC= Canadian English Language Sounds +FRENCH_CA_DESC= French Canadian Language Sounds +RUSSIAN_DESC= Russian Language Sounds +SWEDISH_DESC= Swedish Language Sounds ALL_MODULES_BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa \ ${LOCALBASE}/bin/aclocal:devel/automake ALL_MODULES_CONFLICTS_BUILD= apr ALL_MODULES_EXTRA_PATCHES= ${FILESDIR}/extrapatch-modules.conf ALL_MODULES_LIB_DEPENDS= libavformat.so:multimedia/ffmpeg \ libopencv_video.so:graphics/opencv \ libopencv_core.so:graphics/opencv-core \ libhiredis.so:databases/hiredis \ libmemcached.so:databases/libmemcached \ libSoundTouch.so:audio/soundtouch \ libasound.so:audio/alsa-lib \ libportaudio.so:audio/portaudio \ libmp4v2.so:multimedia/mp4v2 \ libshout.so:audio/libshout \ libmpg123.so:audio/mpg123 \ libmp3lame.so:audio/lame \ libnetsnmp.so:net-mgmt/net-snmp \ libvlc.so:multimedia/vlc \ libyaml.so:textproc/libyaml ALL_MODULES_RUN_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa ALL_MODULES_USE= XORG=x11 OPENLDAP=yes +ALL_MODULES_USES= autoreconf # required by mod_unimrcp 8K_VARS= BITRATES+=8000 16K_VARS= BITRATES+=16000 32K_VARS= BITRATES+=32000 48K_VARS= BITRATES+=48000 +PGSQL_USES= pgsql +PGSQL_CONFIGURE_ENABLE= core-pgsql-support + # install-strip causes `make stage' to fail: # libtool: install: strip --strip-debug /wrkdirs/usr/ports/net/freeswitch/work/stage/usr/local/lib/libfreeswitch.a # strip: file format not recognized # INSTALL_TARGET= install-strip .include .if ${PORT_OPTIONS:MALL_MODULES} .if ${PORT_OPTIONS:MX11} LIB_DEPENDS+= libMagickWand-6.so:graphics/ImageMagick6 .else LIB_DEPENDS+= libMagickWand-6.so:graphics/ImageMagick6-nox11 .endif .endif EDPRE= freeswitch-sounds EDPOST= 1.0.51.tar.gz +#Swedish lang sounds are older/lower version. +EDPOST_SV= 1.0.50.tar.gz EDPOST_MUSIC= 1.0.52.tar.gz .for rate in ${BITRATES} EXTRADISTFILES+= ${EDPRE}-music-${rate}-${EDPOST_MUSIC} +.if ${PORT_OPTIONS:MBRAZILIAN} +EXTRADISTFILES+= ${EDPRE}-pt-BR-karina-${rate}-${EDPOST} +.endif +.if ${PORT_OPTIONS:MCHINESE_SIM} +EXTRADISTFILES+= ${EDPRE}-zh-cn-sinmei-${rate}-${EDPOST} +.endif +.if ${PORT_OPTIONS:MCHINESE_HK} +EXTRADISTFILES+= ${EDPRE}-zh-hk-sinmei-${rate}-${EDPOST} +.endif .if ${PORT_OPTIONS:MENGLISH} EXTRADISTFILES+= ${EDPRE}-en-us-callie-${rate}-${EDPOST} .endif -.if ${PORT_OPTIONS:MFRENCH} +.if ${PORT_OPTIONS:MENGLISH_CA} +EXTRADISTFILES+= ${EDPRE}-en-ca-june-${rate}-${EDPOST} +.endif +.if ${PORT_OPTIONS:MFRENCH_CA} EXTRADISTFILES+= ${EDPRE}-fr-ca-june-${rate}-${EDPOST} .endif .if ${PORT_OPTIONS:MRUSSIAN} EXTRADISTFILES+= ${EDPRE}-ru-RU-elena-${rate}-${EDPOST} .endif +.if ${PORT_OPTIONS:MSWEDISH} +EXTRADISTFILES+= ${EDPRE}-sv-se-jakob-${rate}-${EDPOST_SV} +.endif .endfor .for distfile in ${EXTRADISTFILES} DISTFILES+= ${distfile}:sounds .endfor + +# Patch out mod_signalwire as it requires libks that isn't available, yet. +post-patch: + ${REINPLACE_CMD} -Ee 's|^(applications/mod_signalwire)|#\1|' \ + ${WRKSRC}/modules.conf post-install: ${MKDIR} ${STAGEDIR}${DATADIR}/sounds .for distfile in ${EXTRADISTFILES} ${TAR} --cd ${STAGEDIR}${DATADIR}/sounds -xf ${DISTDIR}/${distfile} .endfor ${FIND} ${STAGEDIR}${DATADIR}/sounds -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} ${RM} -r ${STAGEDIR}${ETCDIR} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/freeswitch/mod/mod_*.so \ ${STAGEDIR}${PREFIX}/lib/libfreeswitch.so.1.0.0 (cd ${WRKSRC}/conf && \ ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include Index: head/net/freeswitch/distinfo =================================================================== --- head/net/freeswitch/distinfo (revision 507515) +++ head/net/freeswitch/distinfo (revision 507516) @@ -1,35 +1,75 @@ -TIMESTAMP = 1536503355 -SHA256 (freeswitch-1.8.1.tar.xz) = f606de858e2df09a752f890e8f0fc41dae8dd888e3fe952e17a90e9ff9ed270e -SIZE (freeswitch-1.8.1.tar.xz) = 28449552 -SHA256 (freeswitch-sounds-music-8000-1.0.52.tar.gz) = 2491dcb92a69c629b03ea070d2483908a52e2c530dd77791f49a45a4d70aaa07 -SIZE (freeswitch-sounds-music-8000-1.0.52.tar.gz) = 14620675 -SHA256 (freeswitch-sounds-en-us-callie-8000-1.0.51.tar.gz) = e48a63bd69e6253d294ce43a941d603b02467feb5d92ee57a536ccc5f849a4a8 -SIZE (freeswitch-sounds-en-us-callie-8000-1.0.51.tar.gz) = 18657031 -SHA256 (freeswitch-sounds-fr-ca-june-8000-1.0.51.tar.gz) = eada67c61bd62ec420eb017df7524d10de286fba0c2da4800516b9f62c00e78c -SIZE (freeswitch-sounds-fr-ca-june-8000-1.0.51.tar.gz) = 13460178 -SHA256 (freeswitch-sounds-ru-RU-elena-8000-1.0.51.tar.gz) = d2679503eb1f4dc1716df5f8c4b5a7b721f087b17e96a02b1a92480311074c66 -SIZE (freeswitch-sounds-ru-RU-elena-8000-1.0.51.tar.gz) = 12678200 +TIMESTAMP = 1552339873 +SHA256 (freeswitch-1.8.5.tar.xz) = 503a551be5d6df06162ea9d98a952b6fb524852ce2352fe3ca3a36a76995b046 +SIZE (freeswitch-1.8.5.tar.xz) = 28816680 SHA256 (freeswitch-sounds-music-16000-1.0.52.tar.gz) = 93e0bf31797f4847dc19a94605c039ad4f0763616b6d819f5bddbfb6dd09718a SIZE (freeswitch-sounds-music-16000-1.0.52.tar.gz) = 27991592 SHA256 (freeswitch-sounds-en-us-callie-16000-1.0.51.tar.gz) = 324b1ab5ab754db5697963e9bf6a2f9c7aeb1463755e86bbb6dc4d6a77329da2 SIZE (freeswitch-sounds-en-us-callie-16000-1.0.51.tar.gz) = 37171776 +SHA256 (freeswitch-sounds-en-ca-june-16000-1.0.51.tar.gz) = 8d0091a2c98e5e06afea6bdd9f6cf2942e937786016037207b85757218b0f7a7 +SIZE (freeswitch-sounds-en-ca-june-16000-1.0.51.tar.gz) = 9417564 SHA256 (freeswitch-sounds-fr-ca-june-16000-1.0.51.tar.gz) = f942980ad359951ef3f69a324a3299ef86cdb4f8d2c62adaf73a1b95fb39fcc6 SIZE (freeswitch-sounds-fr-ca-june-16000-1.0.51.tar.gz) = 26591167 SHA256 (freeswitch-sounds-ru-RU-elena-16000-1.0.51.tar.gz) = e5a354cd10401208291f1d0e668a8cf8215d3cdcb93f2cbd4b83dd134425e60b SIZE (freeswitch-sounds-ru-RU-elena-16000-1.0.51.tar.gz) = 25072831 +SHA256 (freeswitch-sounds-pt-BR-karina-16000-1.0.51.tar.gz) = 80432c1027f57e464cd899ed92216936cf48a3993dc1c168b1be2545b8f97aed +SIZE (freeswitch-sounds-pt-BR-karina-16000-1.0.51.tar.gz) = 27665896 +SHA256 (freeswitch-sounds-sv-se-jakob-16000-1.0.50.tar.gz) = 52da670c651ff598815aed655644b44b891ee158f4c67d048da90056a36ddcf6 +SIZE (freeswitch-sounds-sv-se-jakob-16000-1.0.50.tar.gz) = 5391972 +SHA256 (freeswitch-sounds-zh-cn-sinmei-16000-1.0.51.tar.gz) = d849a5818ac6630d7c572d728dcd48176a6877defd8c239cb12011528e95c2cd +SIZE (freeswitch-sounds-zh-cn-sinmei-16000-1.0.51.tar.gz) = 596908 +SHA256 (freeswitch-sounds-zh-hk-sinmei-16000-1.0.51.tar.gz) = 0950e1d971b4f2ba4decd949406ccd0198fe9c686f246e175c70aafdf9783f30 +SIZE (freeswitch-sounds-zh-hk-sinmei-16000-1.0.51.tar.gz) = 553051 SHA256 (freeswitch-sounds-music-32000-1.0.52.tar.gz) = 4129788a638b77c5f85ff35abfcd69793d8aeb9d7833a75c74ec77355b2657a9 SIZE (freeswitch-sounds-music-32000-1.0.52.tar.gz) = 53007947 SHA256 (freeswitch-sounds-en-us-callie-32000-1.0.51.tar.gz) = 06fd6b8aec937556bf5303ab19a212c60daf00546d395cf269dfe324ac9c6838 SIZE (freeswitch-sounds-en-us-callie-32000-1.0.51.tar.gz) = 73012907 +SHA256 (freeswitch-sounds-en-ca-june-32000-1.0.51.tar.gz) = 8720b363995724792ff4723e1c8218ef95b27cb36208b7258f93bdda72123387 +SIZE (freeswitch-sounds-en-ca-june-32000-1.0.51.tar.gz) = 18422131 SHA256 (freeswitch-sounds-fr-ca-june-32000-1.0.51.tar.gz) = 8966a0c4daf666018cca6d8ba0f7708e251bed952b015d0ca6a0792341fe531b SIZE (freeswitch-sounds-fr-ca-june-32000-1.0.51.tar.gz) = 52040064 SHA256 (freeswitch-sounds-ru-RU-elena-32000-1.0.51.tar.gz) = a2b43f20246f376d55dd73d269eb238cbeb6a961a40716d2f79a5835344aabfc SIZE (freeswitch-sounds-ru-RU-elena-32000-1.0.51.tar.gz) = 49276482 +SHA256 (freeswitch-sounds-pt-BR-karina-32000-1.0.51.tar.gz) = e80a8653585cf9a4fe9cf1c0004279602542d15894ba13f2104d990cefdee567 +SIZE (freeswitch-sounds-pt-BR-karina-32000-1.0.51.tar.gz) = 53420983 +SHA256 (freeswitch-sounds-sv-se-jakob-32000-1.0.50.tar.gz) = 160de01069afa827c830595e521b53d95de4b415b48061fb843a1c4025fa17f2 +SIZE (freeswitch-sounds-sv-se-jakob-32000-1.0.50.tar.gz) = 10018608 +SHA256 (freeswitch-sounds-zh-cn-sinmei-32000-1.0.51.tar.gz) = 903fda016d2ac053ffe6bc2d4eaf816a66c8043ddc3383d48b7b14335d9ea98e +SIZE (freeswitch-sounds-zh-cn-sinmei-32000-1.0.51.tar.gz) = 1153330 +SHA256 (freeswitch-sounds-zh-hk-sinmei-32000-1.0.51.tar.gz) = 97d846ab06b5c84d2c46bec64560556acbfc88eb2080bd325b2c5259a5ae80d0 +SIZE (freeswitch-sounds-zh-hk-sinmei-32000-1.0.51.tar.gz) = 1061068 SHA256 (freeswitch-sounds-music-48000-1.0.52.tar.gz) = cc31cdb5b1bd653850bf6e054d963314bcf7c1706a9bf05f5a69bcbd00858d2a SIZE (freeswitch-sounds-music-48000-1.0.52.tar.gz) = 75551487 SHA256 (freeswitch-sounds-en-us-callie-48000-1.0.51.tar.gz) = cfc50f1d9b5d43cb87a9a2c0ce136c37ee85ac3b0e5be930d8dc2c913c4495aa SIZE (freeswitch-sounds-en-us-callie-48000-1.0.51.tar.gz) = 105319388 +SHA256 (freeswitch-sounds-en-ca-june-48000-1.0.51.tar.gz) = d2fce478a95b8d9500a544a00253c81d7e9f639e21980bd689910fac87f30871 +SIZE (freeswitch-sounds-en-ca-june-48000-1.0.51.tar.gz) = 27088410 SHA256 (freeswitch-sounds-fr-ca-june-48000-1.0.51.tar.gz) = abaea558fb5485abdd01d0b1186e03cf508f96ac90492814cc7ed4475e99a1e0 SIZE (freeswitch-sounds-fr-ca-june-48000-1.0.51.tar.gz) = 76666642 SHA256 (freeswitch-sounds-ru-RU-elena-48000-1.0.51.tar.gz) = ffd7d34907f6b6ac861e7898d2237ad763f242a17cd23811da28fd7745d3350d SIZE (freeswitch-sounds-ru-RU-elena-48000-1.0.51.tar.gz) = 72438142 +SHA256 (freeswitch-sounds-pt-BR-karina-48000-1.0.51.tar.gz) = 51ef9cac2dc4dd70d81c18f8e65bfd11de44207e8fac9961a68aa0d50d539870 +SIZE (freeswitch-sounds-pt-BR-karina-48000-1.0.51.tar.gz) = 78609528 +SHA256 (freeswitch-sounds-sv-se-jakob-48000-1.0.50.tar.gz) = 059889d75926b8e1f39e8d2c33f0e8f744a43c094bbe213a1caa9f26ae9a2799 +SIZE (freeswitch-sounds-sv-se-jakob-48000-1.0.50.tar.gz) = 14125474 +SHA256 (freeswitch-sounds-zh-cn-sinmei-48000-1.0.51.tar.gz) = 95b9064acec13a0a32b15ea0b44dc408094b4d9dee84b183c5d9150a77e9bb23 +SIZE (freeswitch-sounds-zh-cn-sinmei-48000-1.0.51.tar.gz) = 1680437 +SHA256 (freeswitch-sounds-zh-hk-sinmei-48000-1.0.51.tar.gz) = bd605be7e536e11f8f67229a95513ef3f177263587c5bca75ccae647f43962a1 +SIZE (freeswitch-sounds-zh-hk-sinmei-48000-1.0.51.tar.gz) = 1552162 +SHA256 (freeswitch-sounds-music-8000-1.0.52.tar.gz) = 2491dcb92a69c629b03ea070d2483908a52e2c530dd77791f49a45a4d70aaa07 +SIZE (freeswitch-sounds-music-8000-1.0.52.tar.gz) = 14620675 +SHA256 (freeswitch-sounds-en-us-callie-8000-1.0.51.tar.gz) = e48a63bd69e6253d294ce43a941d603b02467feb5d92ee57a536ccc5f849a4a8 +SIZE (freeswitch-sounds-en-us-callie-8000-1.0.51.tar.gz) = 18657031 +SHA256 (freeswitch-sounds-en-ca-june-8000-1.0.51.tar.gz) = 9aaa9d73cfecfdab7a1fa2d63d65b922b86a405ebb9a31b09b15e58a2af9260a +SIZE (freeswitch-sounds-en-ca-june-8000-1.0.51.tar.gz) = 4754438 +SHA256 (freeswitch-sounds-fr-ca-june-8000-1.0.51.tar.gz) = eada67c61bd62ec420eb017df7524d10de286fba0c2da4800516b9f62c00e78c +SIZE (freeswitch-sounds-fr-ca-june-8000-1.0.51.tar.gz) = 13460178 +SHA256 (freeswitch-sounds-ru-RU-elena-8000-1.0.51.tar.gz) = d2679503eb1f4dc1716df5f8c4b5a7b721f087b17e96a02b1a92480311074c66 +SIZE (freeswitch-sounds-ru-RU-elena-8000-1.0.51.tar.gz) = 12678200 +SHA256 (freeswitch-sounds-pt-BR-karina-8000-1.0.51.tar.gz) = ba9b5d7f97675c560823a6f94804a6716dac66efe203dd1779952518c3944a77 +SIZE (freeswitch-sounds-pt-BR-karina-8000-1.0.51.tar.gz) = 14142676 +SHA256 (freeswitch-sounds-sv-se-jakob-8000-1.0.50.tar.gz) = aa81c97b2954b36d5625d556d2c6764ee79d0c925284ba5ff4c60cb479936b48 +SIZE (freeswitch-sounds-sv-se-jakob-8000-1.0.50.tar.gz) = 2800728 +SHA256 (freeswitch-sounds-zh-cn-sinmei-8000-1.0.51.tar.gz) = 764985f39313426ef4a0ea4dd848f05faaced37b91b2c9a22f17d3f77235fae3 +SIZE (freeswitch-sounds-zh-cn-sinmei-8000-1.0.51.tar.gz) = 302713 +SHA256 (freeswitch-sounds-zh-hk-sinmei-8000-1.0.51.tar.gz) = 917d08c80969bdaf30f2a63a3b69f542b143614d42c6241503ac655d13864eb0 +SIZE (freeswitch-sounds-zh-hk-sinmei-8000-1.0.51.tar.gz) = 282597 Index: head/net/freeswitch/files/patch-ffmpeg4 =================================================================== --- head/net/freeswitch/files/patch-ffmpeg4 (revision 507515) +++ head/net/freeswitch/files/patch-ffmpeg4 (nonexistent) @@ -1,63 +0,0 @@ -avcodec.c:194:40: error: use of undeclared identifier 'FF_INPUT_BUFFER_PADDING_SIZE' -static uint8_t ff_input_buffer_padding[FF_INPUT_BUFFER_PADDING_SIZE] = { 0 }; - ^ -avformat.c:471:14: error: use of undeclared identifier 'CODEC_FLAG_LOOP_FILTER' - c->flags|=CODEC_FLAG_LOOP_FILTER; // flags=+loop - ^ -avformat.c:477:47: error: use of undeclared identifier 'ME_HEX' - av_opt_set_int(c->priv_data, "motion_est", ME_HEX, 0); - ^ -avformat.c:553:15: error: use of undeclared identifier 'CODEC_FLAG_GLOBAL_HEADER' - c->flags |= CODEC_FLAG_GLOBAL_HEADER; - ^ -avformat.c:638:31: error: use of undeclared identifier 'CODEC_CAP_VARIABLE_FRAME_SIZE' - if (c->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE) { - ^ - ---- src/mod/applications/mod_av/avcodec.c.orig 2017-07-13 12:07:30 UTC -+++ src/mod/applications/mod_av/avcodec.c -@@ -191,7 +191,7 @@ typedef struct h264_codec_context_s { - int hw_encoder; - } h264_codec_context_t; - --static uint8_t ff_input_buffer_padding[FF_INPUT_BUFFER_PADDING_SIZE] = { 0 }; -+static uint8_t ff_input_buffer_padding[AV_INPUT_BUFFER_PADDING_SIZE] = { 0 }; - - static switch_status_t buffer_h264_nalu(h264_codec_context_t *context, switch_frame_t *frame) - { ---- src/mod/applications/mod_av/avformat.c.orig 2017-07-13 12:07:30 UTC -+++ src/mod/applications/mod_av/avformat.c -@@ -479,13 +479,13 @@ - c->ticks_per_frame = 2; - - -- c->flags|=CODEC_FLAG_LOOP_FILTER; // flags=+loop -+ c->flags|=AV_CODEC_FLAG_LOOP_FILTER; // flags=+loop - c->me_cmp|= 1; // cmp=+chroma, where CHROMA = 1 - c->me_range = 16; // me_range=16 - c->max_b_frames = 3; // bf=3 - - av_opt_set_int(c->priv_data, "b_strategy", 1, 0); -- av_opt_set_int(c->priv_data, "motion_est", ME_HEX, 0); -+ av_opt_set(c->priv_data, "motion_est", "hex", 0); - av_opt_set_int(c->priv_data, "coder", 1, 0); - - switch (mm->vprofile) { -@@ -568,7 +568,7 @@ - - /* Some formats want stream headers to be separate. */ - if (fc->oformat->flags & AVFMT_GLOBALHEADER) { -- c->flags |= CODEC_FLAG_GLOBAL_HEADER; -+ c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; - } - - mst->active = 1; -@@ -660,7 +660,7 @@ - mst->frame->format = AV_SAMPLE_FMT_S16; - mst->frame->channel_layout = c->channel_layout; - -- if (c->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE) { -+ if (c->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE) { - //mst->frame->nb_samples = 10000; - mst->frame->nb_samples = (mst->frame->sample_rate / 50) * c->channels; - } else { Property changes on: head/net/freeswitch/files/patch-ffmpeg4 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net/freeswitch/files/extrapatch-modules.conf =================================================================== --- head/net/freeswitch/files/extrapatch-modules.conf (revision 507515) +++ head/net/freeswitch/files/extrapatch-modules.conf (revision 507516) @@ -1,256 +1,257 @@ ---- modules.conf.orig 2018-09-07 17:29:48.000000000 +0000 -+++ modules.conf 2018-09-10 16:55:17.869385000 +0000 -@@ -1,165 +1,165 @@ +--- modules.conf.orig 2019-01-25 00:17:59 UTC ++++ modules.conf +@@ -1,166 +1,166 @@ -#applications/mod_abstraction -#applications/mod_av -#applications/mod_avmd -#applications/mod_bert -#applications/mod_blacklist -#applications/mod_callcenter -#applications/mod_cidlookup -#applications/mod_cluechoo +applications/mod_abstraction +applications/mod_av +applications/mod_avmd +applications/mod_bert +applications/mod_blacklist +applications/mod_callcenter +applications/mod_cidlookup +applications/mod_cluechoo applications/mod_commands applications/mod_conference -#applications/mod_curl -#applications/mod_cv +applications/mod_curl +applications/mod_cv applications/mod_db -#applications/mod_directory -#applications/mod_distributor +applications/mod_directory +applications/mod_distributor applications/mod_dptools -#applications/mod_easyroute +applications/mod_easyroute applications/mod_enum applications/mod_esf -#applications/mod_esl +applications/mod_esl applications/mod_expr applications/mod_fifo -#applications/mod_fsk +applications/mod_fsk applications/mod_fsv applications/mod_hash -#applications/mod_hiredis +applications/mod_hiredis applications/mod_httapi -#applications/mod_http_cache -#applications/mod_ladspa -#applications/mod_lcr -#applications/mod_memcache +applications/mod_http_cache +applications/mod_ladspa +applications/mod_lcr +applications/mod_memcache #applications/mod_mongo -#applications/mod_mp4 +applications/mod_mp4 #applications/mod_mp4v2 -#applications/mod_nibblebill -#applications/mod_oreka +applications/mod_nibblebill +applications/mod_oreka #applications/mod_osp -#applications/mod_prefix +applications/mod_prefix #applications/mod_rad_auth -#applications/mod_redis -#applications/mod_rss + applications/mod_signalwire +applications/mod_redis +applications/mod_rss applications/mod_sms #applications/mod_sms_flowroute -#applications/mod_snapshot -#applications/mod_snom -#applications/mod_sonar -#applications/mod_soundtouch +applications/mod_snapshot +applications/mod_snom +applications/mod_sonar +applications/mod_soundtouch applications/mod_spandsp -#applications/mod_spy -#applications/mod_stress -#applications/mod_translate +applications/mod_spy +applications/mod_stress +applications/mod_translate applications/mod_valet_parking -#applications/mod_video_filter -#applications/mod_vmd +applications/mod_video_filter +applications/mod_vmd applications/mod_voicemail -#applications/mod_voicemail_ivr +applications/mod_voicemail_ivr #asr_tts/mod_cepstral #asr_tts/mod_flite #asr_tts/mod_pocketsphinx -#asr_tts/mod_tts_commandline -#asr_tts/mod_unimrcp +asr_tts/mod_tts_commandline +asr_tts/mod_unimrcp codecs/mod_amr -#codecs/mod_amrwb +codecs/mod_amrwb codecs/mod_b64 #codecs/mod_bv -#codecs/mod_clearmode +codecs/mod_clearmode #codecs/mod_codec2 -#codecs/mod_com_g729 +codecs/mod_com_g729 #codecs/mod_dahdi_codec codecs/mod_g723_1 codecs/mod_g729 codecs/mod_h26x #codecs/mod_ilbc -#codecs/mod_isac -#codecs/mod_mp4v +codecs/mod_isac +codecs/mod_mp4v codecs/mod_opus #codecs/mod_sangoma_codec #codecs/mod_silk #codecs/mod_siren -#codecs/mod_theora +codecs/mod_theora dialplans/mod_dialplan_asterisk -#dialplans/mod_dialplan_directory +dialplans/mod_dialplan_directory dialplans/mod_dialplan_xml -#directories/mod_ldap -#endpoints/mod_alsa -#endpoints/mod_dingaling +directories/mod_ldap +endpoints/mod_alsa +endpoints/mod_dingaling #endpoints/mod_gsmopen #endpoints/mod_h323 #endpoints/mod_khomp endpoints/mod_loopback #endpoints/mod_opal -#endpoints/mod_portaudio +endpoints/mod_portaudio endpoints/mod_rtc -#endpoints/mod_rtmp +endpoints/mod_rtmp endpoints/mod_skinny endpoints/mod_sofia endpoints/mod_verto #event_handlers/mod_amqp event_handlers/mod_cdr_csv -#event_handlers/mod_cdr_mongodb +event_handlers/mod_cdr_mongodb #event_handlers/mod_cdr_pg_csv event_handlers/mod_cdr_sqlite #event_handlers/mod_erlang_event -#event_handlers/mod_event_multicast +event_handlers/mod_event_multicast event_handlers/mod_event_socket -#event_handlers/mod_fail2ban -#event_handlers/mod_format_cdr -#event_handlers/mod_json_cdr +event_handlers/mod_fail2ban +event_handlers/mod_format_cdr +event_handlers/mod_json_cdr #event_handlers/mod_radius_cdr -#event_handlers/mod_odbc_cdr +event_handlers/mod_odbc_cdr #event_handlers/mod_kazoo -#event_handlers/mod_rayo +event_handlers/mod_rayo #event_handlers/mod_smpp -#event_handlers/mod_snmp +event_handlers/mod_snmp #event_handlers/mod_event_zmq -#formats/mod_imagick +formats/mod_imagick formats/mod_local_stream formats/mod_native_file formats/mod_png -#formats/mod_portaudio_stream -#formats/mod_shell_stream -#formats/mod_shout +formats/mod_portaudio_stream +formats/mod_shell_stream +formats/mod_shout formats/mod_sndfile -#formats/mod_ssml +formats/mod_ssml formats/mod_tone_stream -#formats/mod_vlc -#languages/mod_basic +formats/mod_vlc +languages/mod_basic #languages/mod_java languages/mod_lua #languages/mod_managed #languages/mod_perl #languages/mod_python #languages/mod_v8 -#languages/mod_yaml +languages/mod_yaml loggers/mod_console -#loggers/mod_graylog2 +loggers/mod_graylog2 loggers/mod_logfile loggers/mod_syslog -#loggers/mod_raven -#say/mod_say_de +loggers/mod_raven +say/mod_say_de say/mod_say_en -#say/mod_say_es -#say/mod_say_es_ar -#say/mod_say_fa -#say/mod_say_fr -#say/mod_say_he -#say/mod_say_hr -#say/mod_say_hu -#say/mod_say_it -#say/mod_say_ja -#say/mod_say_nl -#say/mod_say_pl -#say/mod_say_pt -#say/mod_say_ru -#say/mod_say_sv -#say/mod_say_th -#say/mod_say_zh -#timers/mod_posix_timer +say/mod_say_es +say/mod_say_es_ar +say/mod_say_fa +say/mod_say_fr +say/mod_say_he +say/mod_say_hr +say/mod_say_hu +say/mod_say_it +say/mod_say_ja +say/mod_say_nl +say/mod_say_pl +say/mod_say_pt +say/mod_say_ru +say/mod_say_sv +say/mod_say_th +say/mod_say_zh +timers/mod_posix_timer #timers/mod_timerfd xml_int/mod_xml_cdr -#xml_int/mod_xml_curl -#xml_int/mod_xml_ldap +xml_int/mod_xml_curl +xml_int/mod_xml_ldap #xml_int/mod_xml_radius xml_int/mod_xml_rpc xml_int/mod_xml_scgi Index: head/net/freeswitch/files/patch-src_switch__utils.c =================================================================== --- head/net/freeswitch/files/patch-src_switch__utils.c (nonexistent) +++ head/net/freeswitch/files/patch-src_switch__utils.c (revision 507516) @@ -0,0 +1,11 @@ +--- src/switch_utils.c.orig 2019-05-26 01:06:48 UTC ++++ src/switch_utils.c +@@ -1847,7 +1847,7 @@ SWITCH_DECLARE(switch_status_t) switch_f + goto doh; + } + +- switch_copy_string(buf, get_addr(abuf, sizeof(abuf), (struct sockaddr *) &iface_out, sizeof(struct sockaddr_storage)), len); ++ switch_copy_string(buf, get_addr(abuf, sizeof(abuf), (struct sockaddr *) &iface_out, sizeof(iface_out)), len); + if (mask) { + get_netmask((struct sockaddr_in *) &iface_out, mask); + } Property changes on: head/net/freeswitch/files/patch-src_switch__utils.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/freeswitch/pkg-plist =================================================================== --- head/net/freeswitch/pkg-plist (revision 507515) +++ head/net/freeswitch/pkg-plist (revision 507516) @@ -1,876 +1,890 @@ bin/freeswitch bin/fs_cli bin/fs_encode bin/fs_ivrd bin/fsxs bin/gentls_cert +bin/switch_core +bin/switch_event +bin/switch_hash +bin/switch_ivr_originate +bin/switch_utils +%%ALL_MODULES%%bin/test_avformat +%%ALL_MODULES%%bin/test_iks +%%ALL_MODULES%%bin/test_mod_av +%%ALL_MODULES%%bin/test_nlsml +%%ALL_MODULES%%bin/test_srgs bin/tone2wav include/freeswitch/libteletone.h include/freeswitch/libteletone_detect.h include/freeswitch/libteletone_generate.h include/freeswitch/switch.h include/freeswitch/switch_am_config.h include/freeswitch/switch_apr.h include/freeswitch/switch_buffer.h include/freeswitch/switch_cJSON.h include/freeswitch/switch_cJSON_Utils.h include/freeswitch/switch_caller.h include/freeswitch/switch_channel.h include/freeswitch/switch_config.h include/freeswitch/switch_console.h include/freeswitch/switch_core.h include/freeswitch/switch_core_db.h include/freeswitch/switch_core_event_hook.h include/freeswitch/switch_core_media.h include/freeswitch/switch_core_video.h include/freeswitch/switch_cpp.h include/freeswitch/switch_curl.h include/freeswitch/switch_dso.h include/freeswitch/switch_estimators.h include/freeswitch/switch_event.h include/freeswitch/switch_frame.h include/freeswitch/switch_hashtable.h include/freeswitch/switch_image.h include/freeswitch/switch_ivr.h include/freeswitch/switch_jitterbuffer.h include/freeswitch/switch_json.h include/freeswitch/switch_limit.h include/freeswitch/switch_loadable_module.h include/freeswitch/switch_log.h include/freeswitch/switch_module_interfaces.h include/freeswitch/switch_mprintf.h include/freeswitch/switch_msrp.h include/freeswitch/switch_nat.h include/freeswitch/switch_odbc.h include/freeswitch/switch_pgsql.h include/freeswitch/switch_platform.h include/freeswitch/switch_regex.h include/freeswitch/switch_resample.h include/freeswitch/switch_rtcp_frame.h include/freeswitch/switch_rtp.h include/freeswitch/switch_scheduler.h include/freeswitch/switch_stun.h include/freeswitch/switch_types.h include/freeswitch/switch_utf8.h include/freeswitch/switch_utils.h include/freeswitch/switch_vad.h include/freeswitch/switch_vpx.h include/freeswitch/switch_xml.h include/freeswitch/switch_xml_config.h +include/freeswitch/test/switch_fct.h +include/freeswitch/test/switch_test.h include/freeswitch/tpl.h %%ALL_MODULES%%lib/freeswitch/mod/mod_abstraction.so %%ALL_MODULES%%lib/freeswitch/mod/mod_alsa.so lib/freeswitch/mod/mod_amr.so %%ALL_MODULES%%lib/freeswitch/mod/mod_amrwb.so %%ALL_MODULES%%lib/freeswitch/mod/mod_av.so %%ALL_MODULES%%lib/freeswitch/mod/mod_avmd.so lib/freeswitch/mod/mod_b64.so %%ALL_MODULES%%lib/freeswitch/mod/mod_basic.so %%ALL_MODULES%%lib/freeswitch/mod/mod_bert.so %%ALL_MODULES%%lib/freeswitch/mod/mod_blacklist.so %%ALL_MODULES%%lib/freeswitch/mod/mod_callcenter.so lib/freeswitch/mod/mod_cdr_csv.so %%ALL_MODULES%%lib/freeswitch/mod/mod_cdr_mongodb.so lib/freeswitch/mod/mod_cdr_sqlite.so %%ALL_MODULES%%lib/freeswitch/mod/mod_cidlookup.so %%ALL_MODULES%%lib/freeswitch/mod/mod_clearmode.so %%ALL_MODULES%%lib/freeswitch/mod/mod_cluechoo.so lib/freeswitch/mod/mod_commands.so lib/freeswitch/mod/mod_conference.so lib/freeswitch/mod/mod_console.so %%ALL_MODULES%%lib/freeswitch/mod/mod_curl.so %%ALL_MODULES%%lib/freeswitch/mod/mod_cv.so lib/freeswitch/mod/mod_db.so lib/freeswitch/mod/mod_dialplan_asterisk.so %%ALL_MODULES%%lib/freeswitch/mod/mod_dialplan_directory.so lib/freeswitch/mod/mod_dialplan_xml.so %%ALL_MODULES%%lib/freeswitch/mod/mod_dingaling.so %%ALL_MODULES%%lib/freeswitch/mod/mod_directory.so %%ALL_MODULES%%lib/freeswitch/mod/mod_distributor.so lib/freeswitch/mod/mod_dptools.so %%ALL_MODULES%%lib/freeswitch/mod/mod_easyroute.so lib/freeswitch/mod/mod_enum.so lib/freeswitch/mod/mod_esf.so %%ALL_MODULES%%lib/freeswitch/mod/mod_esl.so %%ALL_MODULES%%lib/freeswitch/mod/mod_event_multicast.so lib/freeswitch/mod/mod_event_socket.so lib/freeswitch/mod/mod_expr.so %%ALL_MODULES%%lib/freeswitch/mod/mod_fail2ban.so lib/freeswitch/mod/mod_fifo.so %%ALL_MODULES%%lib/freeswitch/mod/mod_format_cdr.so %%ALL_MODULES%%lib/freeswitch/mod/mod_fsk.so lib/freeswitch/mod/mod_fsv.so lib/freeswitch/mod/mod_g723_1.so lib/freeswitch/mod/mod_g729.so %%ALL_MODULES%%lib/freeswitch/mod/mod_graylog2.so lib/freeswitch/mod/mod_h26x.so lib/freeswitch/mod/mod_hash.so %%ALL_MODULES%%lib/freeswitch/mod/mod_hiredis.so lib/freeswitch/mod/mod_httapi.so %%ALL_MODULES%%lib/freeswitch/mod/mod_http_cache.so %%ALL_MODULES%%lib/freeswitch/mod/mod_imagick.so %%ALL_MODULES%%lib/freeswitch/mod/mod_isac.so %%ALL_MODULES%%lib/freeswitch/mod/mod_json_cdr.so %%ALL_MODULES%%lib/freeswitch/mod/mod_ladspa.so %%ALL_MODULES%%lib/freeswitch/mod/mod_lcr.so %%ALL_MODULES%%lib/freeswitch/mod/mod_ldap.so lib/freeswitch/mod/mod_local_stream.so lib/freeswitch/mod/mod_logfile.so lib/freeswitch/mod/mod_loopback.so lib/freeswitch/mod/mod_lua.so %%ALL_MODULES%%lib/freeswitch/mod/mod_memcache.so %%ALL_MODULES%%lib/freeswitch/mod/mod_mp4.so %%ALL_MODULES%%lib/freeswitch/mod/mod_mp4v.so lib/freeswitch/mod/mod_native_file.so %%ALL_MODULES%%lib/freeswitch/mod/mod_nibblebill.so %%ALL_MODULES%%lib/freeswitch/mod/mod_odbc_cdr.so lib/freeswitch/mod/mod_opus.so %%ALL_MODULES%%lib/freeswitch/mod/mod_oreka.so lib/freeswitch/mod/mod_png.so %%ALL_MODULES%%lib/freeswitch/mod/mod_portaudio.so %%ALL_MODULES%%lib/freeswitch/mod/mod_portaudio_stream.so %%ALL_MODULES%%lib/freeswitch/mod/mod_posix_timer.so %%ALL_MODULES%%lib/freeswitch/mod/mod_prefix.so %%ALL_MODULES%%lib/freeswitch/mod/mod_raven.so %%ALL_MODULES%%lib/freeswitch/mod/mod_rayo.so %%ALL_MODULES%%lib/freeswitch/mod/mod_redis.so %%ALL_MODULES%%lib/freeswitch/mod/mod_rss.so lib/freeswitch/mod/mod_rtc.so %%ALL_MODULES%%lib/freeswitch/mod/mod_rtmp.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_de.so lib/freeswitch/mod/mod_say_en.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_es.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_es_ar.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_fa.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_fr.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_he.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_hr.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_hu.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_it.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_ja.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_nl.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_pl.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_pt.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_ru.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_sv.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_th.so %%ALL_MODULES%%lib/freeswitch/mod/mod_say_zh.so %%ALL_MODULES%%lib/freeswitch/mod/mod_shell_stream.so %%ALL_MODULES%%lib/freeswitch/mod/mod_shout.so lib/freeswitch/mod/mod_skinny.so lib/freeswitch/mod/mod_sms.so %%ALL_MODULES%%lib/freeswitch/mod/mod_snapshot.so lib/freeswitch/mod/mod_sndfile.so %%ALL_MODULES%%lib/freeswitch/mod/mod_snmp.so %%ALL_MODULES%%lib/freeswitch/mod/mod_snom.so lib/freeswitch/mod/mod_sofia.so %%ALL_MODULES%%lib/freeswitch/mod/mod_sonar.so %%ALL_MODULES%%lib/freeswitch/mod/mod_soundtouch.so lib/freeswitch/mod/mod_spandsp.so %%ALL_MODULES%%lib/freeswitch/mod/mod_spy.so %%ALL_MODULES%%lib/freeswitch/mod/mod_ssml.so %%ALL_MODULES%%lib/freeswitch/mod/mod_stress.so lib/freeswitch/mod/mod_syslog.so %%ALL_MODULES%%lib/freeswitch/mod/mod_theora.so lib/freeswitch/mod/mod_tone_stream.so %%ALL_MODULES%%lib/freeswitch/mod/mod_translate.so %%ALL_MODULES%%lib/freeswitch/mod/mod_tts_commandline.so %%ALL_MODULES%%lib/freeswitch/mod/mod_unimrcp.so lib/freeswitch/mod/mod_valet_parking.so lib/freeswitch/mod/mod_verto.so %%ALL_MODULES%%lib/freeswitch/mod/mod_video_filter.so %%ALL_MODULES%%lib/freeswitch/mod/mod_vlc.so %%ALL_MODULES%%lib/freeswitch/mod/mod_vmd.so lib/freeswitch/mod/mod_voicemail.so %%ALL_MODULES%%lib/freeswitch/mod/mod_voicemail_ivr.so lib/freeswitch/mod/mod_xml_cdr.so %%ALL_MODULES%%lib/freeswitch/mod/mod_xml_curl.so %%ALL_MODULES%%lib/freeswitch/mod/mod_xml_ldap.so lib/freeswitch/mod/mod_xml_rpc.so lib/freeswitch/mod/mod_xml_scgi.so %%ALL_MODULES%%lib/freeswitch/mod/mod_yaml.so lib/libfreeswitch.a lib/libfreeswitch.so lib/libfreeswitch.so.1 lib/libfreeswitch.so.1.0.0 libdata/pkgconfig/freeswitch.pc %%DATADIR%%/fonts/FreeMono.ttf %%DATADIR%%/fonts/FreeMonoBold.ttf %%DATADIR%%/fonts/FreeMonoBoldOblique.ttf %%DATADIR%%/fonts/FreeMonoOblique.ttf %%DATADIR%%/fonts/FreeSans.ttf %%DATADIR%%/fonts/FreeSansBold.ttf %%DATADIR%%/fonts/FreeSansBoldOblique.ttf %%DATADIR%%/fonts/FreeSansOblique.ttf %%DATADIR%%/fonts/FreeSerif.ttf %%DATADIR%%/fonts/FreeSerifBold.ttf %%DATADIR%%/fonts/FreeSerifBoldItalic.ttf %%DATADIR%%/fonts/FreeSerifItalic.ttf %%DATADIR%%/fonts/OFL.txt %%DATADIR%%/fonts/README.fonts %%DATADIR%%/htdocs/license.txt %%DATADIR%%/htdocs/portal/LICENCE %%DATADIR%%/htdocs/portal/README.md %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/css/bootstrap-theme.css %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/css/bootstrap-theme.min.css %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/css/bootstrap.css %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/css/bootstrap.min.css %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.svg %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/js/bootstrap.js %%DATADIR%%/htdocs/portal/assets/bootstrap-3.1.1/js/bootstrap.min.js %%DATADIR%%/htdocs/portal/assets/bootstrap/css/bootstrap-responsive.css %%DATADIR%%/htdocs/portal/assets/bootstrap/css/bootstrap-responsive.min.css %%DATADIR%%/htdocs/portal/assets/bootstrap/css/bootstrap.css %%DATADIR%%/htdocs/portal/assets/bootstrap/css/bootstrap.min.css %%DATADIR%%/htdocs/portal/assets/bootstrap/img/glyphicons-halflings-white.png %%DATADIR%%/htdocs/portal/assets/bootstrap/img/glyphicons-halflings.png %%DATADIR%%/htdocs/portal/assets/bootstrap/js/bootstrap.js %%DATADIR%%/htdocs/portal/assets/bootstrap/js/bootstrap.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/css/bs-growl-notifications.min.css %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-alert.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-badge.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-basic.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-button.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-core.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-growl-notifications.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-items-action-bar.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-label.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-list-group.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-modal.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-nav.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-notifications.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-progressbar.min.js %%DATADIR%%/htdocs/portal/assets/bs_for_ember/js/bs-wizard.min.js %%DATADIR%%/htdocs/portal/assets/js/ember-1.0.0-rc.1.js %%DATADIR%%/htdocs/portal/assets/js/ember-1.0.0-rc.1.min.js %%DATADIR%%/htdocs/portal/assets/js/ember-data.js %%DATADIR%%/htdocs/portal/assets/js/ember-data.min.js %%DATADIR%%/htdocs/portal/assets/js/ember.js %%DATADIR%%/htdocs/portal/assets/js/ember.min.js %%DATADIR%%/htdocs/portal/assets/js/fsportal.js %%DATADIR%%/htdocs/portal/assets/js/handlebars.js %%DATADIR%%/htdocs/portal/assets/js/handlebars.min.js %%DATADIR%%/htdocs/portal/assets/js/ie-console.js %%DATADIR%%/htdocs/portal/assets/js/jquery-1.9.1.min.js %%DATADIR%%/htdocs/portal/assets/js/jquery.min.js %%DATADIR%%/htdocs/portal/index.html %%DATADIR%%/htdocs/slim.swf %%DATADIR%%/htdocs/slimtest.htm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/acl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/alsa.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/cdr_csv.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/conference.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/console.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/dialplan_directory.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/dingaling.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/enum.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/event_multicast.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/event_socket.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/fax.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/fifo.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/iax.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/ivr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/java.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/limit.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/local_stream.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/logfile.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/lua.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/opal.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/openmrcp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/perl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/pocketsphinx.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/portaudio.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/post_load_modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/python.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/rss.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/shout.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/sofia.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/switch.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/syslog.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/timezones.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/v8.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/voicemail.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/xml_cdr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/xml_curl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/xml_rpc.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/autoload_configs/zeroconf.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/curl/mime.types %%PORTEXAMPLES%%%%EXAMPLESDIR%%/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/acl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/alsa.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/cdr_csv.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/conference.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/console.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/dialplan_directory.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/enum.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/event_multicast.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/event_socket.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/fax.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/fifo.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/iax.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/ivr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/java.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/limit.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/local_stream.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/logfile.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/lua.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/opal.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/perl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/pocketsphinx.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/portaudio.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/post_load_modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/python.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/rss.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/shout.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/sofia.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/switch.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/syslog.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/timezones.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/translate.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/v8.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/voicemail.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/xml_cdr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/xml_curl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/xml_rpc.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/autoload_configs/zeroconf.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/dialplan/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/dialplan/default/00_pizza_demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/dialplan/default/01_example.com.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/dialplan/default/02_conferences.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/dialplan/default/99999_enum.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/dialplan/features.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/dialplan/public.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/dialplan/public/00_inbound_did.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1000.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1001.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1002.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1003.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1004.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1005.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1006.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1007.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1008.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1009.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1010.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1011.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1012.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1013.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1014.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1015.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1016.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1017.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1018.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/1019.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/brian.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/directory/default/example.com.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/extensions.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/fur_elise.ttml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/de/de.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/de/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/de/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/en/demo/demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/en/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/en/en.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/en/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/en/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/fr/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/fr/fr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/lang/fr/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/mime.types %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/notify-voicemail.tpl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/openzap.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/sip_profiles/external.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/sip_profiles/external/example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/sip_profiles/internal-ipv6.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/sip_profiles/internal.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/sip_profiles/internal/example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/tetris.ttml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/tones.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/vars.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/voicemail.tpl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/insideout/web-vm.tpl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/README.md %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/acl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/cdr_csv.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/conference.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/console.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/db.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/event_socket.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/logfile.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/sofia.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/switch.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/timezones.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/autoload_configs/xml_rpc.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/dialplan/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/dialplan/public.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/dialplan/public/00_stub.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/modules.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/sip_profiles/external.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/sip_profiles/external/stub.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/sip_profiles/internal.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/minimal/vars.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/acl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/cdr_csv.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/conference.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/console.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/event_socket.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/http_cache.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/local_stream.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/logfile.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/pocketsphinx.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/post_load_modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/presence_map.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/rayo.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/shout.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/sofia.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/spandsp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/ssml.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/switch.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/autoload_configs/timezones.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/cacert.pem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/dialplan/public.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/directory/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/directory/default/usera.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/directory/default/userb.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/directory/default/userc.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/directory/default/userd.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/de/de.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/de/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/de/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/de/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/demo/demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/demo/funnies.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/demo/new-demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/dir/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/en.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/ivr/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/en/vm/voicemail_ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/demo/demo-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/demo/demo-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/demo/demo-ivr-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/demo/demo-ivr-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/dir/sounds-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/dir/sounds-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/dir/tts-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/dir/tts-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/es_ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/es_MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/vm/sounds-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/vm/sounds-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/vm/tts-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/es/vm/tts-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/fr/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/fr/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/fr/dir/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/fr/fr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/fr/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/he/demo/demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/he/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/he/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/he/he.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/he/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/demo/demo-ivr-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/demo/demo-ivr-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/demo/demo-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/demo/demo-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/dir/sounds-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/dir/sounds-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/dir/tts-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/dir/tts-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/pt_BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/pt_PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/vm/sounds-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/vm/sounds-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/vm/tts-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/pt/vm/tts-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/ru/demo/demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/ru/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/ru/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/ru/dir/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/ru/ru.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/ru/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/ru/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/sv/sv.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/lang/sv/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/mime.types %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/sip_profiles/external.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/sip_profiles/external/example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rayo/vars.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/acl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/cdr_csv.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/console.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/enum.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/event_socket.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/limit.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/logfile.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/post_load_modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/sofia.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/switch.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/syslog.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/timezones.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/translate.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/xml_cdr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/autoload_configs/xml_rpc.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/dialplan/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/dialplan/default/00_pizza_demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/dialplan/default/01_example.com.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/dialplan/default/99999_enum.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/dialplan/features.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/dialplan/public.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/dialplan/public/00_inbound_did.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/mime.types %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/sbc_profiles/external.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/sbc_profiles/external/example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/sbc_profiles/internal-ipv6.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/sbc_profiles/internal.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/sbc_profiles/internal/example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sbc/vars.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/softphone/accounts/example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/softphone/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/acl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/amd.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/amr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/cdr_csv.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/conference.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/conference_layouts.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/console.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/directory.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/event_socket.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/fifo.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/hash.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/local_stream.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/logfile.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/lua.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/opus.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/post_load_modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/presence_map.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/shout.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/sofia.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/spandsp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/switch.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/timezones.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/verto.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/voicemail.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/autoload_configs/xml_curl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/chatplan/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0000_local_extensions.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0001_vmain.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0002_leave_videomail.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0004_record_video.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0006_set_video_on_hold.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0007_pre_answer.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0008_eavesdrop.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0009_condition_regex_all.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0010_condition_xor.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0011_play_video_local_stream.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0012_play_audio_local_stream.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0013_hangup_testing.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0019_conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0020_record_on_answer_video.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0022_mod_com_amd_testing.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0023_video_eavesdrop.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0024_play_video.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/0026_fax.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/default/9999_date_time_match.xml.noload %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/public.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/public/000000.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/public/000001.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/dialplan/public/0000_local_extensions.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1000.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1001.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1002.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1003.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1004.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1005.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1006.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1007.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1008.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1009.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1010.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1011.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1012.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1013.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1014.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1015.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1016.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1017.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1018.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/1019.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/directory/default/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/demo/demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/demo/funnies.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/demo/new-demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/dir/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/en.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/ivr/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/lang/en/vm/voicemail_ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/sip_profiles/external-ipv6.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/sip_profiles/external.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/sip_profiles/internal-ipv6.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/sip_profiles/internal.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testing/vars.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/README_IMPORTANT.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/abstraction.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/acl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/alsa.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/amqp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/amr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/amrwb.conf.xml +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/av.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/avmd.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/blacklist.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/callcenter.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/cdr_csv.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/cdr_mongodb.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/cdr_pg_csv.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/cdr_sqlite.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/cepstral.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/cidlookup.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/conference.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/conference_layouts.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/console.conf.xml +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/curl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/db.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/dialplan_directory.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/dingaling.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/directory.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/distributor.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/easyroute.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/enum.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/erlang_event.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/event_multicast.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/event_socket.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/fax.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/fifo.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/format_cdr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/graylog2.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/hash.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/hiredis.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/httapi.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/http_cache.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/ivr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/java.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/kazoo.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/lcr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/local_stream.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/logfile.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/lua.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/memcache.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/mongo.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/msrp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/nibblebill.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/opal.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/opus.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/oreka.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/osp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/perl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/pocketsphinx.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/portaudio.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/post_load_modules.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/presence_map.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/python.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/redis.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/rss.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/rtmp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/sangoma_codec.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/shout.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/skinny.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/smpp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/sms_flowroute.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/sofia.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/spandsp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/switch.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/syslog.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/timezones.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/translate.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/tts_commandline.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/unicall.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/unimrcp.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/v8.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/verto.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/voicemail.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/voicemail_ivr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/vpx.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/xml_cdr.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/xml_curl.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/xml_rpc.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/xml_scgi.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/autoload_configs/zeroconf.conf.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/chatplan/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/config.FS0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/00_ladspa.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/00_pizza_demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/01_Talking_Clock.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/01_example.com.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/ideasip.com.noload %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/pulver.com.noload %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/sipbroker.com.noload %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/sipphone.com.noload %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/default/tollfreegateway.com.noload %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/features.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/public.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/public/00_inbound_did.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/skinny-patterns.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/skinny-patterns/20-Demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/skinny-patterns/20-Local_extension.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/skinny-patterns/90-External.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/dialplan/skinny-patterns/99-Default_Drop.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1000.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1001.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1002.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1003.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1004.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1005.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1006.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1007.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1008.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1009.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1010.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1011.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1012.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1013.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1014.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1015.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1016.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1017.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1018.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/1019.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/brian.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/default.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/example.com.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/directory/default/skinny-example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/extensions.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/freeswitch.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/fur_elise.ttml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/ivr_menus/demo_ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/ivr_menus/new_demo_ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/jingle_profiles/client.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/jingle_profiles/server.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/de/de.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/de/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/de/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/de/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/demo/demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/demo/funnies.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/demo/new-demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/dir/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/en.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/ivr/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/en/vm/voicemail_ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/demo/demo-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/demo/demo-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/demo/demo-ivr-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/demo/demo-ivr-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/dir/sounds-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/dir/sounds-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/dir/tts-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/dir/tts-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/es_ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/es_MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/vm/sounds-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/vm/sounds-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/vm/tts-es-ES.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/es/vm/tts-es-MX.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/fr/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/fr/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/fr/dir/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/fr/fr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/fr/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/he/demo/demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/he/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/he/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/he/he.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/he/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/demo/demo-ivr-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/demo/demo-ivr-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/demo/demo-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/demo/demo-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/dir/sounds-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/dir/sounds-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/dir/tts-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/dir/tts-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/pt_BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/pt_PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/vm/sounds-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/vm/sounds-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/vm/tts-pt-BR.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/pt/vm/tts-pt-PT.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/ru/demo/demo-ivr.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/ru/demo/demo.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/ru/dir/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/ru/dir/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/ru/ru.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/ru/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/ru/vm/tts.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/sv/sv.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/lang/sv/vm/sounds.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/mime.types %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/mrcp_profiles/loquendo-7-mrcp-v2.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/mrcp_profiles/nuance-1.0.0-mrcp-v1.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/mrcp_profiles/nuance-5.0-mrcp-v1.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/mrcp_profiles/nuance-5.0-mrcp-v2.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/mrcp_profiles/unimrcpserver-mrcp-v1.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/mrcp_profiles/vestec-mrcp-v1.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/mrcp_profiles/voxeo-prophecy-8.0-mrcp-v1.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/notify-voicemail.tpl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/sip_profiles/external-ipv6.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/sip_profiles/external-ipv6/example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/sip_profiles/external.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/sip_profiles/external/example.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/sip_profiles/internal-ipv6.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/sip_profiles/internal.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/skinny_profiles/internal.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/tetris.ttml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/vars.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/voicemail.tpl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/web-vm.tpl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/yaml/extensions.yaml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/vanilla/yaml/mod_yaml.yaml /var/lib/freeswitch/images/default-avatar.png /var/lib/freeswitch/images/default-mute.png @dir %%DATADIR%%/grammar @dir %%DATADIR%%/scripts @owner freeswitch @group freeswitch @dir /var/lib/freeswitch/db @dir /var/lib/freeswitch/images @dir /var/lib/freeswitch/recordings @dir /var/lib/freeswitch @dir(freeswitch,freeswitch,) /var/log/freeswitch/xml_cdr @dir(freeswitch,freeswitch,) /var/log/freeswitch @dir(freeswitch,freeswitch,) /var/run/freeswitch @owner @group @dir /var/lib