[exim] autoreply text line break

Página Inicial
Delete this message
Reply to this message
Autor: Gilbert W
Data:  
Para: exim-users
Assunto: [exim] autoreply text line break
Hi all,

i'm having problem to display "\r\n" or "\n" properly in the content of
email

here's my autoreply transport
--------------------------------------------
autoreply:
debug_print = "T: autoreply for $local_part@$domain"

driver = autoreply

to = ${sender_address}

from = "${local_part}@${domain}"

subject = Re: $h_subject:
text = ${lookup mysql { \
SELECT autoreply_txt \
FROM USER_TABLE \
WHERE id='${quote_mysql:$local_part}@${quote_mysql:$domain}' \
}{$value}}


since "autoreply_txt" is fetched from a HTML form then store the line break
in Database as "\r\n",
it shows up as "line1\r\n\line2\r\n ..."

is there any way to turn these escape characters into line breaks?



Please help.
Thanks in advance.