• [echoirlp] Logging Callsign/s

    From VK4DAK@432:1/101 to echoirlp@groups.io on Sat Jan 30 17:07:57 2021
    Hi all!

    I have a question that relates to the logging/recording of the callsigns that connect to my node.

    In the log file - I am seeing "EchoIRLP: connected echolink XXXXXX 1". When there is a second station that connects in (at the same time) - I am seeing "EchoIRLP: connected echolink XXXXXX 2". The node has limited connections - hence this question.

    I am only seeing the initial call sign recorded in the "$LOCAL/echo_call" file.

    I am trying to find (I guess?) the EchoIRLP script that is making the log details with the "connected echo link" reference - however thus far - without avail. I am hoping that this command line will help point me in the direction as to where the initial/additional/subsequent connection details are sourced.

    Can anyone advise what script is picking up these connection details and where/if I am able to see these details as I am wishing to extract this data for notification purposes.

    Appreciate your assistance - Hope everyone is well?
    Dave,
    VK4DAK


    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#168): https://groups.io/g/echoirlp/message/168
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From David McAnally@432:1/101 to echoirlp@groups.io on Sat Jan 30 19:33:45 2021
    The tbd program runs the event script echoirlp-status, which calls other scripts based on the event. Connections cause the echo_inbound script to be called. I think you will find echo_inbound is the script where you want to look.

    David M.
    WD5M


    On Sat, Jan 30, 2021 at 7:07 PM VK4DAK <vk4dak@bigpond.com> wrote:

    Hi all!

    I have a question that relates to the logging/recording of the callsigns
    that connect to my node.

    In the log file - I am seeing "EchoIRLP: connected echolink XXXXXX 1".
    When there is a second station that connects in (at the same time) - I am seeing "EchoIRLP: connected echolink XXXXXX 2". The node has limited connections - hence this question.

    I am only seeing the initial call sign recorded in the "$LOCAL/echo_call" file.

    I am trying to find (I guess?) the EchoIRLP script that is making the log details with the "connected echo link" reference - however thus far -
    without avail. I am hoping that this command line will help point me in the direction as to where the initial/additional/subsequent connection details are sourced.

    Can anyone advise what script is picking up these connection details and where/if I am able to see these details as I am wishing to extract this
    data for notification purposes.

    Appreciate your assistance - Hope everyone is well?
    Dave,
    VK4DAK








    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#169): https://groups.io/g/echoirlp/message/169
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From siri64@432:1/101 to echoirlp@groups.io on Sat Jan 30 20:48:27 2021
    Thank youSent from my Galaxy-------- Original message --------From: David McAnally <David.McAnally@gmail.com> Date: 1/30/21 8:34 PM (GMT-05:00) To: echoirlp@groups.io Subject: Re: [echoirlp] Logging Callsign/s The tbd program runs the event script echoirlp-status, which calls otherscripts based on the event. Connections cause the echo_inbound script to becalled. I think you will find echo_inbound is the script where you want tolook.David M.WD5MOn Sat, Jan 30, 2021 at 7:07 PM VK4DAK <vk4dak@bigpond.com> wrote:> Hi all!>> I have a question that relates to the logging/recording of the callsigns> that connect to my node.>> In the log file - I am seeing "EchoIRLP: connected echolink XXXXXX 1".> When there is a second station that connects in (at the same time) - I am> seeing "EchoIRLP: connected echolink XXXXXX 2". The node has limited> connections - hence this question.>> I am only seeing the initial call sign recorded in the  "$LOCAL/echo_call"> file.>> I am trying to find (I guess?) the EchoIRLP script that is making the log> details with the "connected echo link" reference - however thus far -> without avail. I am hoping that this command line will help point me in the> direction as to where the initial/additional/subsequent connection details> are sourced.>> Can anyone advise what script is picking up these connection details and> where/if I am able to see these details as I am wishing to extract this> data for notification purposes.>> Appreciate your assistance - Hope everyone is well?> Dave,> VK4DAK>>> >>>
    -=-=-=-=-=-=-=-=-=-=-=-Groups.io Links: You receive all messages sent to this group.View/Reply Online (#170): https://groups.io/g/echoirlp/message/170Mute This Topic: https://groups.io/mt/80249397/3738798Group Owner: echoirlp+owner@groups.ioUnsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]-=-=-=-=-=-=-=-=-=-=-=-

    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From VK4DAK@432:1/101 to echoirlp@groups.io on Sat Jan 30 18:35:05 2021
    Thanks for your reply.

    I have been looking through all of the EchoIRLP scripts and what files they reference....

    The one that "appears" to be similar to the one that I mention is found in the "echoirlp_status" file

    if [ "$1" = "connected" ]; then
    if [ "$2" = "echolink" ]; then
    "$ECHO_SCRIPT"/echo_inbound $3 $4 $5
    elif [ "$2" = "outbound" ] ; then
    "$ECHO_SCRIPT"/call_status $3 $4 $5
    fi
    fi


    I am trying to achieve this via the custom_on file rather than mess with existing EchoIRLP files

    What I am wishing to achieve is something similar to (still working on my syntax/crash management):

    # Record Callsign Details in Text File
    if [ "$1" = "connected" ] && [ "$2" = "echolink" ]; then
    cat ("$ECHO_SCRIPT"/echo_inbound $3) >> $CUSTOM/data/record_call.txt
    fi

    I cannot find reference to $3 input in the echo_inbound script....

    The only reference is:
    if [ "$CUSTOM_ON" = "YES" ] ; then
    if [ -f $CUSTOM/custom_on ] ; then
    $CUSTOM/custom_on "$1" "$2" "$3" "$4"
    fi
    fi

    I am trying to basically extract the connected callsign only and cat that to the record_call.txt file for reference. I am wishing for it to be done "live" rather than run a batch script to extract the same data from the log file.


    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#171): https://groups.io/g/echoirlp/message/171
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From Vk3jed@432:1/101 to VK4DAK on Sun Jan 31 20:10:00 2021
    On 01-30-21 17:07, VK4DAK wrote to echoirlp@groups.io <=-

    Hi all!

    I have a question that relates to the logging/recording of the
    callsigns that connect to my node.

    In the log file - I am seeing "EchoIRLP: connected echolink XXXXXX 1". When there is a second station that connects in (at the same time) - I
    am seeing "EchoIRLP: connected echolink XXXXXX 2". The node has limited connections - hence this question.

    Are you sure the second connection is "echolink" and not "speakfreely"? Try posting a copy and paste of the relevant part of the log itself, as the moment it's interpreted by a human, the integrity of the log information is destroyed.
    IOW, I can't trust what you've typed is what's actually in the log. Nothing personal, it's a human thing, we all do it. :)

    I am only seeing the initial call sign recorded in the
    "$LOCAL/echo_call" file.

    Normally, there will be a second connection at the same time as the Echolink station connects, but it will be using speakfreely, not echolink, because that's the IRLP software connecting to tbd, so the audio can be routed to/from the radio.

    I am trying to find (I guess?) the EchoIRLP script that is making the
    log details with the "connected echo link" reference - however thus far
    - without avail. I am hoping that this command line will help point me
    in the direction as to where the initial/additional/subsequent
    connection details are sourced.

    First thing I'd need to see is an actual extract from the log, to confirm my suspicions.



    ... Love is like war: easy to begin, but very hard to stop.
    === MultiMail/Win v0.52
    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From Vk3jed@432:1/101 to VK4DAK on Sun Jan 31 20:28:00 2021
    On 01-30-21 18:35, VK4DAK wrote to echoirlp@groups.io <=-

    Thanks for your reply.

    I have been looking through all of the EchoIRLP scripts and what files they reference....

    The one that "appears" to be similar to the one that I mention is found
    in the "echoirlp_status" file

    if [ "$1" = "connected" ]; then
    if [ "$2" = "echolink" ]; then
    "$ECHO_SCRIPT"/echo_inbound $3 $4 $5
    elif [ "$2" = "outbound" ] ; then
    "$ECHO_SCRIPT"/call_status $3 $4 $5
    fi
    fi

    OK, just a point, the $3. $4, $5 here are reletavice to the echoirlp_status acript

    I am trying to achieve this via the custom_on file rather than mess
    with existing EchoIRLP files

    What I am wishing to achieve is something similar to (still working on
    my syntax/crash management):

    # Record Callsign Details in Text File
    if [ "$1" = "connected" ] && [ "$2" = "echolink" ]; then
    cat ("$ECHO_SCRIPT"/echo_inbound $3) >>
    $CUSTOM/data/record_call.txt fi

    I cannot find reference to $3 input in the echo_inbound script....

    $ECHO_SCRIPT"/echo_inbound $3 $4 $5 <-- $3 here is...

    $1 within the echo_inbound script, because it's the first parameter passed to that script. different context, that may have tripped you up.

    The only reference is:
    if [ "$CUSTOM_ON" = "YES" ] ; then
    if [ -f $CUSTOM/custom_on ] ; then
    $CUSTOM/custom_on "$1" "$2" "$3" "$4"
    fi
    fi

    Again, you need to work out the meaning of the variables in each context. Guess I needed to comment tha code a bit more all those years ago LOL. But trawking through the code, $1 is the variable within custom_on that you want. However, custom_on will be triggered by both IRLP and Echolink nodes connecting. If you only want Echolink, you need to ignore anything that starts with "stn" or "ref". This should also log inblund and outbound connections. Don't know if you want that too.

    I am trying to basically extract the connected callsign only and cat
    that to the record_call.txt file for reference. I am wishing for it to
    be done "live" rather than run a batch script to extract the same data from the log file.

    Shouldn't be too hard.

    Within echo_inbound, the command line parameters have the following meanings:

    $1 is the callsign of the incoming Echolink connection.
    $2 is an optional "notimeout", which tells the system to ignore idle timers for this connection.


    ... DOS means never having to live hand-to-mouse.
    === MultiMail/Win v0.52
    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From VK4DAK@432:1/101 to echoirlp@groups.io on Sun Jan 31 03:19:02 2021
    G'day Tony

    Thanks for your response.

    Here is an extract of my log file as requested:
    Jan 28 2021 07:32:42 +1000 EchoIRLP: connected echolink VK4MGC 1
    Jan 28 2021 07:32:49 +1000 EchoIRLP: connected speakfreely VK4DAK-R 2
    Jan 28 2021 07:33:42 +1000 EchoIRLP: connected echolink VK2LRB 3

    As you can see, there are two inbound active connections (MGC and LRB). I am not referencing my station in the count.

    Yup, upon further investigation - it looks like the relevant callsigns are reference at $1 in the echo_inbound. I am guessing that since we are referencing the echo_inbound file - this should take care of the IRLP side of callsigns being recorded.

    If $1 in custom_on is called, it would possibly make reference to both IRLP/EL calls, so might be best to stick to the echo_inbound file?

    I am seeing that only the first inbound callsign is recorded when parsing `cat $LOCAL/echo_call`. I am wishing to obtain the initial and subsequent inbound (aka all EL inbound calls) callsigns and cat them to the nominated file for recording.

    Maybe something similar to:-
    cat $($ECHO_SCRIPT/echo_inbound "$1") >> $CUSTOM/data/record_call.txt

    May work (ill have to check my syntax)??


    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#175): https://groups.io/g/echoirlp/message/175
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From VK4DAK@432:1/101 to echoirlp@groups.io on Sun Jan 31 03:19:02 2021
    [Edited Message Follows]

    G'day Tony

    Thanks for your response.

    Here is an extract of my log file as requested:
    Jan 28 2021 07:32:42 +1000 EchoIRLP: connected echolink VK4MGC 1
    Jan 28 2021 07:32:49 +1000 EchoIRLP: connected speakfreely VK4DAK-R 2
    Jan 28 2021 07:33:42 +1000 EchoIRLP: connected echolink VK2LRB 3

    As you can see, there are two inbound active connections (MGC and LRB). I am not referencing my station in the count.

    Yup, upon further investigation - it looks like the relevant callsigns are reference at $1 in the echo_inbound. I am guessing that since we are referencing the echo_inbound file - this should take care of the IRLP side of callsigns being recorded.

    If $1 in custom_on is called, it would possibly make reference to both IRLP/EL calls, so might be best to stick to the echo_inbound file?

    I am seeing that only the first inbound callsign is recorded when parsing `cat $LOCAL/echo_call`. I am wishing to obtain the initial and subsequent inbound (aka all EL inbound calls) callsigns and cat them to the nominated file for recording.

    Maybe something similar to (using echo):-
    echo $($ECHO_SCRIPT/echo_inbound "$1") >> $CUSTOM/data/record_call.txt

    May work (ill have to check my syntax)??


    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#175): https://groups.io/g/echoirlp/message/175
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From VK4DAK@432:1/101 to echoirlp@groups.io on Sun Jan 31 03:19:02 2021
    [Edited Message Follows]

    G'day Tony

    Thanks for your response.

    Here is an extract of my log file as requested:
    Jan 28 2021 07:32:42 +1000 EchoIRLP: connected echolink VK4MGC 1
    Jan 28 2021 07:32:49 +1000 EchoIRLP: connected speakfreely VK4DAK-R 2
    Jan 28 2021 07:33:42 +1000 EchoIRLP: connected echolink VK2LRB 3

    As you can see, there are two inbound active connections (MGC and LRB). I am not referencing my station in the count.

    Yup, upon further investigation - it looks like the relevant callsigns are reference at $1 in the echo_inbound. I am guessing that since we are referencing the echo_inbound file - this should take care of the IRLP side of callsigns being recorded.

    If $1 in custom_on is called, it would possibly make reference to both IRLP/EL calls, so might be best to stick to the echo_inbound file?

    I am seeing that only the first inbound callsign is recorded when parsing `cat $LOCAL/echo_call`. I am wishing to obtain the initial and subsequent inbound (aka all EL inbound calls) callsigns and cat them to the nominated file for recording.

    Maybe something similar to (using echo):-
    echo $($ECHO_SCRIPT/echo_inbound "$1") >> $CUSTOM/data/record_call.txt

    ** Follow up on this syntax - the above line was recording the following in the
    requested text file:- "echo_inbound: System already conected."

    May work (ill have to check my syntax)??


    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#175): https://groups.io/g/echoirlp/message/175
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From VK4DAK@432:1/101 to echoirlp@groups.io on Sun Jan 31 14:23:33 2021
    Looks like I may have got it working....

    I have modified the "echoirlp-status" file to the following:

    if [ "$1" = "connected" ]; then
    if [ "$2" = "echolink" ]; then
    "$ECHO_SCRIPT"/echo_inbound $3 $4 $5
    #
    echo $3 >> /home/irlp/custom/data/record_call.txt
    #
    elif [ "$2" = "outbound" ] ; then
    "$ECHO_SCRIPT"/call_status $3 $4 $5
    fi
    fi

    Now - there may be a better way to do this (capture all incoming callsigns) so feedback is always welcome.
    The callsign stored in the $LOCAL file appears to be the station that creates the initial connection.

    Thoughts?


    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#177): https://groups.io/g/echoirlp/message/177
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From siri64@432:1/101 to echoirlp@groups.io on Sun Jan 31 19:41:34 2021
    Yes I got it working thank you I don't know  I just tried it again and it was working thanks so much for the helpSent from my Galaxy-------- Original message
    --------From: VK4DAK <vk4dak@bigpond.com> Date: 1/31/21 5:23 PM (GMT-05:00) To: echoirlp@groups.io Subject: Re: [echoirlp] Logging Callsign/s Looks like I may have got it working....I have modified the "echoirlp-status" file to the following:if [ "$1" = "connected" ]; then   if [ "$2" = "echolink" ]; then      "$ECHO_SCRIPT"/echo_inbound $3 $4 $5 # echo $3 >> /home/irlp/custom/data/record_call.txt #   elif [ "$2" = "outbound" ] ; then      "$ECHO_SCRIPT"/call_status $3 $4 $5   fifiNow - there may be a
    better way to do this (capture all incoming callsigns) so feedback is always welcome.The callsign stored in the $LOCAL file appears to be the station that creates the initial connection.Thoughts?
    -=-=-=-=-=-=-=-=-=-=-=-Groups.io Links: You receive all messages sent to this group.View/Reply Online (#178): https://groups.io/g/echoirlp/message/178Mute This Topic: https://groups.io/mt/80249397/3738798Group Owner: echoirlp+owner@groups.ioUnsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]-=-=-=-=-=-=-=-=-=-=-=-

    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From Tony Langdon@432:1/101 to echoirlp@groups.io on Mon Feb 1 18:07:04 2021
    On 1/2/21 9:23 am, VK4DAK wrote:
    Looks like I may have got it working....

    I have modified the "echoirlp-status" file to the following:

    if [ "$1" = "connected" ]; then
    if [ "$2" = "echolink" ]; then
    "$ECHO_SCRIPT"/echo_inbound $3 $4 $5
    #
    echo $3 >> /home/irlp/custom/data/record_call.txt
    #
    elif [ "$2" = "outbound" ] ; then
    "$ECHO_SCRIPT"/call_status $3 $4 $5
    fi
    fi
    That will work, at least for inbound connections.  If you wanted to log outbound connections as well, then you'd need to add another identical
    line within the block started by "elif [ "$2" = "outbound" ] ; then". 
    If you only want to log inbound, what you've done will work fine.

    Now - there may be a better way to do this (capture all incoming callsigns)
    so feedback is always welcome.
    The callsign stored in the $LOCAL file appears to be the station that creates
    the initial connection.

    Your method is pretty good.  Only refinements I might make are things
    like adding a timestamp, etc.  And yes, only the initial callsign is
    stored in $LOCAL/echo_call.  That was a design decision at the time to
    keep things as compatible with IRLP semantics as possible.

    P.S.  I'm replying from a different account, but it's still me.  I have
    two means of accessing the list.

    --
    73 de Tony VK3JED/VK3IRL
    http://vkradio.com



    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#179): https://groups.io/g/echoirlp/message/179
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From Tony Langdon@432:1/101 to echoirlp@groups.io on Mon Feb 1 18:34:11 2021
    On 31/1/21 10:19 pm, VK4DAK wrote:
    [Edited Message Follows]

    G'day Tony

    Thanks for your response.

    Here is an extract of my log file as requested:
    Jan 28 2021 07:32:42 +1000 EchoIRLP: connected echolink VK4MGC 1
    Jan 28 2021 07:32:49 +1000 EchoIRLP: connected speakfreely VK4DAK-R 2
    Jan 28 2021 07:33:42 +1000 EchoIRLP: connected echolink VK2LRB 3

    As you can see, there are two inbound active connections (MGC and LRB). I am
    not referencing my station in the count.
    Yep, 2 stations connecting in rapid succession.  That makes sense, can
    happen. :)

    Yup, upon further investigation - it looks like the relevant callsigns are
    reference at $1 in the echo_inbound. I am guessing that since we are referencing the echo_inbound file - this should take care of the IRLP side of callsigns being recorded.
    Yes, only incoming Echolink connections will be processed by echo_inbound.

    If $1 in custom_on is called, it would possibly make reference to both
    IRLP/EL calls, so might be best to stick to the echo_inbound file?

    Yes, custom_on is called by both IRLP and Echolink.  It's possible to
    tell which is which, but you would have to check for the presence of $LOCAL/echo_active (or $LOCAL/echo_call to verify it's an Echolink
    call.  But there's other issues - can't tell between inbound and
    outbound calls.  Also, custom_on will only be triggered by the first
    inbound connection - later connections while already connected won't be
    logged.

    One thing is intriguing me - how are you able to accept more than one
    inbound connection.  Are you using tlb instead of tbd?  Normally the
    Echolink servers won't permit you to login if you're configured to
    accept multiple connections, because the servers think you're a
    conference, and conferences aren't allowed to have -L or -R callsigns. 
    And tbd is the same software that's used for most Echolink conferences
    (some run on AllStar or other systems).

    --
    73 de Tony VK3JED/VK3IRL
    http://vkradio.com



    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#180): https://groups.io/g/echoirlp/message/180
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From VK4DAK@432:1/101 to echoirlp@groups.io on Mon Feb 1 00:14:50 2021
    Hi Tony,

    Thanks for your suggestions. I temporarily allowed 2 stations in for the purposes of this task (hence the quick connections) to see if I could get the scripting to work. Have since reverted back to original settings.

    As it stands, I seem to have it working for the purposes I need (at this stage).

    I will investigate the script a little more now that I know where to look correctly and that my idea path is on the “right track”.

    Interesting reading going thru all the scripts and seeing how the magic comes together!

    Appreciate your assistance


    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#181): https://groups.io/g/echoirlp/message/181
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From VK4DAK@432:1/101 to echoirlp@groups.io on Mon Feb 1 00:58:48 2021
    Yes, this scripting works as what I was aiming.

    Personally I am only wishing to collate the individual callsigns connected (Inbound), for the desired task.
    For any issues, I can obtain the timestamp details from the log file.

    Thanks again for your assistance Tony - as always!



    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#182): https://groups.io/g/echoirlp/message/182
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From Tony Langdon@432:1/101 to echoirlp@groups.io on Tue Feb 2 12:04:48 2021
    On 1/2/21 7:14 pm, VK4DAK wrote:
    Hi Tony,

    Thanks for your suggestions. I temporarily allowed 2 stations in for the
    purposes of this task (hence the quick connections) to see if I could get the scripting to work. Have since reverted back to original settings.

    As it stands, I seem to have it working for the purposes I need (at this
    stage).
    Cool, that's the main thing. :)

    I will investigate the script a little more now that I know where to look
    correctly and that my idea path is on the “right track”.

    Interesting reading going thru all the scripts and seeing how the magic comes
    together!
    Was even more interesting making it happen! :D

    --
    73 de Tony VK3JED/VK3IRL
    http://vkradio.com



    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#183): https://groups.io/g/echoirlp/message/183
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)
  • From Tony Langdon@432:1/101 to echoirlp@groups.io on Tue Feb 2 12:06:30 2021
    On 1/2/21 7:58 pm, VK4DAK wrote:
    Yes, this scripting works as what I was aiming.

    Personally I am only wishing to collate the individual callsigns connected
    (Inbound), for the desired task.
    For any issues, I can obtain the timestamp details from the log file.
    True. :)  Timestamps are trivially easy to add, if you change your mind. :)

    Thanks again for your assistance Tony - as always!
    You're welcome. :)

    --
    73 de Tony VK3JED/VK3IRL
    http://vkradio.com



    -=-=-=-=-=-=-=-=-=-=-=-
    Groups.io Links: You receive all messages sent to this group.
    View/Reply Online (#184): https://groups.io/g/echoirlp/message/184
    Mute This Topic: https://groups.io/mt/80249397/3738798
    Group Owner: echoirlp+owner@groups.io
    Unsubscribe: https://groups.io/g/echoirlp/leave/6882233/232177168/xyzzy [vk_echoirlp@freeway.apana.org.au]
    -=-=-=-=-=-=-=-=-=-=-=-



    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (432:1/101)