<!-- Uncomment auto-record to toggle recording every conference call. -->
<!-- Another valid value is shout://user:pass@server.com/live.mp3 -->
<!--
- <param name="auto-record" value="/usr/local/freeswitch/sounds/conference/${conference-name}_${strftime(%Y-%m-%d-%H-%M-%S)}.wav"/>
+ <param name="auto-record" value="/usr/local/freeswitch/sounds/conference/${conference_name}_${strftime(%Y-%m-%d-%H-%M-%S)}.wav"/>
-->
</profile>
goto done;
}
- switch_channel_set_variable(channel, "conference-name", conference->name);
+ switch_channel_set_variable(channel, "conference_name", conference->name);
/* Set the minimum number of members (once you go above it you cannot go below it) */
conference->min = 2;
conference->pin = switch_core_strdup(conference->pool, dpin);
}
- switch_channel_set_variable(channel, "conference-name", conference->name);
+ switch_channel_set_variable(channel, "conference_name", conference->name);
/* Set the minimum number of members (once you go above it you cannot go below it) */
conference->min = 1;
/* Start the conference thread for this conference */
launch_conference_thread(conference);
} else { /* setup user variable */
- switch_channel_set_variable(channel, "conference-name", conference->name);
+ switch_channel_set_variable(channel, "conference_name", conference->name);
}
/* acquire a read lock on the thread so it can't leave without us */