Getting an update about ham radio through a commercial service is in no way prohibited as far as I know. The reverse is probably not true.<br><br><div class="gmail_quote">On Fri, Feb 11, 2011 at 8:35 AM, John Gorkos <span dir="ltr"><<a href="mailto:jgorkos@gmail.com">jgorkos@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">It "can" be done.  It hasn't yet.  What you're asking for is 4-6 hours of<br>
custom coding (mostly for the web interface).  Do you have a web server that<br>
can host something like this?  I've got a few hours this weekend I can use to<br>
code this.<br>
Let me make sure I've got the requirements right:<br>
You want a web interface that allows you to enter a "monitored" call sign, and<br>
an email address to send a message to when that position report from that<br>
monitored callsign indicates movement.  You want one message only.  Then, time<br>
passes and the monitored station stops moving.  Once the station starts moving<br>
again, you want another text message.<br>
The SMS messages will have to be sent via email (i.e.<br>
<a href="mailto:2125551212@sms.verizon.com">2125551212@sms.verizon.com</a>), since a direct SMS interface is spendy and less<br>
standard.<br>
<br>
Do you have any programming skills you could apply to this?  Web design,<br>
maybe?  I hate web design, but the back-end portion isn't too difficult.  This<br>
request will probably irritate some people on this list, FWIW.  Everyone has<br>
an imaginary line they draw between "ham radio" and "commercial radio and<br>
internet."  Using your cellphone/commercial radio to get updates about APRS<br>
happenings on ham radio is probably on the far side of some peoples' lines.<br>
<font color="#888888"><br>
John Gorkos<br>
AB0OO<br>
</font><div><div></div><div class="h5"><br>
On Thursday, February 10, 2011 18:48:04 Steve Hanis wrote:<br>
> Thank you for your reply. I am looking for a way to trigger an email, IM or<br>
> SMS using existing web interfaces. A way to "push" an alert to me when I am<br>
> working or relaxing at home. Can this be done?<br>
> Kind Regards,<br>
> Steve<br>
><br>
><br>
><br>
> On Tue, Feb 8, 2011 at 10:41 AM, Guido Trentalancia<br>
> <<a href="mailto:iz6rdb@trentalancia.com">iz6rdb@trentalancia.com</a><br>
><br>
> > wrote:<br>
> ><br>
> > Hello Steve !<br>
> ><br>
> > On Mon, 07/02/2011 at 22.19 -0600, Steve Hanis wrote:<br>
> > > A friend and I just starting using APRS.  Is there way to trigger a SMS<br>
> ><br>
> > text<br>
> ><br>
> > > message or email via Internet monitoring when his APRS goes active or<br>
> ><br>
> > moving?<br>
> ><br>
> > > This would let me know he is mobile and available to chat or view his<br>
> ><br>
> > location<br>
> ><br>
> > > on a map. My apologies if the question is too simplistic for this<br>
> > > list, I am a newbie.<br>
> > ><br>
> > > Thanks,<br>
> > > Steve<br>
> > > AB5ID<br>
> ><br>
> > Suppose your friend has call AB4HB, then you could use something like:<br>
> ><br>
> > FROMEMAILADDRESS=<a href="mailto:dmesteve@gmail.com">dmesteve@gmail.com</a><br>
> > MYEMAILADDRESS=<a href="mailto:dmesteve@gmail.com">dmesteve@gmail.com</a><br>
> > APRSCALLSIGN=AB4HB<br>
> > SMTP_SERVER=<a href="http://smtp.ab5id.org" target="_blank">smtp.ab5id.org</a><br>
> > axlisten -a | grep -q " fm $APRSCALLSIGN to " && echo "An APRS packet<br>
> > from $APRSCALLSIGN has been heard" > /tmp/aprs_message.txt && env<br>
> > MAILRC=/dev/null from=$FROMEMAILADDRESS smtp=$SMTP_SERVER mailx -v -n -s<br>
> > "Mail from APRS" $MYEMAILADDRESS < /tmp/aprs_message.txt && rm<br>
> > -f /tmp/aprs_message.txt<br>
> ><br>
> > Note that APRSCALLSIGN is case sensitive (unless you pass the -i option<br>
> > to grep). Note that SMTP_SERVER needs to be defined according to your<br>
> > actual smtp server.<br>
> > Most importantly note that the above will send out an email message for<br>
> > every packet that is received from APRSCALLSIGN and this might not be<br>
> > desirable as there might be a lot of packets coming continuously (so you<br>
> > might do things better with some extra code that checks whether a<br>
> > message has already been sent recently, for example by creating a<br>
> > temporary file each time a message is sent and then checking that the<br>
> > timestamp of such file is not too recent before sending a new email<br>
> > message).<br>
> ><br>
> > Or otherwise you can download a tiny program that I wrote<br>
> > (ax_emergency_listen) which is generally used to monitor APRS emergency<br>
> > packets and adapt it to your needs (by modifying the C source code):<br>
> ><br>
> > <a href="http://iz6rdb.trentalancia.com/en/aprs_igate.html" target="_blank">http://iz6rdb.trentalancia.com/en/aprs_igate.html</a><br>
> ><br>
> > 73,<br>
> ><br>
> > Guido IZ6RDB<br>
<br>
</div></div><div><div></div><div class="h5">_______________________________________________<br>
aprssig mailing list<br>
<a href="mailto:aprssig@tapr.org">aprssig@tapr.org</a><br>
<a href="https://www.tapr.org/cgi-bin/mailman/listinfo/aprssig" target="_blank">https://www.tapr.org/cgi-bin/mailman/listinfo/aprssig</a><br>
</div></div></blockquote></div><br>