DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: N T

⟦9df7ca822⟧ TextFile

    Length: 1199 (0x4af)
    Types: TextFile
    Names: »NEW«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦e7f64e0c0⟧ »EurOpenD3/mail/vmh.tar.Z« 
        └─⟦dcb95597f⟧ 
            └─⟦this⟧ »SAVE/NEW« 

TextFile

Idea: no .scan file.
Replacement: .info file
Format: Date, Size, Number, Flags, Offsets: From/To, Subject, Body

Notes:
	Showline would then open the right file, print the 'unseen' status,
	the number, the 'replied' status, the date, the size, if desired,
	the From/To field, the Subject (all or as much as will fit) and the
	Body (until ERR is returned from curses...? probably not). Should
	be simpler.

	Wouldn't need la/ff at all, then. I like.

	Scansub would simply look through the message and find the offsets
	and return a pointer to the structure. It would have to parse the
	date, too, and figure out if it should use the To or the From field.

	If too slow, try keeping fds to the displayed messages *only* open
	w/the fd# in the SCAN structure.

Structure:
	Folder has pointers to Head, Tail, Top, Bottom and Current messages,
	where Head is the first message of the folder (messages kept in
	doubly-linked list), Tail is the last message of the folder, Top is
	the top-most displayed message, Bottom is the bottom-most displayed
	message and Current is the current message.

	Since most moves in the folder are relative, shouldn't have too many
	linear searches of the list.

	Hmmmmm.