• new mail notification

    From echto@VERT/ECHTOBBS to Digital Man on Mon Jan 18 12:46:42 2016
    DM,ããIs it possible with baja to notify a user there is new mail waiting; say forãexample when a main menu that is a baja module is executed? The reason I askãis becuase the way I have set up sbbs, baja modules are called one after theãother the moment a user logs in. All my sbbs menus are baja modules. SBBSechoãdoesn't get a chance to notify the user of new mail.ãã echtoãã---ã þ Synchronet þ -=-= echto bbs =-=-ã
  • From Digital Man@VERT to echto on Mon Jan 18 16:15:52 2016
    Re: new mail notificationã By: echto to Digital Man on Mon Jan 18 2016 12:46 pmãã > DM,ã >ã > Is it possible with baja to notify a user there is new mail waiting; say forã > example when a main menu that is a baja module is executed? The reason Iã > ask is becuase the way I have set up sbbs, baja modules are called one afterã > the other the moment a user logs in. All my sbbs menus are baja modules.ã > SBBSecho doesn't get a chance to notify the user of new mail.ããI guess we need to start with a definition of "mail".ããSBBSecho only deals with FidoNet mail, or more specifically, FidoNet netmailãand echomail. Is the kind of "mail" you're referring to? SBBSecho creates theãtelegrams to users, notifying them of received netmail and echomail, when itãtosses the mail. SBBSecho doesn't need to run during logon to do this as theãtelegrams created when SBBSecho does run just sit there until they areãdisplayed to the user and then automatically deleted.ããIf you're just interested in displaying the number of personal email messagesãwaiting for a user, you can use the MAILW @-code to display this value.ãã digital manããSynchronet "Real Fact" #49:ãJAM and Squish were considered before developing Synchronet Message Base format.ãNorco, CA WX: 60.0øF, 78.0% humidity, 6 mph ENE wind, 0.00 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From echto@VERT/ECHTOBBS to Digital Man on Tue Jan 19 10:25:41 2016
    Re: new mail notificationã By: Digital Man to echto on Mon Jan 18 2016 16:15:52ãã > SBBSecho only deals with FidoNet mail, or more specifically, FidoNet netmailã > and echomail. Is the kind of "mail" you're referring to? SBBSecho createsã > the telegrams to users, notifying them of received netmail and echomail,ã > when it tosses the mail. SBBSecho doesn't need to run during logon to doã > this as the telegrams created when SBBSecho does run just sit there untilã > they are displayed to the user and then automatically deleted.ããYes, apologies, it's netmail and echomail. I can send a test netmail messageãto another sbbs bbs that is operating with a default configuration and duringãthe login sequence SBBSecho displays,ããSBBSecho: So-and-so sent you netmail from this nodeããWhen I log into my sbbs, SBBSecho never displays the message about waitingãnetmail. I suspect it is because I am calling baja module after baja module.ãIs there a way to read the telegrams without SBBSecho? And what state doesãSBBS have to be in to display the telegrams; I mean, what actions have to ãplace before SBBS decides it's OK to display telegrams. From my observations,ãSBBS will not display telegrams while a baja module is running, i.e. waitingãfor user input. I might be wrong about that, but that appears to be what I amãexperiencing.ãã > If you're just interested in displaying the number of personal emailã > messages waiting for a user, you can use the MAILW @-code to display thisã > value.ããThanks, I'll take a look at that.ãã echtoãã---ã þ Synchronet þ -=-= echto bbs =-=-ã
  • From Digital Man@VERT to echto on Tue Jan 19 15:17:18 2016
    Re: new mail notificationã By: echto to Digital Man on Tue Jan 19 2016 10:25 amãã > Re: new mail notificationã > By: Digital Man to echto on Mon Jan 18 2016 16:15:52ã >ã > > SBBSecho only deals with FidoNet mail, or more specifically, FidoNetã > > netmail and echomail. Is the kind of "mail" you're referring to? SBBSechoã > > creates the telegrams to users, notifying them of received netmail andã > > echomail, when it tosses the mail. SBBSecho doesn't need to run duringã > > logon to do this as the telegrams created when SBBSecho does run just sitã > > there until they are displayed to the user and then automaticallyã > > deleted.ã >ã > Yes, apologies, it's netmail and echomail. I can send a test netmailã > message to another sbbs bbs that is operating with a default configurationã > and during the login sequence SBBSecho displays,ã >ã > SBBSecho: So-and-so sent you netmail from this nodeã >ã > When I log into my sbbs, SBBSecho never displays the message about waitingã > netmail. I suspect it is because I am calling baja module after bajaã > module.ããI'm not really sure what you mean by "calling baja module after baja module".ãNormally, telegrams are displays during the logon process. If you're somehowãdefeating the logon process, I suppose that could prevent telegrams from beingãdisplayed to the user.ããIf you look in your sbbs data/msgs directory, do you see a buch ####.msg files?ãIf so, those are telegrams waiting to be displayed to users (normally, as theyãlogon).ãã > Is there a way to read the telegrams without SBBSecho?ããSBBSecho doesn't have anything to do with reading/displaying telegrams. You canãforce any waiting telegrams to be displayed to the user with the JSãbbs.get_telegram() method. There's no Baja-equivalent method, but you couldãforce the "message waiting" flag on with the following Baja code:ãã or _node_misc NODE_MSGWãã(this requires the !include of sbbsdefs.inc and nodedefs.inc)ããThe next time the BBS checks for pending telegrams (e.g. in a call to the BajaãSYNC function), any/all waiting telegrams should be displayed.ãã > And whatã > state does SBBS have to be in to display the telegrams; I mean, what actionsã > have to place before SBBS decides it's OK to display telegrams. From myã > observations, SBBS will not display telegrams while a baja module isã > running, i.e. waiting for user input. I might be wrong about that, but thatã > appears to be what I am experiencing.ããSBBS will check for an display telegrams in many circumstances, but to forceãthat check and display, use the Baja SYNC function.ãã > > If you're just interested in displaying the number of personal emailã > > messages waiting for a user, you can use the MAILW @-code to display thisã > > value.ã >ã > Thanks, I'll take a look at that.ããSounds like the @-code wasn't what you were looking for however.ãã digital manããSynchronet "Real Fact" #14:ãSBBSecho was introduced (replacing SBBSFIDO) for Synchronet v2 in 1994.ãNorco, CA WX: 60.8øF, 74.0% humidity, 4 mph ESE wind, 0.00 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Bill McGarrity@VERT/TEQUILAM to echto on Tue Jan 19 23:21:00 2016
    echto wrote to Digital Man <=-ãã ec> Re: new mail notificationã ec> By: Digital Man to echto on Mon Jan 18 2016 16:15:52ãã > SBBSecho only deals with FidoNet mail, or more specifically, FidoNet netmailã > and echomail. Is the kind of "mail" you're referring to? SBBSecho createsã > the telegrams to users, notifying them of received netmail and echomail,ã > when it tosses the mail. SBBSecho doesn't need to run during logon to doã > this as the telegrams created when SBBSecho does run just sit there untilã > they are displayed to the user and then automatically deleted.ãã ec> Yes, apologies, it's netmail and echomail. I can send a test netmailã ec> message to another sbbs bbs that is operating with a defaultã ec> configuration and during the login sequence SBBSecho displays,ãã ec> SBBSecho: So-and-so sent you netmail from this nodeãã ec> When I log into my sbbs, SBBSecho never displays the message aboutã ec> waiting netmail. I suspect it is because I am calling baja moduleã ec> after baja module. Is there a way to read the telegrams withoutã ec> SBBSecho? And what state does SBBS have to be in to display theã ec> telegrams; I mean, what actions have to place before SBBS decides it'sã ec> OK to display telegrams. From my observations, SBBS will not displayã ec> telegrams while a baja module is running, i.e. waiting for user input.ã ec> I might be wrong about that, but that appears to be what I amã ec> experiencing.ãã > If you're just interested in displaying the number of personal emailã > messages waiting for a user, you can use the MAILW @-code to display thisã > value.ãã ec> Thanks, I'll take a look at that.ããTry adding an ! to your fidoin command. That will tell sbbsecho to notifyãusers of waiting netmail or echomail.ããã--ããBillããTelnet: tequilamockingbirdonline.netãWeb: bbs.tequilamockingbirdonline.netãFTP: ftp.tequilamockingbirdonline.net:2121ãIRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697ãRadio: radio.tequilamockingbirdonline.net:8010/liveããã... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!ã--- MultiMail/Win32 v0.50ã þ Synchronet þ TequilaMockingbird Online - Toms River, NJã
  • From echto@VERT/ECHTOBBS to Bill McGarrity on Wed Jan 20 18:41:28 2016
    Re: Re: new mail notificationã By: Bill McGarrity to echto on Wed Jan 20 2016 07:21 amãã BM> Try adding an ! to your fidoin command. That will tell sbbsecho to notifyã BM> users of waiting netmail or echomail.ããThe ! is there. %!sbbsecho%. -lesr!ãã echtoãã---ã þ Synchronet þ -=-= echto bbs =-=-ã
  • From Bill McGarrity@VERT/TEQUILAM to echto on Sat Jan 23 13:46:00 2016
    echto wrote to Bill McGarrity <=-ãã ec> @VIA: VERT/ECHTOBBSã ec> @MSGID: <56A04558.2429.syncbaja@bbs.echto.net>ã ec> @REPLY: <569F0C74.2635.syncbaja@tequilamockingbirdonline.net>ã ec> @TZ: 41e0ã ec> Re: Re: new mail notificationã ec> By: Bill McGarrity to echto on Wed Jan 20 2016 07:21 amãã BM> Try adding an ! to your fidoin command. That will tell sbbsecho to notifyã BM> users of waiting netmail or echomail.ãã ec> The ! is there. %!sbbsecho%. -lesr!ããAs DM has already entioned, sbbsecho will only notify FTN style echonail. ãNetmail and/or email should show. On my system, it shows after all the logonãscreen which is fine for me.ããã--ããBillããTelnet: tequilamockingbirdonline.netãWeb: bbs.tequilamockingbirdonline.netãFTP: ftp.tequilamockingbirdonline.net:2121ãIRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697ãRadio: radio.tequilamockingbirdonline.net:8010/liveããã... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!ã--- MultiMail/Win32 v0.50ã þ Synchronet þ TequilaMockingbird Online - Toms River, NJã
  • From echto@VERT/ECHTOBBS to Bill McGarrity on Sat Jan 23 15:07:01 2016
    Re: Re: new mail notificationã By: Bill McGarrity to echto on Sat Jan 23 2016 13:46:00ãã BM> As DM has already entioned, sbbsecho will only notify FTN style echonail.ã BM> Netmail and/or email should show. On my system, it shows after all theã BM> logon screen which is fine for me.ããYes, that is correct. The way I have my system configured, baja module passedãoff to baja module passed of to baja module, there are no notifications afterãlogging in.ããI found the telegraphs. There's a bunch of them pending.ããhttp://imgur.com/0ofUCLEããWhy they aren't being displayed is what puzzles me.ãã echtoãã---ã þ Synchronet þ -=-= echto bbs =-=-ã
  • From Digital Man@VERT to echto on Sat Jan 23 21:35:52 2016
    Re: Re: new mail notificationã By: echto to Bill McGarrity on Sat Jan 23 2016 03:07 pmãã > Re: Re: new mail notificationã > By: Bill McGarrity to echto on Sat Jan 23 2016 13:46:00ã >ã > BM> As DM has already entioned, sbbsecho will only notify FTN styleã > BM> echonail. Netmail and/or email should show. On my system, it showsã > BM> after all the logon screen which is fine for me.ã >ã > Yes, that is correct. The way I have my system configured, baja moduleã > passed off to baja module passed of to baja module, there are noã > notifications after logging in.ã >ã > I found the telegraphs. There's a bunch of them pending.ã >ã > http://imgur.com/0ofUCLEã >ã > Why they aren't being displayed is what puzzles me.ããBecause you're not letting the BBS run the logon process is my guess.ãã digital manããSynchronet "Real Fact" #73:ãVertrauen went online (as a WWIV BBS running on a 10MHz PC-XT clone) in 1988.ãNorco, CA WX: 52.3øF, 85.0% humidity, 4 mph SE wind, 0.00 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã