This is utils.c in view mode; [Download] [Up]
static char rcsid[] = "@(#)$Id: utils.c,v 5.4 1992/12/11 01:45:04 syd Exp $"; /******************************************************************************* * The Elm Mail System - $Revision: 5.4 $ $State: Exp $ * * Copyright (c) 1988-1992 USENET Community Trust * Copyright (c) 1986,1987 Dave Taylor ******************************************************************************* * Bug reports, patches, comments, suggestions should be sent to: * * Syd Weinstein, Elm Coordinator * elm@DSI.COM dsinc!elm * ******************************************************************************* * $Log: utils.c,v $ * Revision 5.4 1992/12/11 01:45:04 syd * remove sys/types.h include, it is now included by defs.h * and this routine includes defs.h or indirectly includes defs.h * From: Syd * * Revision 5.3 1992/12/07 04:30:37 syd * fix missing brace on do_cursor calls * From: Syd * * Revision 5.2 1992/11/26 00:46:13 syd * changes to first change screen back (Raw off) and then issue final * error message. * From: Syd * * Revision 5.1 1992/10/03 22:58:40 syd * Initial checkin as of 2.4 Release at PL0 * * ******************************************************************************/ /** Utility routines for ELM **/ #include "headers.h" #include "s_elm.h" #include <sys/stat.h> #include <ctype.h> #include <errno.h> #ifdef BSD #undef tolower #endif extern int errno; create_new_folders() { /* this creates a new folders directory */ #ifdef MKDIR (void) mkdir(folders, 0700); #else char com[SLEN]; /** Some systems don't have a mkdir call - how inconvienient! **/ sprintf(com, "mkdir %s", folders); (void) system_call(com, 0); sprintf(com, "chmod 700 %s", folders); (void) system_call(com, 0); #endif /* MKDIR */ chown(folders, userid, groupid); } create_new_elmdir() { /** this routine is just for allowing new users who don't have the old elm files to create a new .elm directory **/ char source[SLEN]; #ifdef MKDIR sprintf(source, "%s/.elm", home); (void) mkdir(source, 0700); #else char com[SLEN]; /** Some systems don't have a mkdir call - how inconvienient! **/ sprintf(com, "mkdir %s/.elm", home); (void) system_call(com, 0); sprintf(com, "chmod 700 %s/.elm", home); (void) system_call(com, 0); #endif /* MKDIR */ chown( source, userid, groupid); } move_old_files_to_new() { /** this routine is just for allowing people to transition from the old Elm, where things are all kept in their $HOME dir, to the new one where everything is in $HOME/.elm... **/ char source[SLEN], dest[SLEN], temp[SLEN]; char com[SLEN]; /** simply go through all the files... **/ sprintf(source, "%s/.alias_text", home); if (access(source, ACCESS_EXISTS) != -1) { sprintf(dest, "%s/%s", home, ALIAS_TEXT); MCprintf(catgets(elm_msg_cat, ElmSet, ElmCopyingFromCopyingTo, "\n\rCopying from: %s\n\rCopying to: %s\n\r"), source, dest); sprintf(temp, "/tmp/%d", getpid()); sprintf(com, "%s -e 's/:/=/g' %s > %s\n", sed_cmd, source, temp); (void) system_call(com, 0); sprintf(com, "%s %s %s\n", move_cmd, temp, dest); (void) system_call(com, 0); (void) system_call("newalias", 0); } sprintf(source, "%s/.elmheaders", home); if (access(source, ACCESS_EXISTS) != -1) { sprintf(dest, "%s/%s", home, mailheaders); MCprintf(catgets(elm_msg_cat, ElmSet, ElmCopyingFromCopyingTo, "\n\rCopying from: %s\n\rCopying to: %s\n\r"), source, dest); copy(source, dest); } sprintf(source, "%s/.elmrc", home); if (access(source, ACCESS_EXISTS) != -1) { sprintf(dest, "%s/%s", home, elmrcfile); MCprintf(catgets(elm_msg_cat, ElmSet, ElmCopyingFromCopyingTo, "\n\rCopying from: %s\n\rCopying to: %s\n\r"), source, dest); copy(source, dest); } printf(catgets(elm_msg_cat, ElmSet, ElmWelcomeToNewElm, "\n\rWelcome to the new version of ELM!\n\n\rHit return to continue.")); getchar(); } emergency_exit() { /** used in dramatic cases when we must leave without altering ANYTHING about the system... **/ int do_cursor = RawState(); char *mk_lockname(); dprint(1, (debugfile, "\nERROR: Something dreadful is happening! Taking emergency exit!!\n\n")); dprint(1, (debugfile, " possibly leaving behind the following files;\n")); dprint(1, (debugfile, " The mailbox tempfile : %s\n", cur_tempfolder)); if(folder_type == SPOOL) dprint(1, (debugfile, " The mailbox lock file: %s\n", mk_lockname(cur_folder))); dprint(1, (debugfile, " The composition file : %s%s%d\n", temp_dir, temp_file, getpid())); if (cursor_control) transmit_functions(OFF); if (hp_terminal) softkeys_off(); if (do_cursor) { Raw(OFF); MoveCursor(LINES, 0); } printf(catgets(elm_msg_cat, ElmSet, ElmEmergencyExitTaken, "\nEmergency exit taken! All temp files intact!\n\n")); exit(1); } rm_temps_exit() { char buffer[SLEN]; int do_cursor = RawState(); PutLine0(LINES, 0, catgets(elm_msg_cat, ElmSet, ElmWriteFailedExitingIntact, "\nWrite to temp file failed, exiting leaving mailbox intact!\n\n")); dprint(2, (debugfile, "\nrm_temps_exit, deleteing temp files\n")); if (cursor_control) transmit_functions(OFF); if (hp_terminal) softkeys_off(); sprintf(buffer,"%s%d",temp_file, getpid()); /* editor buffer */ (void) unlink(buffer); if (folder_type == SPOOL) { (void) unlink(cur_tempfolder); } unlock(); /* remove lock file if any */ if(do_cursor) { MoveCursor(LINES,0); NewLine(); Raw(OFF); } exit(1); } /*ARGSUSED*/ /*VARARGS0*/ leave(val) int val; /* not used, placeholder for signal catching! */ { char buffer[SLEN]; int do_cursor = RawState(); dprint(2, (debugfile, "\nLeaving mailer normally (leave)\n")); if (cursor_control) transmit_functions(OFF); if (hp_terminal) softkeys_off(); sprintf(buffer,"%s%s%d", temp_dir, temp_file, getpid()); /* editor buffer */ (void) unlink(buffer); if (folder_type == SPOOL) { (void) unlink(cur_tempfolder); } unlock(); /* remove lock file if any */ if (do_cursor) { MoveCursor(LINES,0); NewLine(); Raw(OFF); } exit(0); } silently_exit() { /** This is the same as 'leave', but it doesn't remove any non-pid files. It's used when we notice that we're trying to create a temp mail file and one already exists!! **/ char buffer[SLEN]; int do_cursor = RawState(); dprint(2, (debugfile, "\nLeaving mailer quietly (silently_exit)\n")); if (cursor_control) transmit_functions(OFF); if (hp_terminal) softkeys_off(); sprintf(buffer,"%s%s%d", temp_dir, temp_file, getpid()); /* editor buffer */ (void) unlink(buffer); if (do_cursor) { MoveCursor(LINES,0); NewLine(); Raw(OFF); } exit(0); } /*ARGSUSED0*/ #ifndef REMOVE_AT_LAST leave_locked(val) int val; /* not used, placeholder for signal catching! */ { /** same as leave routine, but don't disturb lock file **/ char buffer[SLEN]; int do_cursor = RawState(); dprint(3, (debugfile, "\nLeaving mailer due to presence of lock file (leave_locked)\n")); if (cursor_control) transmit_functions(OFF); if (hp_terminal) softkeys_off(); sprintf(buffer,"%s%s%d", temp_dir, temp_file, getpid()); /* editor buffer */ (void) unlink(buffer); (void) unlink(cur_tempfolder); /* temp mailbox */ if (do_cursor) { MoveCursor(LINES,0); NewLine(); Raw(OFF); } exit(0); } #endif int get_page(msg_pointer) int msg_pointer; { /** Ensure that 'current' is on the displayed page, returning NEW_PAGE iff the page changed! **/ register int first_on_page, last_on_page; first_on_page = (header_page * headers_per_page) + 1; last_on_page = first_on_page + headers_per_page - 1; if (selected) /* but what is it on the SCREEN??? */ msg_pointer = compute_visible(msg_pointer); if (selected && msg_pointer > selected) return(SAME_PAGE); /* too far - page can't change! */ if (msg_pointer > last_on_page) { header_page = (int) (msg_pointer-1)/ headers_per_page; return(NEW_PAGE); } else if (msg_pointer < first_on_page) { header_page = (int) (msg_pointer-1) / headers_per_page; return(NEW_PAGE); } else return(SAME_PAGE); } char *nameof(filename) char *filename; { /** checks to see if 'filename' has any common prefixes, if so it returns a string that is the same filename, but with '=' as the folder directory, or '~' as the home directory.. **/ static char buffer[STRING]; register int i = 0, iindex = 0; if (strncmp(filename, folders, strlen(folders)) == 0) { if (strlen(folders) > 0) { buffer[i++] = '='; iindex = strlen(folders); if(filename[iindex] == '/') iindex++; } } else if (strncmp(filename, home, strlen(home)) == 0) { if (strlen(home) > 1) { buffer[i++] = '~'; iindex = strlen(home); } } else iindex = 0; while (filename[iindex] != '\0') buffer[i++] = filename[iindex++]; buffer[i] = '\0'; return( (char *) buffer); }
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.