The docs say you can refer to other values from collection.cfg like this:
pre_index_command=/opt/funnelback/custom/process_crawled_data.sh ${collection_root}
(https://docs.funnelback.com/more/extra/workflow.html#substituting-values)
So I assume I should be able to do this:
admin_email=xxx@xxx.com
post_gather_command=$SEARCH_HOME/conf/$COLLECTION_NAME/@workflow/check-url-errors.sh $COLLECTION_NAME $CURRENT_VIEW "${admin_email}"
But I'm getting a blank value for ${admin_email}
(I've tried with and without double-quotes). Is this meant to work, and any ideas why it's not?