#include #include #include #include #include #include #include #include #include #include "jamlib/jam.h" #include "bbs.h" #include "lua/lua.h" #include "lua/lualib.h" #include "lua/lauxlib.h" extern struct bbs_config conf; extern int mynode; struct jam_msg { int msg_no; s_JamMsgHeader *msg_h; char *from; char *to; char *subject; char *oaddress; char *daddress; char *msgid; char *replyid; }; struct msg_headers { struct jam_msg **msgs; int msg_count; }; s_JamBase *open_jam_base(char *path) { int ret; s_JamBase *jb; ret = JAM_OpenMB((char *)path, &jb); if (ret != 0) { if (ret == JAM_IO_ERROR) { free(jb); ret = JAM_CreateMB((char *)path, 1, &jb); if (ret != 0) { free(jb); return NULL; } } else { free(jb); dolog("Got %d", ret); return NULL; } } return jb; } void free_message_headers(struct msg_headers *msghs) { int i; for (i=0;imsg_count;i++) { free(msghs->msgs[i]->msg_h); if (msghs->msgs[i]->from != NULL) { free(msghs->msgs[i]->from); } if (msghs->msgs[i]->to != NULL) { free(msghs->msgs[i]->to); } if (msghs->msgs[i]->from != NULL) { free(msghs->msgs[i]->subject); } if (msghs->msgs[i]->oaddress != NULL) { free(msghs->msgs[i]->oaddress); } if (msghs->msgs[i]->daddress != NULL) { free(msghs->msgs[i]->daddress); } if (msghs->msgs[i]->msgid != NULL) { free(msghs->msgs[i]->msgid); } if (msghs->msgs[i]->replyid != NULL) { free(msghs->msgs[i]->replyid); } } free(msghs->msgs); free(msghs); } struct msg_headers *read_message_headers(int msgconf, int msgarea, struct user_record *user) { s_JamBase *jb; s_JamBaseHeader jbh; s_JamMsgHeader jmh; s_JamSubPacket* jsp; struct jam_msg *jamm; char *wwiv_addressee; int to_us; int i; int z; int j; int k; struct fido_addr *dest; struct msg_headers *msghs = NULL; jb = open_jam_base(conf.mail_conferences[msgconf]->mail_areas[msgarea]->path); if (!jb) { dolog("Error opening JAM base.. %s", conf.mail_conferences[msgconf]->mail_areas[msgarea]->path); return NULL; } JAM_ReadMBHeader(jb, &jbh); if (jbh.ActiveMsgs > 0) { msghs = (struct msg_headers *)malloc(sizeof(struct msg_headers)); msghs->msg_count = 0; k = 0; for (i=0;k < jbh.ActiveMsgs;i++) { memset(&jmh, 0, sizeof(s_JamMsgHeader)); z = JAM_ReadMsgHeader(jb, i, &jmh, &jsp); if (z != 0) { dolog("Failed to read msg header: %d Erro %d", z, JAM_Errno(jb)); continue; } if (jmh.Attribute & MSG_DELETED) { JAM_DelSubPacket(jsp); continue; } jamm = (struct jam_msg *)malloc(sizeof(struct jam_msg)); jamm->msg_no = i; jamm->msg_h = (s_JamMsgHeader *)malloc(sizeof(s_JamMsgHeader)); memcpy(jamm->msg_h, &jmh, sizeof(s_JamMsgHeader)); jamm->from = NULL; jamm->to = NULL; jamm->subject = NULL; jamm->oaddress = NULL; jamm->daddress = NULL; jamm->msgid = NULL; jamm->replyid = NULL; for (z=0;zNumFields;z++) { if (jsp->Fields[z]->LoID == JAMSFLD_SUBJECT) { jamm->subject = (char *)malloc(jsp->Fields[z]->DatLen + 1); memset(jamm->subject, 0, jsp->Fields[z]->DatLen + 1); memcpy(jamm->subject, jsp->Fields[z]->Buffer, jsp->Fields[z]->DatLen); } if (jsp->Fields[z]->LoID == JAMSFLD_SENDERNAME) { jamm->from = (char *)malloc(jsp->Fields[z]->DatLen + 1); memset(jamm->from, 0, jsp->Fields[z]->DatLen + 1); memcpy(jamm->from, jsp->Fields[z]->Buffer, jsp->Fields[z]->DatLen); } if (jsp->Fields[z]->LoID == JAMSFLD_RECVRNAME) { jamm->to = (char *)malloc(jsp->Fields[z]->DatLen + 1); memset(jamm->to, 0, jsp->Fields[z]->DatLen + 1); memcpy(jamm->to, jsp->Fields[z]->Buffer, jsp->Fields[z]->DatLen); } if (jsp->Fields[z]->LoID == JAMSFLD_DADDRESS) { jamm->daddress = (char *)malloc(jsp->Fields[z]->DatLen + 1); memset(jamm->daddress, 0, jsp->Fields[z]->DatLen + 1); memcpy(jamm->daddress, jsp->Fields[z]->Buffer, jsp->Fields[z]->DatLen); } if (jsp->Fields[z]->LoID == JAMSFLD_OADDRESS) { jamm->oaddress = (char *)malloc(jsp->Fields[z]->DatLen + 1); memset(jamm->oaddress, 0, jsp->Fields[z]->DatLen + 1); memcpy(jamm->oaddress, jsp->Fields[z]->Buffer, jsp->Fields[z]->DatLen); } if (jsp->Fields[z]->LoID == JAMSFLD_MSGID) { jamm->msgid = (char *)malloc(jsp->Fields[z]->DatLen + 1); memset(jamm->msgid, 0, jsp->Fields[z]->DatLen + 1); memcpy(jamm->msgid, jsp->Fields[z]->Buffer, jsp->Fields[z]->DatLen); } if (jsp->Fields[z]->LoID == JAMSFLD_REPLYID) { jamm->replyid = (char *)malloc(jsp->Fields[z]->DatLen + 1); memset(jamm->replyid, 0, jsp->Fields[z]->DatLen + 1); memcpy(jamm->replyid, jsp->Fields[z]->Buffer, jsp->Fields[z]->DatLen); } } JAM_DelSubPacket(jsp); if (jmh.Attribute & MSG_PRIVATE) { wwiv_addressee = strdup(jamm->to); for (j=0;jto);j++) { if (wwiv_addressee[j] == ' ') { wwiv_addressee[j] = '\0'; break; } } if (conf.mail_conferences[msgconf]->nettype == NETWORK_WWIV) { if (conf.mail_conferences[msgconf]->wwivnode == atoi(jamm->daddress)) { to_us = 1; } else { to_us = 0; } } else if (conf.mail_conferences[msgconf]->nettype == NETWORK_FIDO) { dest = parse_fido_addr(jamm->daddress); if (conf.mail_conferences[msgconf]->fidoaddr->zone == dest->zone && conf.mail_conferences[msgconf]->fidoaddr->net == dest->net && conf.mail_conferences[msgconf]->fidoaddr->node == dest->node && conf.mail_conferences[msgconf]->fidoaddr->point == dest->point) { to_us = 1; } else { to_us = 0; } free(dest); } if (!(strcasecmp(wwiv_addressee, user->loginname) == 0) || ((strcasecmp(jamm->from, user->loginname) == 0) && to_us)) { if (jamm->subject != NULL) { free(jamm->subject); } if (jamm->from != NULL) { free(jamm->from); } if (jamm->to != NULL) { free(jamm->to); } if (jamm->oaddress != NULL) { free(jamm->oaddress); } if (jamm->daddress != NULL) { free(jamm->daddress); } if (jamm->msgid != NULL) { free(jamm->msgid); } if (jamm->replyid != NULL) { free(jamm->replyid); } free(wwiv_addressee); free(jamm->msg_h); free(jamm); k++; continue; } free(wwiv_addressee); } if (msghs->msg_count == 0) { msghs->msgs = (struct jam_msg **)malloc(sizeof(struct jam_msg *)); } else { msghs->msgs = (struct jam_msg **)realloc(msghs->msgs, sizeof(struct jam_msg *) * (msghs->msg_count + 1)); } msghs->msgs[msghs->msg_count] = jamm; msghs->msg_count++; k++; } } else { JAM_CloseMB(jb); return NULL; } JAM_CloseMB(jb); return msghs; } char *external_editor(struct user_record *user, char *to, char *from, char *quote, char *qfrom, char *subject, int email) { char c; FILE *fptr; char *body = NULL; char buffer[256]; char buffer2[256]; int len; int totlen; char *body2 = NULL; char *tagline; int i; int j; struct stat s; struct utsname name; if (conf.external_editor_cmd != NULL) { s_printf("\r\nUse external editor? (Y/N) "); c = s_getc(); if (tolower(c) == 'y') { sprintf(buffer, "%s/node%d", conf.bbs_path, mynode); if (stat(buffer, &s) != 0) { mkdir(buffer, 0755); } sprintf(buffer, "%s/node%d/MSGTMP", conf.bbs_path, mynode); if (stat(buffer, &s) == 0) { remove(buffer); } // write msgtemp if (quote != NULL) { fptr = fopen(buffer, "w"); for (i=0;iloginname); if (qfrom != NULL) { fprintf(fptr, "%s\r\n", qfrom); } else { fprintf(fptr, "%s\r\n", to); } fprintf(fptr, "%s\r\n", subject); fprintf(fptr, "0\r\n"); if (email == 1) { fprintf(fptr, "E-Mail\r\n"); fprintf(fptr, "YES\r\n"); } else { fprintf(fptr, "%s\r\n", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->name); if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_NETMAIL_AREA){ fprintf(fptr, "YES\r\n"); } else { fprintf(fptr, "NO\r\n"); } } fclose(fptr); rundoor(user, conf.external_editor_cmd, conf.external_editor_stdio); // readin msgtmp sprintf(buffer, "%s/node%d/MSGTMP", conf.bbs_path, mynode); fptr = fopen(buffer, "r"); if (!fptr) { return NULL; } totlen = 0; len = fread(buffer, 1, 256, fptr); while (len > 0) { totlen += len; if (body == NULL) { body = (char *)malloc(totlen + 1); } else { body = (char *)realloc(body, totlen + 1); } memcpy(&body[totlen - len], buffer, len); body[totlen] = '\0'; len = fread(buffer, 1, 256, fptr); } fclose(fptr); if (email == 1) { tagline = conf.default_tagline; } else { if (conf.mail_conferences[user->cur_mail_conf]->tagline != NULL) { tagline = conf.mail_conferences[user->cur_mail_conf]->tagline; } else { tagline = conf.default_tagline; } } uname(&name); if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO && !email) { if (conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point == 0) { snprintf(buffer, 256, "\r--- MagickaBBS v%d.%d%s (%s/%s)\r * Origin: %s (%d:%d/%d)\r", VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node); } else { snprintf(buffer, 256, "\r--- MagickaBBS v%d.%d%s (%s/%s)\r * Origin: %s (%d:%d/%d.%d)\r", VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point); } } else { snprintf(buffer, 256, "\r--- MagickaBBS v%d.%d%s (%s/%s)\r * Origin: %s \r", VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline); } body2 = (char *)malloc(totlen + 2 + strlen(buffer)); j = 0; for (i=0;i %s", from[0], linebuffer); quotelines++; lineat = 0; linebuffer[0] = '\0'; if (quote[i] != '\r') { i--; } } else { linebuffer[lineat++] = quote[i]; linebuffer[lineat] = '\0'; } } } s_printf("\r\n\e[1;32mMagicka Internal Editor, Type \e[1;37m/S \e[1;32mto save, \e[1;37m/A \e[1;32mto abort and \e[1;37m/? \e[1;32mfor help\r\n"); s_printf("\e[1;30m-------------------------------------------------------------------------------\e[0m"); while(!doquit) { s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", lines, next_line_buffer); strcpy(linebuffer, next_line_buffer); s_readstring(&linebuffer[strlen(next_line_buffer)], 70 - strlen(next_line_buffer)); memset(next_line_buffer, 0, 70); if (strlen(linebuffer) == 70 && linebuffer[69] != ' ') { for (i=strlen(linebuffer) - 1;i > 15;i--) { if (linebuffer[i] == ' ') { linebuffer[i] = '\0'; strcpy(next_line_buffer, &linebuffer[i+1]); s_printf("\e[%dD\e[0K", 70 - i); break; } } } if (linebuffer[0] == '/' && strlen(linebuffer) == 2) { if (toupper(linebuffer[1]) == 'S') { for (i=0;icur_mail_conf]->tagline != NULL) { tagline = conf.mail_conferences[user->cur_mail_conf]->tagline; } else { tagline = conf.default_tagline; } uname(&name); if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO && !email) { if (conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point == 0) { snprintf(buffer, 256, "\r--- MagickaBBS v%d.%d%s (%s/%s)\r * Origin: %s (%d:%d/%d)\r", VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node); } else { snprintf(buffer, 256, "\r--- MagickaBBS v%d.%d%s (%s/%s)\r * Origin: %s (%d:%d/%d.%d)\r", VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point); } } else { snprintf(buffer, 256, "\r--- MagickaBBS v%d.%d%s (%s/%s)\r * Origin: %s \r", VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline); } size += 2; size += strlen(buffer); msg = (char *)malloc(size); memset(msg, 0, size); for (i=0;i 0) { free(content); } if (quote != NULL) { for (i=0;i quotelines) { qto = quotelines; } if (qfrom < 0) { qfrom = 0; } if (qfrom > qto) { s_printf("Quoting Cancelled\r\n"); } for (i=qfrom;i<=qto;i++) { if (lines == 0) { content = (char **)malloc(sizeof(char *)); } else { content = (char **)realloc(content, sizeof(char *) * (lines + 1)); } content[lines] = strdup(quotecontent[i]); lines++; } s_printf("\r\n\e[1;32mMagicka Internal Editor, Type \e[1;37m/S \e[1;32mto save, \e[1;37m/A \e[1;32mto abort and \e[1;37m/? \e[1;32mfor help\r\n"); s_printf("\e[1;30m-------------------------------------------------------------------------------\e[0m"); for (i=0;i= lines) { s_printf("\r\nAborted...\r\n"); } else { for (i=z;i= lines) { s_printf("\r\nAborted...\r\n"); } else { s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", z, content[z]); s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m", z); s_readstring(linebuffer, 70); free(content[z]); content[z] = strdup(linebuffer); } } } else if (toupper(linebuffer[1]) == 'I') { s_printf("\r\nInsert before which line? "); s_readstring(buffer, 6); if (strlen(buffer) == 0) { s_printf("\r\nAborted...\r\n"); } else { z = atoi(buffer); if (z < 0 || z >= lines) { s_printf("\r\nAborted...\r\n"); } else { s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m", z); s_readstring(linebuffer, 70); lines++; content = (char **)realloc(content, sizeof(char *) * lines); for (i=lines;i>z;i--) { content[i] = content[i-1]; } content[z] = strdup(linebuffer); } } } } else { if (lines == 0) { content = (char **)malloc(sizeof(char *)); } else { content = (char **)realloc(content, sizeof(char *) * (lines + 1)); } content[lines] = strdup(linebuffer); lines++; } } if (quote != NULL) { for (i=0;icur_mail_conf]->mail_areas[user->cur_mail_area]->path); if (!jb) { dolog("Error opening JAM base.. %s", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); return; } while (!doquit) { if (JAM_ReadLastRead(jb, user->id, &jlr) == JAM_NO_USER) { jlr.UserCRC = JAM_Crc32(user->loginname, strlen(user->loginname)); jlr.UserID = user->id; jlr.HighReadMsg = msghs->msgs[mailno]->msg_no; } jlr.LastReadMsg = mailno; if (jlr.HighReadMsg < msghs->msgs[mailno]->msg_no) { jlr.HighReadMsg = msghs->msgs[mailno]->msg_no; } if (msghs->msgs[mailno]->oaddress != NULL && conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) { from_addr = parse_fido_addr(msghs->msgs[mailno]->oaddress); s_printf("\e[2J\e[1;32mFrom : \e[1;37m%s (%d:%d/%d.%d)\r\n", msghs->msgs[mailno]->from, from_addr->zone, from_addr->net, from_addr->node, from_addr->point); free(from_addr); } else { s_printf("\e[2J\e[1;32mFrom : \e[1;37m%s\r\n", msghs->msgs[mailno]->from); } s_printf("\e[1;32mTo : \e[1;37m%-27.27s \e[1;32mArea : \e[1;37m%-27.27s\r\n", msghs->msgs[mailno]->to, conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->name); s_printf("\e[1;32mSubject : \e[1;37m%-27.27s \e[1;32mMsgNo : \e[1;37m%4d of %4d\r\n", msghs->msgs[mailno]->subject, mailno + 1, msghs->msg_count); localtime_r((time_t *)&msghs->msgs[mailno]->msg_h->DateWritten, &msg_date); sprintf(buffer, "\e[1;32mDate : \e[1;37m%s", asctime(&msg_date)); buffer[strlen(buffer) - 1] = '\0'; strcat(buffer, "\r\n"); s_printf(buffer); s_printf("\e[1;32mAttribs : \e[1;37m%s\r\n", (msghs->msgs[mailno]->msg_h->Attribute & MSG_SENT ? "SENT" : "")); s_printf("\e[1;30m-------------------------------------------------------------------------------\e[0m\r\n"); body = (char *)malloc(msghs->msgs[mailno]->msg_h->TxtLen); JAM_ReadMsgText(jb, msghs->msgs[mailno]->msg_h->TxtOffset, msghs->msgs[mailno]->msg_h->TxtLen, (char *)body); JAM_WriteLastRead(jb, user->id, &jlr); if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) { body2 = (char *)malloc(msghs->msgs[mailno]->msg_h->TxtLen); z2 = 0; if (body[0] == 4 && body[1] == '0') { skip_line = 1; } else { skip_line = 0; } for (z=0;zmsgs[mailno]->msg_h->TxtLen;z++) { if (body[z] == '\r') { if (body[z+1] == '\n') { z++; } if (body[z+1] == 4 && body[z+2] == '0') { skip_line = 1; } else { body2[z2++] = '\r'; skip_line = 0; } } else { if (!skip_line) { if (body[z] == 3 || body[z] == 4) { z++; } else { body2[z2++] = body[z]; } } } } free(body); body = body2; } else { z2 = msghs->msgs[mailno]->msg_h->TxtLen; } lines = 0; chars = 0; for (z=0;z= 17) { s_printf("\e[1;37mPress a key to continue...\e[0m"); s_getc(); lines = 0; s_printf("\e[7;1H\e[0J"); } } else if (body[z] == '\e' && body[z + 1] == '[') { ansi = z; while (strchr("ABCDEFGHIGJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", body[z]) == NULL) z++; if (body[z] == 'm') { strncpy(buffer, &body[ansi], (z - ansi) + 1); buffer[z - ansi + 1] = '\0'; s_printf("%s", buffer); } else if (body[z] == 'A') { j = atoi(&body[ansi + 2]); if (j == 0 && ansi + 2 == z) { j = 1; } for (i=0;i= 0) { s_printf("\e[A"); lines--; } else { break; } } } else if (body[z] == 'C') { j = atoi(&body[ansi + 2]); if (j == 0 && ansi + 2 == z) { j = 1; } for (i=0;i= 0) { s_printf("\e[D"); chars--; } else { break; } } } } else { chars++; s_putchar(body[z]); } } s_printf("\r\n\e[1;37mPress \e[1;36mR \e[1;37mto reply, \e[1;36mQ \e[1;37mto quit, \e[1;36mB \e[1;37mto go Back, \e[1;36mSPACE \e[1;37mfor Next Mesage..."); c = s_getc(); if (tolower(c) == 'r') { JAM_CloseMB(jb); if (user->sec_level < conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->write_sec_level) { s_printf("\r\nSorry, you are not allowed to post in this area\r\n"); } else { if (msghs->msgs[mailno]->subject != NULL) { if (strncasecmp(msghs->msgs[mailno]->subject, "RE:", 3) != 0) { snprintf(buffer, 256, "RE: %s", msghs->msgs[mailno]->subject); } else { snprintf(buffer, 256, "%s", msghs->msgs[mailno]->subject); } } subject = (char *)malloc(strlen(buffer) + 1); strcpy(subject, buffer); s_printf("\r\n\r\nReplying to: %s\r\n", subject); s_printf("Change Subject? (Y/N) "); c = s_getc(); if (tolower(c) == 'y') { s_printf("\r\nNew subject: "); s_readstring(buffer, 25); if (strlen(buffer) == 0) { s_printf("\r\nOk, not changing the subject line..."); } else { free(subject); subject = (char *)malloc(strlen(buffer) + 1); strcpy(subject, buffer); } } s_printf("\r\n"); if (msghs->msgs[mailno]->from != NULL) { strcpy(buffer, msghs->msgs[mailno]->from); } if (conf.mail_conferences[user->cur_mail_conf]->realnames == 0) { if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) { from = (char *)malloc(strlen(user->loginname) + 20); sprintf(from, "%s #%d @%d", user->loginname, user->id, conf.mail_conferences[user->cur_mail_conf]->wwivnode); } else { from = (char *)malloc(strlen(user->loginname) + 1); strcpy(from, user->loginname); } } else { if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) { from = (char *)malloc(strlen(user->loginname) + 23 + strlen(user->firstname)); sprintf(from, "%s #%d @%d (%s)", user->loginname, user->id, conf.mail_conferences[user->cur_mail_conf]->wwivnode, user->firstname); } else { from = (char *)malloc(strlen(user->firstname) + strlen(user->lastname) + 2); sprintf(from, "%s %s", user->firstname, user->lastname); } } if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV && conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_ECHOMAIL_AREA) { to = (char *)malloc(4); strcpy(to, "ALL"); } else { to = (char *)malloc(strlen(buffer) + 1); strcpy(to, buffer); } replybody = external_editor(user, to, from, body, msghs->msgs[mailno]->from, subject, 0); if (replybody != NULL) { jb = open_jam_base(conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); if (!jb) { dolog("Error opening JAM base.. %s", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); free(replybody); free(body); free(subject); free(to); free(from); return; } JAM_ClearMsgHeader( &jmh ); jmh.DateWritten = time(NULL); jmh.Attribute |= MSG_LOCAL; jsp = JAM_NewSubPacket(); jsf.LoID = JAMSFLD_SENDERNAME; jsf.HiID = 0; jsf.DatLen = strlen(from); jsf.Buffer = (char *)from; JAM_PutSubfield(jsp, &jsf); jsf.LoID = JAMSFLD_RECVRNAME; jsf.HiID = 0; jsf.DatLen = strlen(to); jsf.Buffer = (char *)to; JAM_PutSubfield(jsp, &jsf); jsf.LoID = JAMSFLD_SUBJECT; jsf.HiID = 0; jsf.DatLen = strlen(subject); jsf.Buffer = (char *)subject; JAM_PutSubfield(jsp, &jsf); if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_ECHOMAIL_AREA) { jmh.Attribute |= MSG_TYPEECHO; if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) { if (conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point) { sprintf(buffer, "%d:%d/%d.%d", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point); } else { sprintf(buffer, "%d:%d/%d", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node); } jsf.LoID = JAMSFLD_OADDRESS; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); snprintf(timestr, 16, "%016lx", time(NULL)); sprintf(buffer, "%d:%d/%d.%d %s", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point, ×tr[strlen(timestr) - 8]); jsf.LoID = JAMSFLD_MSGID; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); if (msghs->msgs[mailno]->msgid != NULL) { sprintf(buffer, "%d:%d/%d.%d %s", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point, &msghs->msgs[mailno]->msgid[strlen(timestr) - 8]); } jsf.LoID = JAMSFLD_REPLYID; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); jmh.ReplyCRC = JAM_Crc32(buffer, strlen(buffer)); } } else if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_NETMAIL_AREA) { jmh.Attribute |= MSG_TYPENET; jmh.Attribute |= MSG_PRIVATE; if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) { if (conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point) { sprintf(buffer, "%d:%d/%d.%d", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point); } else { sprintf(buffer, "%d:%d/%d", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node); } jsf.LoID = JAMSFLD_OADDRESS; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); jmh.MsgIdCRC = JAM_Crc32(buffer, strlen(buffer)); from_addr = parse_fido_addr(msghs->msgs[mailno]->oaddress); if (from_addr != NULL) { if (from_addr->point) { sprintf(buffer, "%d:%d/%d.%d", from_addr->zone, from_addr->net, from_addr->node, from_addr->point); } else { sprintf(buffer, "%d:%d/%d", from_addr->zone, from_addr->net, from_addr->node); } jsf.LoID = JAMSFLD_DADDRESS; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); free(from_addr); } snprintf(timestr, 16, "%016lx", time(NULL)); sprintf(buffer, "%d:%d/%d.%d %s", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point, ×tr[strlen(timestr) - 8]); jsf.LoID = JAMSFLD_MSGID; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); jmh.MsgIdCRC = JAM_Crc32(buffer, strlen(buffer)); if (msghs->msgs[mailno]->msgid != NULL) { sprintf(buffer, "%d:%d/%d.%d %s", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point, &msghs->msgs[mailno]->msgid[strlen(timestr) - 8]); } jsf.LoID = JAMSFLD_REPLYID; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); jmh.ReplyCRC = JAM_Crc32(buffer, strlen(buffer)); } else if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) { sprintf(buffer, "%d", atoi(strchr(from, '@') + 1)); jsf.LoID = JAMSFLD_DADDRESS; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); } } while (1) { z = JAM_LockMB(jb, 100); if (z == 0) { break; } else if (z == JAM_LOCK_FAILED) { sleep(1); } else { free(replybody); free(body); free(subject); free(to); free(from); dolog("Failed to lock msg base!"); return; } } if (JAM_AddMessage(jb, &jmh, jsp, (char *)replybody, strlen(replybody))) { dolog("Failed to add message"); } else { if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_NETMAIL_AREA) { if (conf.netmail_sem != NULL) { sem_fd = open(conf.netmail_sem, O_RDWR | O_CREAT, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH); close(sem_fd); } } else if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_ECHOMAIL_AREA) { if (conf.echomail_sem != NULL) { sem_fd = open(conf.echomail_sem, O_RDWR | O_CREAT, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH); close(sem_fd); } } } JAM_UnlockMB(jb); JAM_DelSubPacket(jsp); free(replybody); JAM_CloseMB(jb); doquit = 1; } else { doquit = 1; } } free(body); if (from != NULL) { free(from); } if (to != NULL) { free(to); } if (subject != NULL) { free(subject); } } else if (tolower(c) == 'q') { doquit = 1; } else if (c == ' ') { mailno++; if (mailno >= msghs->msg_count) { s_printf("\r\n\r\nNo more messages\r\n"); doquit = 1; } } else if (tolower(c) == 'b') { if (mailno > 0) { mailno--; } } } } int mail_menu(struct user_record *user) { int doquit = 0; int domail = 0; char c; char prompt[128]; char buffer[256]; char buffer2[256]; int i; int j; int z; int k; struct msg_headers *msghs; s_JamBase *jb; s_JamBaseHeader jbh; s_JamMsgHeader jmh; s_JamSubPacket* jsp; s_JamSubfield jsf; s_JamLastRead jlr; struct tm msg_date; char *subject; char *from; char *to; char *body; char *replybody; char *wwiv_addressee; char timestr[17]; char *msg; int closed; uint32_t jam_crc; unsigned int lastmsg,currmsg; int lines; struct fido_addr *from_addr = NULL; struct fido_addr *dest = NULL; char *dest_addr; int to_us; int wwiv_to; struct stat s; int do_internal_menu = 0; char *lRet; lua_State *L; int result; int sem_fd; int all_unread = 0; if (conf.script_path != NULL) { sprintf(buffer, "%s/mailmenu.lua", conf.script_path); if (stat(buffer, &s) == 0) { L = luaL_newstate(); luaL_openlibs(L); lua_push_cfunctions(L); luaL_loadfile(L, buffer); do_internal_menu = 0; result = lua_pcall(L, 0, 1, 0); if (result) { dolog("Failed to run script: %s", lua_tostring(L, -1)); do_internal_menu = 1; } } else { do_internal_menu = 1; } } else { do_internal_menu = 1; } while (!domail) { if (do_internal_menu == 1) { s_displayansi("mailmenu"); s_printf("\e[0m\r\nConf: (%d) %s\r\nArea: (%d) %s\r\nTL: %dm :> ", user->cur_mail_conf, conf.mail_conferences[user->cur_mail_conf]->name, user->cur_mail_area, conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->name, user->timeleft); c = s_getc(); } else { lua_getglobal(L, "menu"); result = lua_pcall(L, 0, 1, 0); if (result) { dolog("Failed to run script: %s", lua_tostring(L, -1)); do_internal_menu = 1; lua_close(L); continue; } lRet = (char *)lua_tostring(L, -1); lua_pop(L, 1); c = lRet[0]; } switch(tolower(c)) { case 'd': { s_printf("\r\n"); // list mail in message base msghs = read_message_headers(user->cur_mail_conf, user->cur_mail_area, user); if (msghs != NULL && msghs->msg_count > 0) { jb = open_jam_base(conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); if (!jb) { dolog("Error opening JAM base.. %s", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); break; } else { all_unread = 0; if (JAM_ReadLastRead(jb, user->id, &jlr) == JAM_NO_USER) { jlr.LastReadMsg = 0; jlr.HighReadMsg = 0; all_unread = 1; } JAM_CloseMB(jb); s_printf("Read message [1-%d] or N for New: ", msghs->msg_count); s_readstring(buffer, 6); if (tolower(buffer[0]) == 'n') { if (all_unread == 0) { k = jlr.HighReadMsg; for (i=0;imsg_count;i++) { if (msghs->msgs[i]->msg_no == k) { break; } } i += 2; } else { i = 1; } } else { i = atoi(buffer); } if (i > 0 && i <= msghs->msg_count) { read_message(socket, user, msghs, i - 1); } } } if (msghs != NULL) { free_message_headers(msghs); } } break; case 'p': { if (user->sec_level < conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->write_sec_level) { s_printf("\r\nSorry, you are not allowed to post in this area\r\n"); break; } if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV && conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_ECHOMAIL_AREA) { sprintf(buffer, "ALL"); } else { s_printf("\r\nTO: "); s_readstring(buffer, 16); } if (strlen(buffer) == 0) { strcpy(buffer, "ALL"); } if (conf.mail_conferences[user->cur_mail_conf]->networked == 0 && strcasecmp(buffer, "ALL") != 0) { if (check_user(buffer)) { s_printf("\r\n\r\nInvalid Username\r\n"); break; } } if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_NETMAIL_AREA) { s_printf("\r\nADDR: "); s_readstring(buffer2, 32); if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) { from_addr = parse_fido_addr(buffer2); if (!from_addr) { s_printf("\r\n\r\nInvalid Address\r\n"); break; } else { if (from_addr->zone == 0 && from_addr->net == 0 && from_addr->node == 0 && from_addr->point == 0) { free(from_addr); s_printf("\r\n\r\nInvalid Address\r\n"); break; } s_printf(buffer2, "\r\nMailing to %d:%d/%d.%d\r\n", from_addr->zone, from_addr->net, from_addr->node, from_addr->point); } } else if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) { wwiv_to = atoi(buffer2); if (wwiv_to == 0) { s_printf("\r\n\r\nInvalid Address\r\n"); break; } else { s_printf("\r\nMailing to @%d\r\n", wwiv_to); } } } to = strdup(buffer); s_printf("\r\nSUBJECT: "); s_readstring(buffer, 25); if (strlen(buffer) == 0) { s_printf("\r\nAborted!\r\n"); free(to); if (from_addr != NULL) { free(from_addr); } break; } subject = strdup(buffer); // post a message msg = external_editor(user, to, from, NULL, NULL, subject, 0); if (msg != NULL) { jb = open_jam_base(conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); if (!jb) { dolog("Error opening JAM base.. %s", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); free(msg); free(to); free(subject); break; } JAM_ClearMsgHeader( &jmh ); jmh.DateWritten = (uint32_t)time(NULL); jmh.Attribute |= MSG_LOCAL; if (conf.mail_conferences[user->cur_mail_conf]->realnames == 0) { if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) { sprintf(buffer, "%s #%d @%d", user->loginname, user->id, conf.mail_conferences[user->cur_mail_conf]->wwivnode); } else { strcpy(buffer, user->loginname); } } else { if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) { sprintf(buffer, "%s #%d @%d (%s)", user->loginname, user->id, conf.mail_conferences[user->cur_mail_conf]->wwivnode, user->firstname); } else { sprintf(from, "%s %s", user->firstname, user->lastname); } } jsp = JAM_NewSubPacket(); jsf.LoID = JAMSFLD_SENDERNAME; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); jsf.LoID = JAMSFLD_RECVRNAME; jsf.HiID = 0; jsf.DatLen = strlen(to); jsf.Buffer = (char *)to; JAM_PutSubfield(jsp, &jsf); jsf.LoID = JAMSFLD_SUBJECT; jsf.HiID = 0; jsf.DatLen = strlen(subject); jsf.Buffer = (char *)subject; JAM_PutSubfield(jsp, &jsf); if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_ECHOMAIL_AREA) { jmh.Attribute |= MSG_TYPEECHO; if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) { if (conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point) { sprintf(buffer, "%d:%d/%d.%d", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point); } else { sprintf(buffer, "%d:%d/%d", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node); } jsf.LoID = JAMSFLD_OADDRESS; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); snprintf(timestr, 16, "%016lx", time(NULL)); sprintf(buffer, "%d:%d/%d.%d %s", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point, ×tr[strlen(timestr) - 8]); jsf.LoID = JAMSFLD_MSGID; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); jmh.MsgIdCRC = JAM_Crc32(buffer, strlen(buffer)); } } else if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_NETMAIL_AREA) { jmh.Attribute |= MSG_TYPENET; jmh.Attribute |= MSG_PRIVATE; if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) { if (conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point) { sprintf(buffer, "%d:%d/%d.%d", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point); } else { sprintf(buffer, "%d:%d/%d", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node); } jsf.LoID = JAMSFLD_OADDRESS; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); if (from_addr != NULL) { if (from_addr->point) { sprintf(buffer, "%d:%d/%d.%d", from_addr->zone, from_addr->net, from_addr->node, from_addr->point); } else { sprintf(buffer, "%d:%d/%d", from_addr->zone, from_addr->net, from_addr->node); } jsf.LoID = JAMSFLD_DADDRESS; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); free(from_addr); from_addr = NULL; } snprintf(timestr, 16, "%016lx", time(NULL)); sprintf(buffer, "%d:%d/%d.%d %s", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->net, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->node, conf.mail_conferences[user->cur_mail_conf]->fidoaddr->point, ×tr[strlen(timestr) - 8]); jsf.LoID = JAMSFLD_MSGID; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); jmh.MsgIdCRC = JAM_Crc32(buffer, strlen(buffer)); } else if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) { sprintf(buffer, "%d", wwiv_to); jsf.LoID = JAMSFLD_DADDRESS; jsf.HiID = 0; jsf.DatLen = strlen(buffer); jsf.Buffer = (char *)buffer; JAM_PutSubfield(jsp, &jsf); } } while (1) { z = JAM_LockMB(jb, 100); if (z == 0) { break; } else if (z == JAM_LOCK_FAILED) { sleep(1); } else { free(msg); free(to); free(subject); dolog("Failed to lock msg base!"); break; } } if (z != 0) { JAM_CloseMB(jb); break; } if (JAM_AddMessage(jb, &jmh, jsp, (char *)msg, strlen(msg))) { dolog("Failed to add message"); } else { if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_NETMAIL_AREA) { if (conf.netmail_sem != NULL) { sem_fd = open(conf.netmail_sem, O_RDWR | O_CREAT, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH); close(sem_fd); } } else if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_ECHOMAIL_AREA) { if (conf.echomail_sem != NULL) { sem_fd = open(conf.echomail_sem, O_RDWR | O_CREAT, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH); close(sem_fd); } } } JAM_UnlockMB(jb); JAM_DelSubPacket(jsp); free(msg); JAM_CloseMB(jb); } free(to); free(subject); } break; case 'l': { s_printf("\r\n"); // list mail in message base msghs = read_message_headers(user->cur_mail_conf, user->cur_mail_area, user); if (msghs != NULL && msghs->msg_count > 0) { jb = open_jam_base(conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); if (!jb) { dolog("Error opening JAM base.. %s", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path); break; } else { all_unread = 0; if (JAM_ReadLastRead(jb, user->id, &jlr) == JAM_NO_USER) { jlr.LastReadMsg = 0; jlr.HighReadMsg = 0; all_unread = 1; } JAM_CloseMB(jb); s_printf("Start at message [1-%d] or N for New? ", msghs->msg_count); s_readstring(buffer, 6); if (tolower(buffer[0]) == 'n') { if (all_unread == 0) { k = jlr.HighReadMsg; for (i=0;imsg_count;i++) { if (msghs->msgs[i]->msg_no == k) { break; } } i+=2; } else { i = 1; } } else { i = atoi(buffer); if (i <= 0) { i = 1; } } closed = 0; s_printf("\e[2J\e[1;37;44m[MSG#] Subject From To Date \r\n\e[0m"); for (j=i-1;jmsg_count;j++) { localtime_r((time_t *)&msghs->msgs[j]->msg_h->DateWritten, &msg_date); if (msghs->msgs[j]->msg_no > jlr.HighReadMsg || all_unread) { s_printf("\e[1;30m[\e[1;34m%4d\e[1;30m]\e[1;32m*\e[1;37m%-25.25s \e[1;32m%-15.15s \e[1;33m%-15.15s \e[1;35m%02d:%02d %02d-%02d-%02d\e[0m\r\n", j + 1, msghs->msgs[j]->subject, msghs->msgs[j]->from, msghs->msgs[j]->to, msg_date.tm_hour, msg_date.tm_min, msg_date.tm_mday, msg_date.tm_mon + 1, msg_date.tm_year - 100); } else { s_printf("\e[1;30m[\e[1;34m%4d\e[1;30m] \e[1;37m%-25.25s \e[1;32m%-15.15s \e[1;33m%-15.15s \e[1;35m%02d:%02d %02d-%02d-%02d\e[0m\r\n", j + 1, msghs->msgs[j]->subject, msghs->msgs[j]->from, msghs->msgs[j]->to, msg_date.tm_hour, msg_date.tm_min, msg_date.tm_mday, msg_date.tm_mon + 1, msg_date.tm_year - 100); } if ((j - (i - 1)) != 0 && (j - (i - 1)) % 20 == 0) { s_printf("(#) Read Message # (Q) Quit (ENTER) Continue\r\n"); s_readstring(buffer, 6); if (tolower(buffer[0]) == 'q') { closed = 1; break; } else if (strlen(buffer) > 0) { z = atoi(buffer); if (z > 0 && z <= msghs->msg_count) { closed = 1; read_message(socket, user, msghs, z - 1); break; } } s_printf("\e[2J\e[1;37;44m[MSG#] Subject From To Date \r\n\e[0m"); } } if (closed == 0) { s_printf("(#) Read Message # (ENTER) Quit\r\n"); s_readstring(buffer, 6); if (strlen(buffer) > 0) { z = atoi(buffer); if (z > 0 && z <= msghs->msg_count) { read_message(socket, user, msghs, z - 1); } } } } if (msghs != NULL) { free_message_headers(msghs); } } else { s_printf("\r\nThere is no mail in this area\r\n"); } } break; case 'c': { s_printf("\r\n\r\nMail Conferences:\r\n\r\n"); for (i=0;isec_level <= user->sec_level) { s_printf(" %d. %s\r\n", i, conf.mail_conferences[i]->name); } if (i != 0 && i % 20 == 0) { s_printf("Press any key to continue...\r\n"); c = s_getc(); } } s_printf("Enter the conference number: "); s_readstring(buffer, 5); if (tolower(buffer[0]) != 'q') { j = atoi(buffer); if (j < 0 || j >= conf.mail_conference_count || conf.mail_conferences[j]->sec_level > user->sec_level) { s_printf("\r\nInvalid conference number!\r\n"); } else { s_printf("\r\n"); user->cur_mail_conf = j; user->cur_mail_area = 0; } } } break; case 'a': { s_printf("\r\n\r\nMail Areas:\r\n\r\n"); for (i=0;icur_mail_conf]->mail_area_count;i++) { if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[i]->read_sec_level <= user->sec_level) { s_printf(" %d. %s\r\n", i, conf.mail_conferences[user->cur_mail_conf]->mail_areas[i]->name); } if (i != 0 && i % 20 == 0) { s_printf("Press any key to continue...\r\n"); c = s_getc(); } } s_printf("Enter the area number: "); s_readstring(buffer, 5); if (tolower(buffer[0]) != 'q') { j = atoi(buffer); if (j < 0 || j >= conf.mail_conferences[user->cur_mail_conf]->mail_area_count || conf.mail_conferences[user->cur_mail_conf]->mail_areas[j]->read_sec_level > user->sec_level) { s_printf("\r\nInvalid area number!\r\n"); } else { s_printf("\r\n"); user->cur_mail_area = j; } } } break; case 'q': { domail = 1; } break; case 'g': { s_printf("\r\nAre you sure you want to log off? (Y/N)"); c = s_getc(); if (tolower(c) == 'y') { domail = 1; doquit = 1; } } break; case 'e': { send_email(user); } break; case 'r': { // Read your email... s_printf("\r\n"); list_emails(user); } break; case '}': { for (i=user->cur_mail_conf;isec_level <= user->sec_level) { user->cur_mail_conf = i + 1; user->cur_mail_area = 0; break; } } } break; case '{': { for (i=user->cur_mail_conf;i>=0;i--) { if (i - 1 == -1) { i = conf.mail_conference_count; } if (conf.mail_conferences[i-1]->sec_level <= user->sec_level) { user->cur_mail_conf = i - 1; user->cur_mail_area = 0; break; } } } break; case ']': { for (i=user->cur_mail_area;icur_mail_conf]->mail_area_count;i++) { if (i + 1 == conf.mail_conferences[user->cur_mail_conf]->mail_area_count) { i = -1; } if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[i+1]->read_sec_level <= user->sec_level) { user->cur_mail_area = i + 1; break; } } } break; case '[': { for (i=user->cur_mail_area;i>=0;i--) { if (i - 1 == -1) { i = conf.mail_conferences[user->cur_mail_conf]->mail_area_count; } if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[i-1]->read_sec_level <= user->sec_level) { user->cur_mail_area = i - 1; break; } } } break; } } if (do_internal_menu == 0) { lua_close(L); } return doquit; } void mail_scan(struct user_record *user) { s_JamBase *jb; s_JamBaseHeader jbh; s_JamLastRead jlr; char c; int i; int j; char buffer[256]; int count; s_printf("\r\nScan for new mail? (Y/N) : "); c = s_getc(); if (tolower(c) == 'y') { for (i=0;isec_level > user->sec_level) { continue; } s_printf("\r\n%d. %s\r\n", i, conf.mail_conferences[i]->name); for (j=0;jmail_area_count;j++) { if (conf.mail_conferences[i]->mail_areas[j]->read_sec_level > user->sec_level) { continue; } jb = open_jam_base(conf.mail_conferences[i]->mail_areas[j]->path); if (!jb) { dolog("Unable to open message base"); continue; } if (JAM_ReadMBHeader(jb, &jbh) != 0) { JAM_CloseMB(jb); continue; } if (JAM_ReadLastRead(jb, user->id, &jlr) == JAM_NO_USER) { if (jbh.ActiveMsgs == 0) { JAM_CloseMB(jb); continue; } s_printf(" --> %d. %s (%d new)\r\n", j, conf.mail_conferences[i]->mail_areas[j]->name, jbh.ActiveMsgs); } else { if (jlr.HighReadMsg < (jbh.ActiveMsgs - 1)) { s_printf(" --> %d. %s (%d new)\r\n", j, conf.mail_conferences[i]->mail_areas[j]->name, (jbh.ActiveMsgs - 1) - jlr.HighReadMsg); } else { JAM_CloseMB(jb); continue; } } JAM_CloseMB(jb); } } s_printf("\r\nPress any key to continue...\r\n"); s_getc(); } }