home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
WWIVMODS
/
MODSUNKN.ZIP
/
SCANMAIL.MOD
< prev
next >
Wrap
Text File
|
1990-05-10
|
2KB
|
61 lines
Birdhunter #1 @3451
Tue May 08 22:06:19 1990
!!!!!!! MAILINMS.MOD !!!!!
From Birdhunter 1@3451
314-772-6112
Did you ever wind up seeing something in a post that reminds you that you
want to mail ANOTHER user??? And to do so you have to Quit your scan,
Email or Fmail the person and start your scan all over again??!!!
Frustrating!!!!
OK, this mod will allow you to both "F"mail the sysop OR to mail ANY
user in the NET or on your board FROM the message WITHOUT quitting the
message base.
Search for the following in MSGBASE1.C
void scan(int msgnum, int optype, int *nextsub)
{
char s[81],s1[81],s2[81],*b,*ss1;
int i,i1,i2,done,quit,abort,next,val,realexpress;
slrec ss;
When you reach that function search for the following:
case 'B':
if (*nextsub!=0) {
*nextsub=1;
done=1;
quit=1;
}
ADD this code BEFORE case 'B': as shown below:
case 'F': /* BH mod */
feedback(); /* BH mod */
break; /* BH mod */
case '=': /* BH mod */
/* Note the = can be replaced by ANY unused function that you like */
send_email(); /* BH mod */
break; /* BH mod */
case 'B': /* the rest is existing code */
if (*nextsub!=0) {
*nextsub=1;
done=1;
quit=1;
}
break;
case 'T':
optype=1;
break;
That's it. I don't normally publish mods, just hack. So any
problems with this, let me know but do NOT hold me responsible!!
Birdhunter