Hi, how is the syntax of the "reply_code" column in 'carrierroute' module? In the doc I some examples:
408 404 50.
Obviously "50." means any code starting by "50", but is it a typical regular expression? For example, does it allow something like "500|503" or "50[03]"?
Thanks.
On 10/27/2010 02:32 AM, Iñaki Baz Castillo wrote:
Hi, how is the syntax of the "reply_code" column in 'carrierroute' module? In the doc I some examples:
408 404 50.
Obviously "50." means any code starting by "50", but is it a typical regular expression? For example, does it allow something like "500|503" or "50[03]"?
Thanks.
Hello Iñaki,
No, it is not allowed. The restrictions are this. Length of reply_code in db table MUST be 3, and the only wildcard accepted is ".".
Marius
2010/10/28 marius zbihlei marius.zbihlei@1and1.ro:
No, it is not allowed. The restrictions are this. Length of reply_code in db table MUST be 3, and the only wildcard accepted is ".".
Thanks for the clarification.
Could it be added to the module documentation? :)
On 10/28/2010 01:23 PM, Iñaki Baz Castillo wrote:
2010/10/28 marius zbihleimarius.zbihlei@1and1.ro:
No, it is not allowed. The restrictions are this. Length of reply_code in db table MUST be 3, and the only wildcard accepted is ".".
Thanks for the clarification.
Could it be added to the module documentation? :)
Done in master and 3.1
Cheers Marius
2010/10/28 marius zbihlei marius.zbihlei@1and1.ro:
Could it be added to the module documentation? :)
Done in master and 3.1
Thanks a lot :)