• Crypto-Gram auto posts

    From TheCivvie@CAPCITY2 to All on Mon Sep 23 20:44:06 2024
    Hello everybody!

    I have turned off the Crypto-Gram auto posts for the moment until I find a way to split the post into 2 or 3 parts

    TheCivvie


    --- GoldED+/OSX 1.1.5-b20240309
    * Origin: TCOB1 Mail Only (618:500/14.1)
    * Synchronet * CAPCITY2 * capcity2.synchro.net * Telnet/SSH:2022/Rlogin/HTTP
  • From TheCivvie@CAPCITY2 to TheCivvie on Mon Sep 23 21:24:38 2024
    Hello theCivvie!

    23 Sep 24 20:44, I wrote to all:

    Hello everybody!

    I have turned off the Crypto-Gram auto posts for the moment until I
    find a way to split the post into 2 or 3 parts

    OK, Scipt has been updated and should be split into 2,3,4 or 5 parts

    If this still causes issues, please let me know

    TheCivvie


    --- GoldED+/OSX 1.1.5-b20240309
    * Origin: TCOB1 Mail Only (618:500/14.1)
    * Synchronet * CAPCITY2 * capcity2.synchro.net * Telnet/SSH:2022/Rlogin/HTTP
  • From digimaus@CAPCITY2 to TheCivvie on Mon Sep 23 20:37:36 2024
    TheCivvie wrote to All <=-

    I have turned off the Crypto-Gram auto posts for the moment until I
    find a way to split the post into 2 or 3 parts

    I think I have a solution. I used to use this with the FidoGazette.

    This is the script...I think what you want is further down.

    #!/bin/bash #####################################################################
    ## FIDOGAZETTE Posting Script
    ## By Sean Dennis
    ##
    ## Updated on 14 March 2022 at 1820 EDT
    ##
    ## This script reads the DOS-formatted text newsletter file, strips
    ## the formfeed from the top of each page, splits the file into
    ## individual text files delineated by the page header, then
    ## posts each text file in order into the FIDOGAZETTE echo using
    ## mbmsg.
    ##
    #####################################################################
    export MBSE_HOME=/opt/mbse
    cd $MBSE_HOME/work
    FILENAME="fgaz$1$2.nws"
    # Prevent PEBCAK error
    if [ ! -f $FILENAME ]; then
    printf "\n\n"
    echo "You need to copy the newsletter into the directory!"
    printf "\n\n"
    exit 1
    fi
    # Remove the formfeed control code from each page header
    # FF = ^L = 0C (hex)
    # -i = do the changes inline putting file into memory to edit
    sed -i 's/\x0c//' $FILENAME
    # Split file into pages delineated at the top with "FGAZ"
    # Pages start at xx00 (actual filename)
    csplit -s $FILENAME '/FGAZ/' '{*}'
    rm $FILENAME
    I=0
    # Start posting all of the pages
    for file in `ls` ; do
    # If digit is < 10, pad with leading zero for csplit's output
    printf -v J "%02d" $I
    # If it's the title page, use subject w/o page #
    if [ $I -eq 0 ]; then
    SUBJECT="FidoGazette V$1 I$2"
    else
    SUBJECT="FidoGazette V$1 I$2 Page $I"
    fi
    # Call mbmsg to post text file into FIDOGAZETTE echo
    $MBSE_ROOT/bin/mbmsg post "All" 113 "$SUBJECT" $MBSE_HOME/work/xx$J - -q
    ((I++))
    done
    rm xx*

    ===

    Hope this helps.

    -- Sean


    ... "Lack of money is the root of all evil." - George Bernard Shaw
    --- MultiMail/Linux
    * Origin: Outpost BBS * Johnson City, TN (618:618/1)
    * Synchronet * CAPCITY2 * capcity2.synchro.net * Telnet/SSH:2022/Rlogin/HTTP
  • From Sean Rima@CAPCITY2 to digimaus on Tue Sep 24 14:18:11 2024
    Hello digimaus!

    I will play with that on my test echo. Any option will be beneficial

    Sorry, cannot get msged to quote




    Sean

    --- msged/lnx 6.3 2023-02-24
    * Origin: TCOB1 - Proudly Mail Only (618:500/14)
    * Synchronet * CAPCITY2 * capcity2.synchro.net * Telnet/SSH:2022/Rlogin/HTTP