Raspberry pi 3, sendmail, hylafax-server 都裝好, 收到傳真OK的, 但是就是無法送EMAIL.
/etc/hylafax/FaxDispatch, 參考http://www.aboutdebian.com/fax.htm, 按照說明書寫的
可是只收到報錯的 EMAIL, 網域錯誤,系統找不到raspberrypi這個網域, 無法傳送郵件到FaxMaster@raspberrypi
請教是甚麼設定沒做好或是怎樣解決
/etc/hylafax/FaxDispatch 內容如下,- ## FaxDispatch file - routes all inbound faxes to xiao@gmail.com as TIFF files
- ##
- ## Consult the faxrcvd(8C) man page for more information
- ##
- SENDTO=xiao@gmail.com;
- FROMADDR=xiao@gmail.com;
- FILETYPE=tiff
- case "$DEVICE" in
- ttyACM0) SENDTO=xiao@gmail.com;
- esac
- ## To make each received fax saved outside hylafax
- ## ( Don't forget to chown uucp /some/place )
- /bin/cp $FILE /some/place
- ## To avoid bothering the faxmaster for each received fax
- NOTIFY_FAXMASTER=errors
複製代碼 |