• Autopost text arrangement problem

    From Nicola Mettimano@2:335/601 to All on Mon Sep 12 23:43:08 2022
    Hello, when i post from a text file Mystic cut lines; i am not an expert so i ask you....
    My text files are in symple text without "return" or "enter" at the end of each line, is it correct?
    Maybe I have to create my file with at most 80 characters/columns like an ANSI template?
    Other thing, which good ansi editor do you recommend for linux?
    Many thanks :-)

    --- Mystic BBS v1.12 A47 2021/12/24 (Linux/64)
    * Origin: REtrogaming ACTivities (REACT) BBS (2:335/601)
  • From Al@1:153/757 to Nicola Mettimano on Mon Sep 12 15:03:28 2022
    Maybe I have to create my file with at most 80 characters/columns like an ANSI template?

    Yes, lines longer than 80 characters will loose those characters so create those files with lines no more than that.

    Other thing, which good ansi editor do you recommend for linux?

    TheDraw is still one of the best. You'll need dosemu or something similar.

    --- BBBS/Li6 v4.10 Toy-6
    * Origin: The Rusty MailBox - Penticton, BC Canada (1:153/757)
  • From Nicola Mettimano@2:335/601 to Jay Harris on Tue Sep 13 10:17:56 2022
    Since you're using linux, if it's just a plain text file you can use something like:
    cat mymessage.txt | fold -s -w 78 > newmessage.txt
    or
    cat mymessage.txt | fmt -w 78 > newmessage.txt
    Which will make your text file no more than 78 characters wide.

    Wow very helpful, thanks man ;-)

    --- Mystic BBS v1.12 A47 2021/12/24 (Linux/64)
    * Origin: REtrogaming ACTivities (REACT) BBS (2:335/601)