Virtual Private Server (VPS) Hosting provided by Central Point Networking cpnllc.com
For some reason, the "Nodelist" and "Recent Callers" features are not working.
| Sysop: | Ray Quinn |
|---|---|
| Location: | Visalia, CA |
| Users: | 60 |
| Nodes: | 10 (0 / 10) |
| Uptime: | 03:47:00 |
| Calls: | 12 |
| Files: | 12,929 |
| Messages: | 98,349 |
Check out the US 99 menu above for links to information about US Highway 99, after which the US 99 BBS is named.
Be sure to click on the Amateur Radio menu item above for packet BBSes, packet software, packet organizations, as well as packet how-to's. Also included is links to local and some not-so-local Amateur Radio Clubs.
Has anyone got a script that they are using to process fidonet mail as it is received. I am struggling with a second net, who processes file echos from Fidonet. so my BBBS just ignores the second file.
I was running bbbs bogus W/B and bbbs btick from a bash script. I feel doing i every minute is a waste of resources
Has anyone got a script that they are using to process fidonet mail as it is received. I am struggling with a second net, who processes file echos from Fidonet. so my BBBS just ignores the second file.
I was running bbbs bogus W/B and bbbs btick from a bash script. I feel doing i
every minute is a waste of resources
Sean Rima wrote to Alan Ianson <=-
Are you having an issue with the APOD area? I sometimes get an issue
like that with the epod area myself. I have been considering renaming
the files hatched in fsxNet with a different filename. If I know others had issues I would do that for the apod hatches.
Yeah that's the issue I am hitting. I have put it onto a every 1 minute process to get around it, so far so good. It just happens that
sometimes, that both send me the same file almost at the same time
I have been using a basic script. Maybe I will push the boundary of my shell scripting :)
Alan Ianson wrote to Sean Rima <=-
Sean Rima wrote to Alan Ianson <=-
Are you having an issue with the APOD area? I sometimes get an issue
like that with the epod area myself. I have been considering
renaming
the files hatched in fsxNet with a different filename. If I know
others
had issues I would do that for the apod hatches.
Yeah that's the issue I am hitting. I have put it onto a every 1
minute
process to get around it, so far so good. It just happens that
sometimes, that both send me the same file almost at the same time
OK, I have renamed slightly the files going into FSX_IMGE so that shouldn't happen anymore for that area.
I have been using a basic script. Maybe I will push the boundary of
my
shell scripting :)
Mine is also very basic. I have been meaning to beef it up for years but
I haven't gotten to it yet. ;)
My script has a test for usermail.flg and if found runs a mail scan. Something similar could be done based on gotmail.flg that is created on received mail. I'll include it below.
#!/bin/sh
# This script will toss incoming mail and files
export TZUTC="-0700"
export TZ="PDT+7"
cd /bbbs
./bbbs bogus w >/dev/null 2>&1
./bbbs btick >/dev/null 2>&1
./bbbs bfilsort >/dev/null 2>&1
./bbbs bfileidx >/dev/null 2>&1
touch /bbbs/work/rescan.2
# outgoing mail
if [ -f /bbbs/work/usermail.flg ]; then
rm -f /bbbs/work/usermail.flg
cd /bbbs
./bbbs bogus r > /dev/null 2>&1
touch /bbbs/work/rescan.2
fi
The above is my mailin.sh script.