Author |
Post |
|
#1 Tue Mar 02, 2010 04:02, 182 months ago.
|
Member
Registered: Mar 2010
Location: Yogyakarta, Indonesia
|
Operating system name and version: Linux Ubuntu 9.10 Version of smsd: 3.1.6 Smsd installed from: sources Name and model of a modem / phone: Sony Ericsson K310i Interface: USB
i have trouble in changing outgoing folder path from /var/spool/sms/outgoing to /var/www/sms/outgoing
everytime i try to change the path to /var/www/sms/outgoing, the spool messages are held to /var/spool/sms/outgoing and won't be sent. but if i change back the path to /var/spool/sms/outgoing the sms are sent.
other folders like incoming, checked, sent, etc are successfully changed the path to /var/www/sms
thanks
|
|
#2 Tue Mar 02, 2010 13:40, 182 months ago.
|
Administrator
Registered: May 2009
Location: Jyväskylä, Finland
|
Probably you are using the script sendsms to create messages? That script has a fixed value /var/spool/sms/outgoing, it does not read it from the smsd.conf file. You should change the script, and any other scripts too, if any used.
As an alternate solution, you could create a symbolic link: ln -s /var/www/sms/outgoing /var/spool/sms/outgoing
With this link scripts can stay unmodified.
|
|
#3 Tue Mar 02, 2010 16:48, 182 months ago.
|
Member
Registered: Mar 2010
Location: Yogyakarta, Indonesia
Topic owner
|
thx for replying...
so do u think there is another script aside of 'sendsms' to send sms...? if there is any... please let me know...
btw, the idea of making reference link is wonderful... hope i will work...
regards
|
|
#4 Tue Mar 02, 2010 18:56, 182 months ago.
|
Administrator
Registered: May 2009
Location: Jyväskylä, Finland
|
All scripts in the scripts directory of a package use /var/spool/sms/outgoing as an outgoing directory. For example smsresend, if this functionality is used.
|