I read http://activemq.apache.org/wildcards.html but am still puzzled about how to write a pattern that matches queue names with a particular suffix.
For example, for queue names such as A.B.Cout and D.E.Fout will
<redeliveryPolicy queue="*out"
be enough to match the queues? Or do I need
<redeliveryPolicy queue=">*out"
or something else even?
