I'm not sure what I need to do, but I'd like for .msg files to be
processed with carriage returns, and they have something else (I don't
know what) I'd guess. I need them to look like normal text files with
a command line if possible.
I'm not sure what I need to do, but I'd like for .msg files to be processed with carriage returns, and they have something else (I don't know what) I'd guess. I need them to look like normal text files with a command line if possible.
I think .msg has carriage returns, just not linefeeds, so windows would put it all on one line in notepad.
You'd want to replace '\r' with '\r\n' (or byte 0x0D with 0x0D 0x0A) I don't know of a program that does this, but it would be fairly easy to write one.
To: apam
Re: .MSG to .TXT? By: apam to Shurato on Fri Dec 15 2023 03:24 pm
I think .msg has carriage returns, just not linefeeds, so windows wouldput
it all on one line in notepad.
You'd want to replace '\r' with '\r\n' (or byte 0x0D with 0x0D 0x0A) Idon't
know of a program that does this, but it would be fairly easy to writeone.
XCHANG32.EXE 4.1 - Binary Edit by Clay Ruth - 32-bit Console Version 01/17/2005
XCHANG32 [/i][/s] fs "[srchstrng][^[x]chr,][...]" ["[replstrng][^[x]chr,][...]"] XCHANG32 [/i][/s] fs @scriptfil
or XCHANG32 [/i][/s] fs "srchspec" @imagefil
Switch /i = ignore case; /s = simple strings (use ^ and , as-is); chr = ASCII. Search and replace strings can be any combination of literals
and ^-prefixed, comma-delimited ASCII codes (^0 through ^255 or ^x00 through ^xFF). Double-up a literal ^ or , (or use /s). Quotes
may be omitted if there are no spaces within strings. Script file
has quoted search and replace string specs on one line; script
or image file 65,534 chars max; search string 4,095 chars max. ZIP
file embedded path change must include highest embedded directory
level, and each altered ZIP file must be fixed with PKWare's PKZIPFIX before use. For ZIP modification to work, the first zipped file must
have the sought path.
Echos "Changed" or "Not Changed" to visually indicate outcome.
Returns errorlevel: 0 = changed, 1 = not changed, 2 = unable to rewrite/del, 3 = syntax or memory error, 4 = file not found, 5 =
error during read/write, 6 = insufficient disk space, 7 = read-only
file, 8 = write-protected. When wildcards are used, highest level
for the file group is returned.
--- Synchronet 3.19b-Win32 NewsLink 1.113
* bbses.info - http://bbses.info - telnet://bbses.info
* Origin: capitolcityonline.net * Telnet/SSH:2022/HTTP (618:250/1)
To: apam
Re: .MSG to .TXT? By: apam to Shurato on Fri Dec 15 2023 03:24 pm
I think .msg has carriage returns, just not linefeeds, so windows wouldput
it all on one line in notepad.
You'd want to replace '\r' with '\r\n' (or byte 0x0D with 0x0D 0x0A) Idon't
know of a program that does this, but it would be fairly easy to writeone.
XCHANG32.EXE 4.1 - Binary Edit by Clay Ruth - 32-bit Console Version 01/17/2005
I'm not sure what I need to do, but I'd like for .msg files to beprocessed
with carriage returns, and they have something else (I don't know what)I'd
guess. I need them to look like normal text files with a command lineif
possible.
I think .msg has carriage returns, just not linefeeds, so windows would put it all on one line in notepad.
You'd want to replace '\r' with '\r\n' (or byte 0x0D with 0x0D 0x0A) I don't know of a program that does this, but it would be fairly
easy to write one.
I'm not sure what I need to do, but I'd like for .msg files toprocessed
be
with carriage returns, and they have something else (I don'tI'd
know what)
guess. I need them to look like normal text files with aif
command line
possible.
I think .msg has carriage returns, just not linefeeds, so windows
would put it all on one line in notepad.
You'd want to replace '\r' with '\r\n' (or byte 0x0D with 0x0D
0x0A) I don't know of a program that does this, but it would be
fairly easy to write one.
I tried that with xchange, and couldn't find a carriage return in the
file. Best would be a utility to convert fidonet message files into a readable text
file. It looks like there's more binary data in there than I know
what to do with. My intent is to parse out the IBBS1LINE messages and
put them in a file to display to users (last 10 or so). I'm pretty
sure I can handle the script, but I don't have the slightest clue how
to convert data.
telnet://bbs.roonsbbs.hu:1212 <<=-
Hello Shurato,
15 Dec 23 15:26, you wrote to apam:
I'm not sure what I need to do, but I'd like for .msg files to beprocessed
with carriage returns, and they have something else (I don't knowI'd
what)
guess. I need them to look like normal text files with a commandif
line
possible.
I think .msg has carriage returns, just not linefeeds, so windows
would put it all on one line in notepad.
You'd want to replace '\r' with '\r\n' (or byte 0x0D with 0x0D 0x0A)
I don't know of a program that does this, but it would be fairly
easy to write one.
I tried that with xchange, and couldn't find a carriage return in the file. Best would be a utility to convert fidonet message files into a readable text file. It looks like there's more binary data in there
than I know what to do with. My intent is to parse out the IBBS1LINE messages and put them in a file to display to users (last 10 or so).
I'm pretty sure I can handle the script, but I don't have the
slightest clue how to convert data.
the data is encoded with ROT47. it's easy to implement an encoder/decoder. https://rot47.net/
the data is encoded with ROT47. it's easy to implement an encoder/decoder. https://rot47.net/
Hello Shurato,
Thursday December 14 2023 22:10, you wrote to All:
I'm not sure what I need to do, but I'd like for .msg files to be processed with carriage returns, and they have something else (I don't know what) I'd guess. I need them to look like normal text files with a command line if possible.
.msg files...that could mean a lot of things. Are you saying you want a message saved in *.MSG file format exported to a regular text file?
From Newsgroup: micronet.bbs
To: apam
Re: .MSG to .TXT? By: apam to Shurato on Fri Dec 15 2023 03:24 pm
I think .msg has carriage returns, just not linefeeds, so windows wouldput
it all on one line in notepad.
You'd want to replace '\r' with '\r\n' (or byte 0x0D with 0x0D 0x0A) Idon't
know of a program that does this, but it would be fairly easy to writeone.
XCHANG32.EXE 4.1 - Binary Edit by Clay Ruth - 32-bit Console Version 01/17/2005
Thanks! That's what I need! I'll look for it.
XCHANG32.EXE 4.1 - Binary Edit by Clay Ruth - 32-bit Console Version 01/17/2005
I was able to find the dos version, not the win32 version. Is there a filename I can look for other than "xchang32.exe"? All the links with it were not functional.
---
the data is encoded with ROT47. it's easy to implement an
encoder/decoder. https://rot47.net/
No, that's the interbbs last callers?
The interbbs oneliners is just plain text
telnet://bbs.roonsbbs.hu:1212 <<=-
Hello Shurato,
Thursday December 14 2023 22:10, you wrote to All:
I'm not sure what I need to do, but I'd like for .msg files to
be processed with carriage returns, and they have something
else (I don't know what) I'd guess. I need them to look like
normal text files with a command line if possible.
.msg files...that could mean a lot of things. Are you saying you
want a message saved in *.MSG file format exported to a regular
text file?
If this helps any, I can use JAM, Squish, Hudson or *.MSG. I just
need to convert the messages to text files.
telnet://bbs.roonsbbs.hu:1212 <<=-
Hello Shurato,
16 Dec 23 00:04, you wrote to Sean Dennis:
Hello Shurato,
Thursday December 14 2023 22:10, you wrote to All:
I'm not sure what I need to do, but I'd like for .msg files to be S>> processed with carriage returns, and they have something else (I S>> don't know what) I'd guess. I need them to look like normal text S>> files with a command line if possible.
.msg files...that could mean a lot of things. Are you saying you
want a message saved in *.MSG file format exported to a regular text
file?
If this helps any, I can use JAM, Squish, Hudson or *.MSG. I just
need to convert the messages to text files.
i'm using this, you can l33ch from my bbs: MX_104.ZIP - MX Message Extraction util for Squish bases
Regards, -- dp
telnet://bbs.roonsbbs.hu:1212 <<=-
... Uptime: 2d 13h 5m 19s
--- GoldED/2 1.1.4.7+EMX
* Origin: Roon's BBS - Budapest, HUNGARY (618:520/10)
Hello Shurato,
16 Dec 23 00:04, you wrote to Sean Dennis:
Hello Shurato,
Thursday December 14 2023 22:10, you wrote to All:
I'm not sure what I need to do, but I'd like for .msg files to be S>> processed with carriage returns, and they have something else (I S>> don't know what) I'd guess. I need them to look like normal text S>> files with a command line if possible.
.msg files...that could mean a lot of things. Are you saying you SD>> want a message saved in *.MSG file format exported to a regular text SD>> file?
If this helps any, I can use JAM, Squish, Hudson or *.MSG. I just
need to convert the messages to text files.
i'm using this, you can l33ch from my bbs: MX_104.ZIP - MX Message Extraction util for Squish bases
Got it! I thought it was an os/2 executable, but it works in dos.
Sysop: | StingRay |
---|---|
Location: | Woodstock, GA |
Users: | 29 |
Nodes: | 15 (0 / 15) |
Uptime: | 21:32:37 |
Calls: | 591 |
Calls today: | 1 |
Files: | 359 |
Messages: | 227,518 |
Posted today: | 1 |