Hello. Is there any way to configure queues on the server side with specific settings like "time to live" for example ? The same way, I'd like to enable or disable DLQ for some queues.
Our XML configuration already uses policies like : <policyEntry queue=">" producerFlowControl="true" memoryLimit="256m" queuePrefetch="1" lazyDispatch="true"> <deadLetterStrategy> <individualDeadLetterStrategy queuePrefix="DLQ." useQueueForQueueMessages="true"/> </deadLetterStrategy> </policyEntry> Can I set similar policies to exclude DLQ for queues with a given pattern, and setting a time to live ? For example, if I set a first policy with queue="PREFIX1.>" without DLQ strategy, is the other policy applied to other queues ? Thanks in advance for your help. Regards.