Auto-record not working properly for a conference

Hi all. I am having trouble getting auuto record to work in my conference called briefing. Below I have a link to a zip file contaiining the conference profile and the extension I use to connect. What happens is that I can use two phones to log into the conference and a third one to be the moderator and that works. Auto record starts, but when I look at what it recorded, it says you are the only person in the conference, even though there are 3 members. It records the hold music. The other strange thing is if I use auto-record with a specific file name, it does not work at all, if I use what is currently uncommented, it records the hold music instead of what the moderator is saying.

Here is the link to the .zip file.

Thanks in advance for any suggestions.

19%3ameeting_ZDBjYmQzZWYtNGQ2ZS00NmI1LTk4YTEtZTI0NWJjMTU1NzA0%40thread.v2/0?context=%7b%22Tid%22%3a%22d0667cb4-5da7-442d-bb6d-b04a5fc4a98d%22%2c%22Oid%22%3a%225f99747f-631e-4d76-9345-e6c091946bbf%22%2c%22prid%22%3a%224e894ec1-52ee-4fe2-9eb2-904b27b1d1aa%22%2c%22isPublic%22%3atrue%7d

Hello,

Please add to your conference dialplan

<action application="set" data="conference_auto_record=/tmp/${domain_name}_$1_${strftime(%Y-%m-%d-%H-%M-%S)}.wav"/>

You can adjust /tmp/ to whichever path to where you want the recording to end up at.

Example

<extension name="uwb_conferences_moderator">
      <condition field="destination_number" expression="^(32\d{2})1$">
        <action application="answer"/>
   <action application="set" data="conference_auto_record=/tmp/${domain_name}_$1_${strftime(%Y-%m-%d-%H-%M-%S)}.wav"/>
        <action application="conference" data="$1-${domain_name}@ultrawideband++flags{moderator}"/>
      </condition>
    </extension>

You can also set in the conference.conf.xml to the specific profile name

<param name="auto-record" value="/tmp/${conference_name}_${strftime(%Y-%m-%d-%H-%M-%S)}.wav"/>```