O BULLETIN contains subroutines for writing a message directly to a folder.  This O would be useful for someone who is using the BBOARD feature, but wants to avoid M the extra overhead of having the message sent to an account as MAIL, and then M have BULLCP read the mail.  It is better if the network mail could be written O directly to the folder bypassing VMS MAIL, as it reduces a lot of cpu overhead.   5 Call INIT_MESSAGE_ADD to initiate a message addition. : Call WRITE_MESSAGE_LINE to write individual message lines.7 Call FINISH_MESSAGE_ADD to complete a message addition.    Calling formats:  8 	CALL INIT_MESSAGE_ADD(IN_FOLDER,IN_FROM,IN_DESCRIP,IER) C 
 C  INPUTS:6 C	IN_FOLDER  - Character string containing folder nameD C	IN_FROM	   - Character string containing name of owner of message.: C		     If empty, the default is the owner of the process.> C	IN_DESCRIP - Character string containing subject of message.4 C		     If empty, the message is searched for a line0 C		     which starts with "Subj:" or "Subject:". C  OUTPUTS: < C	IER - Error status.  True if properly connected to folder. C		False if folder not found.  C     	CALL WRITE_MESSAGE_LINE(BUFFER) C 
 C  INPUTS:C C	BUFFER - Character string containing line to be put into message.  C    	CALL FINISH_MESSAGE_ADD C @ C  NOTE:  Only should be run if INIT_MESSAGE_ADD was successful. C 