ผมทำระบบ Mail to Fax และให้สามารถแนบไฟล์ที่เป็นไฟล์ .doc ได้
ตอนนี้สามารถแนบไฟล์ .doc ที่มีเฉพาะเนื้อหาภาษาอังกฤษได้เท่านั้นครับ
ส่วนถ้ามีภาษาไทยปนอยู่ในเนื้อหาด้วย ที่เครื่องแฟ็กซ์ปลายทางจะ print ออกมาเฉพาะภาษาอังกฤษ อะครับ
ไม่ทราบผมควรจะแก้ตรงไหนได้บ้างคร้บ
ผมใช้วิธีนี้ในการทำครับ
1. Install openoffice server. Run in headless mode (see Madhawa
Jayanath directions for 'runoffice', or create a startup system
script). This will be the engine for conversions of filetypes to PDF.
2. Install java and jodconverter.
3. Create file and add the following in /usr/bin/doc2ps:
#!/bin/bash
PATH=$PATH:/usr/local/bin:/usr/sbin:/usr/bin:/usr/bin/java/bin/
export PATH
java -jar /usr/src/jodconverter-core-3.0-beta-3/lib/jodconverter-core-3.0-beta-3.jar -f pdf $1
gs -q -sPAPERSIZE=letter -dBATCH -dNOPAUSE \
-sDEVICE=pswrite -sOutputFile=- ${1%\.*}.pdf
rm -f ${1%\.*}.pdf
exit
คือใช้ script doc2ps ในการแปลงจาก .doc ให้เป็น ps ครับ