1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
## SkySMS provider file - www.gsm.globtel.sk ##
# Version 0.1
# by Michal Weis <ispam1@ibl.sk>
# Last updated: Wed Mar 20 14:35:36 CET 2002
#
# Message Limit: 100 messages/day&number (as far as Helpdesk reported to me)
#
# Message Size: 426 chars
#
NbParams 4
%Login : Login to Globtel SMS gateway in form 0905123456
%Password : User password
%Number : Phone number withiout leading but with coutrycode, e.g. 421903123456
%Message Size=426 Convert : Message to be sent
## Login to Globtel
#
GetURL http://www.gsm.globtel.sk/cgi-bin/office1.pl?action=login&a_send=true&name=\%Login%&pass=\%Password%
GO
## Send message
#
PostURL http://www.gsm.globtel.sk/cgi-bin/office1.pl
Referer http://www.gsm.globtel.sk/cgi-bin/office1.pl
PostData ad_target=%2b\%Number%&deliver=1&addrlist_priv=none&message=\%Message%&messlist_priv=none&action=send&a_send=Odosla%bb%20
Search spe
PrintMsg Probably OK (queued)
Else
ErrorMsg 1 Some Error probably occured
GO
## Logout
#
GetURL http://www.gsm.globtel.sk/cgi-bin/office1.pl?logout=odhl%e1senie
GO
|