Homman nimi on yrittää saada sendmail scriptiin bcc. Scripti toimii tällä hetkellä muutoin oikein mukavasti, mutta piilokopiota ei näy, ei kuulu
Scriptinpätkä itsessään näyttää tältä:
export MAILTO="jepjep@dingdong.dang"
export BCC="japjap@dingdong.dang"
export SUBJECT="Report"
export BODY="/home/antsa/varmuuskopio_viesti.html"
(
echo "To: $MAILTO"
echo "Bcc: $BCC"
echo "Subject: $SUBJECT"
echo "MIME-Version: 1.0"
echo 'Content-Type: multipart/mixed; boundary="-q1w2e3r4t5"'
echo
echo '---q1w2e3r4t5'
echo "Content-Type: text/html"
echo "Content-Disposition: inline"
cat $BODY
echo '---q1w2e3r4t5--'
) | /usr/sbin/sendmail $MAILTO
Kun lisäsin scriptiin set -x niin tuloste näyttää tältä (ei virheitä, mutta maili ei tosiaankaan lähde bcc:lle):
+ export MAILTO=jepjep@dingdong.dang
+ export BCC=japjap@dingdong.dang
+ export SUBJECT=Report
+ export BODY=/home/antsa/varmuuskopio_viesti.html
+ echo To: jepjep@dingdong.dang
+ echo Bcc: japjap@dingdong.dang
+ echo Subject: Report
+ echo MIME-Version: 1.0
+ echo Content-Type: multipart/mixed; boundary="-q1w2e3r4t5"
+ echo
+ echo ---q1w2e3r4t5
+ echo Content-Type: text/html
+ echo Content-Disposition: inline
+ cat /home/antsa/varmuuskopio_viesti.html
+ + echo ---q1w2e3r4t5--
/usr/sbin/sendmail jepjep@dingdong.dang
Kellään ideoita?