This shows you the differences between two versions of the page.
— |
bug_g20_exchange [2016/06/14 16:35] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== Bugfix: Exchange Server encoding problems ===== | ||
+ | \\ | ||
+ | **Affected versions:** \\ | ||
+ | All the FoxBox belonging to LX800 family. | ||
+ | **Description:** \\ | ||
+ | It has been noticed that recent versions of Microsoft Exchange Server create problems to EMAILtoSMS feature. This is due to usage of base64 encoding for emails, bad interpreted by our standard device. | ||
+ | |||
+ | **Solution:** \\ | ||
+ | To solve this problem, it is required to install the package //recode// with: | ||
+ | <code> | ||
+ | apt-get update | ||
+ | apt-get install recode | ||
+ | </code> | ||
+ | Then, add these new lines to// /etc/sms/scripts/email2sms //code: | ||
+ | <code> | ||
+ | cat >$OUTFILE | ||
+ | recode /b64 $OUTFILE | ||
+ | </code> |