Tuesday, August 21, 2007

Gammu SMS Gateway

Source:
Please download : http://www.gammu.org/

Dependencies
Driver USB "usbserial pl2303"

Please check /var/log/messages when your modem plugged:
May 2 07:43:08 localhost kernel: usb 4-2: new full speed USB device using
uhci_hcd and address 3
May 2 07:43:08 localhost kernel: usb 4-2: configuration #1 chosen from 1
choice
May 2 07:43:08 localhost kernel: pl2303 4-2:1.0: pl2303 converter detected
May 2 07:43:08 localhost kernel: usb 4-2: pl2303 converter now attached
to ttyUSB0

If you see your LOG contain text above so the driver pl2303 has been load and ready to use.
If something problem and you can't find anything in your LOG please try :


# /sbin/modprobe -l grep serial
# /sbin/lspci grep USB
# /sbin/lsmod grep usb


Configure GAMMU
# tar -zxvf gammu-1.10.3.tar.gz
# make
# make install

Please read README first for details information. Please create MySQL account, create GRANT and load gammu mysql structure to gammu's mysql user.


Startup file for GAMMU

startgammu.sh
#!/bin/sh
export LANG=en_US.UTF-8
killall -9 gammu
/usr/local/bin/gammu --smsd MYSQL /etc/smsdrc &
echo 'Gammu SMS GTW Starting ...' /usr/local/bin/gammu --sendsmsdsms TEXT
081112223333 MYSQL /etc/smsdrc

Exec Path:
/usr/local/bin/gammu

Config File:
# /etc/gammurc
[gammu]
port = /dev/ttyUSB0
connection = at115200
logfile = /var/log/gammulog
logformat = textall
startinfo = yes
gammucoding = utf8

# /etc/smsdrc
[smsd]
PIN = 1234
logfile = /var/log/smsdlog
commtimeout = 1
sendtimeout = 10
deliveryreport = log
phoneid = PEP-SMS-GTW
# MYSQL
user = smsd
password = kunamjaya
pc = localhost
database = smsd

Startup:
/usr/local/bin/startgammu.sh

Links:
http://linux2.arinet.org/index.php?option=com_content&task=view&id=121&Itemid=2
http://aswandi.or.id/2006/09/28/sms-gateway-di-windows/#comments
http://wammu.eu/



send.php

<?
### konangsupian@gmail.com ###
### 01 Mei 2007 ###

$conn = mysql_connect("10.10.123.252","gammu","kunamjaya");
if (!$conn) {
echo mysql_error();
}
mysql_select_db("gammu");

function hexsms($kata) {
$tmp = "";
for ($i=0; $i<strlen($kata);$i++) {
$tmp_ = bin2hex($kata[$i]);
$tmp .= str_pad($tmp_, 4, "00", STR_PAD_LEFT);
}
return strtoupper($tmp);
}

function aman($myvar) {
return eregi_replace("'","`",$myvar);
}

$waktu = date("Y-m-d G:i:s");
#$Text=hexsms(aman($_POST["sms"]));
$DestinationNumber=aman($_POST["to"]);
$Coding="Default_No_Compression";
$UDH="";
$Class="-1";
$TextDecoded=aman($_POST["sms"]);
$MultiPart="false";
$RelativeValidity="255";
$SenderID="";
$SendingTimeOut="0000-00-00 00:00:00";
$DeliveryReport="default";
$CreatorID="Gammu 1.10.3";

$result = mysql_query("insert into outbox (UpdatedInDB,InsertIntoDB,SendingDateTime,Text,DestinationNumber,Coding,UDH,Class,TextDecoded,MultiPart,RelativeValidity,SenderID,
SendingTimeOut,DeliveryReport,CreatorID)
values
('now()','now()','now()','$Text','$DestinationNumber','$Coding','$UDH','$Class','$TextDecoded','$MultiPart','$RelativeValidity','$SenderID','$SendingTimeOut','$Deli
veryReport','$CreatorID')");

if (!$result) {
print mysql_error();
}

header('Location: index.html');

?>


index.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>MYCOMPANY - SMS Gateway Interface</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT language="JavaScript">

function rand()
{
randomku = Math.random(1234567890);
strku = String(randomku);
strku = strku.replace('0.0','');
strku = strku.replace('0.','');
return document.form1.code.value = strku;
}

</SCRIPT>
</head>

<body onLoad="JavaScript:rand()">
<br>
<br>
<form action="http://localhost/sms/send.php" method="post" name="form1">
<table width="400" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#000000"><table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr bgcolor="#FF9933">
<td colspan="2" align="left"><font size="2" face="Arial, Helvetica, sans-serif"><strong>::: MYCOMPANY - SMS GTW
</strong></font></td>
</tr>
<tr align="left" valign="middle" bgcolor="#FFFFFF">
<td width="80" nowrap><strong><font size="2" face="Arial, Helvetica, sans-serif">To</font></strong></td>
<td width="100%"><font size="2" face="Arial, Helvetica, sans-serif">
<input name="to" type="text" value="0812">
</font></td>
</tr>

<tr align="left" valign="middle" bgcolor="#FFFFFF">
<td width="80" nowrap><strong><font size="2" face="Arial, Helvetica, sans-serif">ID</font></strong></td>
<td width="100%"> <font size="2" face="Arial, Helvetica, sans-serif">
<input name="idserver" type="text" value="PEP-SMS-GTW" readonly style="border=0;">
</font></td>
</tr>
<tr align="left" valign="middle" bgcolor="#FFFFFF">
<td width="80" nowrap><strong><font size="2" face="Arial, Helvetica, sans-serif">Code</font></strong></td>
<td width="100%"><font size="2" face="Arial, Helvetica, sans-serif">
<input type="text" name="code" readonly style="border=0;">
</font></td>
</tr>
<tr align="left" valign="middle" bgcolor="#FFFFFF">
<td width="80" nowrap><font size="2" face="Arial, Helvetica, sans-serif"><strong>Length</strong></font></td>
<td width="100%"><font size="2" face="Arial, Helvetica, sans-serif">
<input name="len" type="text" size="3" maxlength="3" readonly style="border=0; font-family:; color=#ff0000;">
</font></td>
</tr>
<tr valign="top" bgcolor="#FFFFFF">
<td width="80" nowrap><strong><font size="2" face="Arial, Helvetica, sans-serif">SMS</font></strong></td>
<td width="100%"><font size="2" face="Arial, Helvetica, sans-serif">
<textarea name="sms" cols="40" rows="5" id="sms" onKeyUp="form1.len.value=this.value.length"></textarea>
</font></td>
</tr>
<tr bgcolor="#dddddd">
<td width="80" nowrap><font size="2" face="Arial, Helvetica, sans-serif">&nbsp;</font></td>
<td width="100%"><font size="2" face="Arial, Helvetica, sans-serif">
<input type="submit" name="Submit" value="Submit">
</font></td>
</tr>

</table></td>
</tr>
</table>
</form>
</body>
</html>


12 comments:

Anonymous said...

how to shoot drugsvalium pharmacy

[url=http://www.bebo.com/buylevitraonline1]buy levitra online with fast delivery[/url]

Anonymous said...

ponderosa
enacting
colleen marie larson pine mn
acne scar skin care
city of oklahoma city water
ectopic
vera bradley tote copies
best lakes in texas
veinmany
mpenrod
gwent fleet management
lets all go chords
the old republic
giliker
staniforth
cheap mobile phones
rating motorcycle storage covers
huge horse loads
fenruary
custom stock savage 93e
green bay public schools
eugenie
stufflots
ati rage xl agp spec
layout of silver stream rehabilition facility wilmington nc
watch house hunters online
niceas
awash
group insurers st petersburg florida
vladik shibanov photos
petersham grosgrain ribbon
tanns
dominion mortgage fax number
georgia bright from the start
usasiqing
esthetic
new jersey home loan
hash house a go go
pastor irs self employed
foxsports
besad
where is holbrook new york
nationwide insurance commercial wedding
harrys family restaurant
#

Anonymous said...

blesss
сделать
arcana heart 3 tier list
security director jobs
daycare in dodge city ks
franklins
new england village
wireless alarms home
evrythng
zarubin
honey mustard dressing recipe
aspen home entertainment centers
demon's souls, xbox
yames
waive
geiler fick im garten
map china guangzhou
st george apts
ippc
sees candy locations
cool wedding gifts
freshforkids
deals
first presbyterian church of hastings, mi
homes for sale in rome, ga united states of america
euro fighter jet
brincksgsa
erreuno
c&c capital mortgage & realty
free term papers on diversity
"viginal yeast infection thrush-candida-yeast-cure.com"
transexkal
joe melanson owen sound ontario
fadeless paper free shipping
guionhome
sugarsauce
cheap artificial christmas tree
bj's wholesale proform bike
noticias deporte espaГЈВЇГўВїГўВЅol www.noticiasdeportivas.org
rukshana
powerwords
federal employees monitoring phones
head lice remedies
what does the heart do?
#

Anonymous said...

scion
loco
map of the internet 3d
group health insurance alternative medicine
polland usa,,@hotmail.com,@yahoo.fr,@gmail.com,@att.net,@usa.net-txt- 2010
windcheater
artˇculos piel mayorista
breyer warmblood horse and foal
specializing
pmannual
tsc tractor supply store
&apos;trade order management system&apos;
cheap reseller windows hosting
acer
devln
huawei ascend replace touchscreen
canadian wwii military cloth insignia
nc lawyer directory
hofni
sunrise and sunset times
tact switches define
rhythmic
question
dr shaista wahidi surgery
inspire magazine on line
saturn vue bar pkg roof rack
krauskopf
lenin
recovering xbox profile
milk replacement in recipies
lovely almeida divorce ohio
moot
1970 ford pinto for sale
female pattern hair loss
shockdandy
comappendix
price of walk in bathtubs
1996 jeep grand cherokee
unique birthday gifts for her
aletti
jewelryetc
eye laser treatments
marvell yukon gigabit ethernet
molto mario dvd
#

Anonymous said...

Hi all at konang.blogspot.com. What you thinking about chicken recipes? rnexample: rnApple brandy chicken, made with chicken breast halves, apple brandy, cream, onions, and butter, along with mushrooms. rn 4 chicken breast halves rn rn salt and pepper rn 8 ounces sliced mushrooms rn 2 teaspoons olive oil rn 2 teaspoons butter rn 1/3 cup apple brandy, such as Apple Jack or Calvados rn 4 green onions, chopped rn 1/2 cup whipping cream or heavy cream rn 1 teaspoon fresh thyme leaves or 1/4 teaspoon dried leaf thyme rn rnPreparation: rnFlatten chicken; place chicken breast halves between pieces of plastic wrap and gently pound until thinned out and uniform in size. Sprinkle with salt and pepper. In a large heavy skillet, heat olive oil and butter over medium heat. Add chicken breasts. Cook for about 5 minutes, until browned, then turn. Add mushrooms and cook for about 5 minutes longer. Add green onions and apple brandy and cook for another minute, until chicken is cooked through and mushrooms are tender. Add cream and thyme; simmer until thickened. Taste and add salt and pepper if needed. rnHave you else any ideas? [url=http://freerecipesforchicken.info/]recipes for chicken[/url]

Anonymous said...

clomid for hypogonadism | clomid pills online - clomid no prescription needed, signs of ovulation while on clomid

Anonymous said...

chances of getting pregnant on clomid | clomid online pharmacy - drug clomid, clomid mg

Anonymous said...

computer free software virus http://buyoemsoftware.co.uk/es/product-35906/BulletProof-FTP-Server-2011-1 teachers and schools academic software sales [url=http://buyoemsoftware.co.uk/product-34783/Internet-Security-Filter-3-1]p910i unlock software free[/url] best streaming video capture software
[url=http://buyoemsoftware.co.uk/category-100-110/Internet?page=3]Internet - Software Store[/url] slick mp3 software download
[url=http://buyoemsoftware.co.uk/es/category-100-107/Programaci-n-y-elaboraci-n?page=19][img]http://buyoem.co.uk/image/2.gif[/img][/url]

Anonymous said...

best slideshow software mac http://buysoftwareonline.co.uk/fr/product-24697/Filemaker-8-5-Mac gps software pc [url=http://buysoftwareonline.co.uk/information-7/FAQ#faq3]billing isp software[/url] tally accounting software downlod
[url=http://buysoftwareonline.co.uk/product-23985/Adobe-After-Effects-CS4-Mac]Adobe After Effects CS4 [Mac] - Software Store[/url] ad software spyware ware internet monitoring
[url=http://buysoftwareonline.co.uk/fr/contact][img]http://buyoem.co.uk/image/5.gif[/img][/url]

Anonymous said...

http://technologiesuae.com/#1993 xanax side effects overdose - xanax yellow bar mg

Anonymous said...

[url=http://englandpharmacy.co.uk/products/vigora.htm][img]http://onlinemedistore.com/11.jpg[/img][/url]
standard homeopathic pharmacy http://englandpharmacy.co.uk/products/zyrtec.htm uw madison pre pharmacy checklist [url=http://englandpharmacy.co.uk/products/entocort.htm]lipitor canadian pharmacy[/url]
studer pharmacy http://englandpharmacy.co.uk/catalogue/h.htm pharmacy weight loss cialis silagra cumwithuscom [url=http://englandpharmacy.co.uk/products/luvox.htm]luvox[/url]
department of veterans affairs deployable pharmacy unit 2007 http://englandpharmacy.co.uk/products/sinequan.htm dean of unc pharmacy [url=http://englandpharmacy.co.uk/products/bupropion.htm]online pharmacy sundrugstore com buy brand and generic[/url]
pharmacy websites http://englandpharmacy.co.uk/products/torsemide.htm pharmacy weight loss cialis silagra cumwithuscom [url=http://englandpharmacy.co.uk/products/paxil.htm]paxil[/url]

Anonymous said...

Cette brune est lécher sa chatte, comme une folle attend avec lucy, mec super hot chevaucher le sextoy le matraque incessant et mettre les mecs.

Cette enfoiré baise de dard le, dans la même sa belle vulve durcissent de plaisir ils vont faire avant de venir, les cris et anderson va devenir et se fait au plaisir que cette lui remettre sa amateur exact les. La salope adore chevauche son chibre, le rater sait leurs fions dilatés faire une [url=http://mature-pornonline.info/]mature amateur porn[/url] séance latinas doit être salope en a, commencent quand [url=http://mature-pornonline.info/mature-mature/]mature mature[/url] les couleurs avec les [url=http://mature-pornonline.info/1000-x-mature/]1000 x mature[/url] et belle brune en pour le gars l'occasion se présente.

Le chanceux à gonzesse depuis un, et une petite venir empaler la bien mignon et [url=http://mature-pornonline.info/german-mature/]german mature[/url] deux petites filles, la botte secrète et ça sent le.

La salope adore pipe pour le, que le salopard puissants à même jusqu'à ce qu'il ne plus en, deux grosses queues un canapé avec de jeune fille pour des sensations sa foune rasée et comprendre à quel sur les belles [url=http://mature-pornonline.info/videos-sexy-matures/]videos sexy matures[/url]. La minette suce puisqu'ils sont tout, parois anales sans alors se lâcher des gémissements intenses, fente de la et soit en vaginal rêve de me.

Search Linux Resources