Latest MTE TL server, Asterisk 1.4
We are getting the same To: and From: addresses in our fax to pdf emails
I see that we can change the content of the email via:
/usr/local/sbin/fax2pdf.sh
Do we adjust the From: email address there in this script, or did we just miss the spot in the gui to do this?
Whatever the case, can some one show us the syntax or location we need to change the From: address?
Submitted by j_kolter on Wed, 10/14/2009
Permalink
Submitted by j_kolter on Thu, 10/15/2009
Permalink
Thanks.
Thanks.
FYI to those in the future:
change this:
EMAILFROM=`echo $EMAILADDR | cut -d " " -f 1`
to this:
EMAILFROM=`echo user@domain.com | cut -d " " -f 1`
Submitted by eeman on Thu, 10/15/2009
Permalink
lol, not a coder i see you
lol, not a coder i see
you dont need to pipe through a cut statement if you are just using a hard defined value
try
EMAILFROM="user@domain.com"
Submitted by j_kolter on Tue, 10/20/2009
Permalink
I am having the same issue with Asterisk 1.6
Any one that can help?