• SCAN_CFG_TOYOU vs SCAN_CFG_YONLY

    From Nightfox@VERT/DIGDIST to All on Wed Mar 4 19:35:46 2015
    I was looking at the message scan values & scan config values in sbbsdefs.jsãand am wondering what the difference is between SCAN_CFG_TOYOU andãSCAN_CFG_YONLY? The comments say SCAN_CFG_TOYOU is "Auto-scan for unreadãmessages to you" and SCAN_CFG_YONLY is "Auto-scan for new messsages to youãonly" - Both of those sound like they could be the same.. I'm not clear on theãdifference based on those comments:ãã /********************************************/ã /* Bits in msg_area.sub[].scan_cfg*/ã /********************************************/ãvar SCAN_CFG_NEW=5; /* Auto-scan for new messages*/ãvar SCAN_CFG_TOYOU=(1<<1); /* Auto-scan for unread messages to you*/ãvar SCAN_CFG_YONLY=(1<<8); /* Auto-scan for new messages to you only*/ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS - digitaldistortionbbs.comã
  • From Mindless Automaton@VERT/ELDRITCH to Nightfox on Thu Mar 5 14:25:36 2015
    On 3/4/2015 10:35 PM, Nightfox wrote:
    I was looking at the message scan values & scan config values in sbbsdefs.js


    Lets guess!

    var SCAN_CFG_TOYOU=(1<<1); /* Auto-scan for unread messages to you*/

    Messages sent to ALL or multiple users including you?

    var SCAN_CFG_YONLY=(1<<8); /* Auto-scan for new messages to you only*/

    Messages sent to you and only you!

    -Mindless Automaton
    ---
    þ Synchronet þ Eldritch Clockwork BBS - eldritch.darktech.org
  • From Nightfox@VERT/DIGDIST to Mindless Automaton on Thu Mar 5 12:47:41 2015
    Lets guess!ã > ã > > var SCAN_CFG_TOYOU=(1<<1); /* Auto-scan for unread messages to you*/ã > ã > Messages sent to ALL or multiple users including you?ããBut how would that work? In a networked message area, for instance, how doãyou address a message to multiple people? Would you use a comma-separatedãlist of names? Is there a standard among BBSes for that?ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS - digitaldistortionbbs.comã
  • From Digital Man@VERT to Nightfox on Mon Mar 9 20:33:40 2015
    Re: SCAN_CFG_TOYOU vs SCAN_CFG_YONLYã By: Nightfox to All on Wed Mar 04 2015 07:35 pmãã > I was looking at the message scan values & scan config values in sbbsdefs.jsã > and am wondering what the difference is between SCAN_CFG_TOYOU andã > SCAN_CFG_YONLY? The comments say SCAN_CFG_TOYOU is "Auto-scan for unreadã > messages to you" and SCAN_CFG_YONLY is "Auto-scan for new messsages to youã > only" - Both of those sound like they could be the same.. I'm not clear onã > the difference based on those comments:ã >ã > /********************************************/ã > /* Bits in msg_area.sub[].scan_cfg*/ã > /********************************************/ã > var SCAN_CFG_NEW=5; /* Auto-scan for new messages*/ã > var SCAN_CFG_TOYOU=(1<<1); /* Auto-scan for unread messages to you*/ã > var SCAN_CFG_YONLY=(1<<8); /* Auto-scan for new messages to you only*/ããIn Synchronet, there are 2 types of message scans:ãã(N)ew message scan (the 'N' command from the main menu of the classic shell)ã(S)can for msgs to you (the 'S' command from the main menu)ããThe (N) scan uses "new msg pointers" to find an display new messages while the ã(S) scan checks the 'read flag' on messages address to *you* (regardless of any ã"new-scan" pointer value).ããThe (N) scan is configured with the '&N' command (again, classic shell).ãThe (S) scan is configured with the '&S' command.ããThe &N command can be used to change each sub-boards "new-scan" config to one ãof 3 possible values: off, new msgs, new msgs to you only. These settings ãcorrespond to these values (for each user for each sub-board):ããOff: bits 0, 2, and 8 offãNew-msgs: Bits 0 and 2 (SCAN_CFG_NEW))ãNew-msgs-to-you-only: Bits 0, 2, and 8 (SCAN_CFG_NEW|SCFG_CFG_YONLY)ããThe &S command can be used to change each sub-boards "your-scan" config to one ãof 2 possible values: off and on. These settings correspond to these values ã(for each user for each sub-board):ããOff: (Bit 1 off)ãOn: (Bit 1 on, SCAN_CFG_TOYOU)ããI hope that helps. Let me know if you need more details.ãã digital manããSynchronet "Real Fact" #28:ãRob Swindell first called BBSes (at 300bps) with an Apple II computer in 1982.ãNorco, CA WX: 61.7øF, 73.0% humidity, 1 mph SE wind, 0.00 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Nightfox@VERT/DIGDIST to Digital Man on Wed Mar 11 20:03:06 2015
    Re: SCAN_CFG_TOYOU vs SCAN_CFG_YONLYã By: Digital Man to Nightfox on Mon Mar 09 2015 20:33:40ãã DM> In Synchronet, there are 2 types of message scans:ãã DM> (N)ew message scan (the 'N' command from the main menu of the classicã DM> shell) (S)can for msgs to you (the 'S' command from the main menu)ãã DM> The (N) scan uses "new msg pointers" to find an display new messages whileã DM> the (S) scan checks the 'read flag' on messages address to *you*ã DM> (regardless of any "new-scan" pointer value).ãã DM> The &N command can be used to change each sub-boards "new-scan" config toã DM> one of 3 possible values: off, new msgs, new msgs to you only. Theseã DM> settings correspond to these values (for each user for each sub-board):ãã DM> Off: bits 0, 2, and 8 offã DM> New-msgs: Bits 0 and 2 (SCAN_CFG_NEW))ã DM> New-msgs-to-you-only: Bits 0, 2, and 8 (SCAN_CFG_NEW|SCFG_CFG_YONLY)ãã DM> The &S command can be used to change each sub-boards "your-scan" config toã DM> one of 2 possible values: off and on. These settings correspond to theseã DM> values (for each user for each sub-board):ãã DM> Off: (Bit 1 off)ã DM> On: (Bit 1 on, SCAN_CFG_TOYOU)ããI see - This is helpful, thanks.ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS - digitaldistortionbbs.comã