This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/mail_menu.c

1853 lines
56 KiB
C
Raw Normal View History

2016-03-22 03:07:42 +00:00
#include <stdio.h>
#include <string.h>
#include <ctype.h>
2016-03-22 08:19:06 +00:00
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
2016-04-07 04:43:23 +00:00
#include <sys/stat.h>
#include <sys/utsname.h>
2016-04-23 04:10:42 +00:00
#include <fcntl.h>
2016-03-25 08:24:24 +00:00
#include "jamlib/jam.h"
2016-03-22 03:07:42 +00:00
#include "bbs.h"
#include "lua/lua.h"
#include "lua/lualib.h"
#include "lua/lauxlib.h"
2016-03-22 03:07:42 +00:00
extern struct bbs_config conf;
2016-04-07 04:43:23 +00:00
extern int mynode;
2016-03-30 02:59:00 +00:00
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;
};
2016-03-22 08:19:06 +00:00
s_JamBase *open_jam_base(char *path) {
int ret;
s_JamBase *jb;
2016-03-25 08:28:09 +00:00
ret = JAM_OpenMB((char *)path, &jb);
2016-03-22 08:19:06 +00:00
if (ret != 0) {
if (ret == JAM_IO_ERROR) {
free(jb);
2016-03-25 08:28:09 +00:00
ret = JAM_CreateMB((char *)path, 1, &jb);
2016-03-22 08:19:06 +00:00
if (ret != 0) {
free(jb);
return NULL;
}
2016-03-30 02:59:00 +00:00
} else {
free(jb);
dolog("Got %d", ret);
2016-03-30 02:59:00 +00:00
return NULL;
2016-03-22 08:19:06 +00:00
}
}
return jb;
}
2016-03-30 02:59:00 +00:00
void free_message_headers(struct msg_headers *msghs) {
int i;
2016-03-30 02:59:00 +00:00
for (i=0;i<msghs->msg_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;
2016-03-30 02:59:00 +00:00
struct jam_msg *jamm;
char *wwiv_addressee;
int to_us;
int i;
int z;
int j;
2016-03-30 03:04:11 +00:00
int k;
2016-03-30 02:59:00 +00:00
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);
2016-03-30 02:59:00 +00:00
return NULL;
}
JAM_ReadMBHeader(jb, &jbh);
if (jbh.ActiveMsgs > 0) {
msghs = (struct msg_headers *)malloc(sizeof(struct msg_headers));
msghs->msg_count = 0;
2016-03-30 03:04:11 +00:00
k = 0;
for (i=0;k < jbh.ActiveMsgs;i++) {
2016-03-30 02:59:00 +00:00
memset(&jmh, 0, sizeof(s_JamMsgHeader));
z = JAM_ReadMsgHeader(jb, i, &jmh, &jsp);
2016-03-30 02:59:00 +00:00
if (z != 0) {
dolog("Failed to read msg header: %d Erro %d", z, JAM_Errno(jb));
2016-03-30 02:59:00 +00:00
continue;
}
2016-03-30 02:59:00 +00:00
if (jmh.Attribute & MSG_DELETED) {
JAM_DelSubPacket(jsp);
continue;
}
jamm = (struct jam_msg *)malloc(sizeof(struct jam_msg));
2016-03-30 02:59:00 +00:00
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;
2016-03-30 02:59:00 +00:00
for (z=0;z<jsp->NumFields;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);
}
2016-03-30 02:59:00 +00:00
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);
}
2016-03-30 02:59:00 +00:00
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);
}
2016-03-30 02:59:00 +00:00
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);
}
2016-03-30 02:59:00 +00:00
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);
}
2016-03-30 02:59:00 +00:00
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);
}
2016-03-30 02:59:00 +00:00
}
JAM_DelSubPacket(jsp);
if (jmh.Attribute & MSG_PRIVATE) {
wwiv_addressee = strdup(jamm->to);
for (j=0;j<strlen(jamm->to);j++) {
if (wwiv_addressee[j] == ' ') {
wwiv_addressee[j] = '\0';
break;
}
}
2016-03-30 02:59:00 +00:00
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) {
2016-03-30 02:59:00 +00:00
to_us = 1;
} else {
to_us = 0;
}
free(dest);
}
if (!(strcasecmp(wwiv_addressee, user->loginname) == 0) || ((strcasecmp(jamm->from, user->loginname) == 0) && to_us)) {
2016-03-30 02:59:00 +00:00
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);
2016-03-30 03:04:11 +00:00
k++;
2016-03-30 02:59:00 +00:00
continue;
}
free(wwiv_addressee);
}
2016-03-30 02:59:00 +00:00
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));
}
2016-03-30 02:59:00 +00:00
msghs->msgs[msghs->msg_count] = jamm;
2016-03-30 03:04:11 +00:00
msghs->msg_count++;
k++;
2016-03-30 02:59:00 +00:00
}
2016-03-30 02:59:00 +00:00
} else {
JAM_CloseMB(jb);
return NULL;
}
JAM_CloseMB(jb);
return msghs;
}
2016-08-06 04:36:36 +00:00
char *external_editor(struct user_record *user, char *to, char *from, char *quote, char *qfrom, char *subject, int email) {
2016-04-07 04:43:23 +00:00
char c;
FILE *fptr;
char *body = NULL;
char buffer[256];
2016-08-06 04:55:18 +00:00
int len;
2016-04-07 04:43:23 +00:00
int totlen;
char *body2 = NULL;
char *tagline;
int i;
int j;
struct stat s;
struct utsname name;
2016-04-07 04:43:23 +00:00
if (conf.external_editor_cmd != NULL) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nUse external editor? (Y/N) ");
c = s_getc();
2016-04-07 04:43:23 +00:00
if (tolower(c) == 'y') {
sprintf(buffer, "%s/node%d", conf.bbs_path, mynode);
if (stat(buffer, &s) != 0) {
mkdir(buffer, 0755);
}
2016-04-07 04:43:23 +00:00
sprintf(buffer, "%s/node%d/MSGTMP", conf.bbs_path, mynode);
2016-04-07 04:43:23 +00:00
if (stat(buffer, &s) == 0) {
remove(buffer);
}
2016-04-07 04:43:23 +00:00
// write msgtemp
if (quote != NULL) {
fptr = fopen(buffer, "w");
2016-04-09 02:44:25 +00:00
for (i=0;i<strlen(quote);i++) {
if (quote[i] == '\r') {
fprintf(fptr, "\r\n");
} else if (quote[i] == 0x1) {
continue;
2016-04-09 02:54:50 +00:00
} else if (quote[i] == '\e' && quote[i + 1] == '[') {
while (strchr("ABCDEFGHIGJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", quote[i]) == NULL)
i++;
2016-04-09 02:44:25 +00:00
} else {
fprintf(fptr, "%c", quote[i]);
}
}
2016-04-07 04:43:23 +00:00
fclose(fptr);
}
sprintf(buffer, "%s/node%d/MSGINF", conf.bbs_path, mynode);
fptr = fopen(buffer, "w");
fprintf(fptr, "%s\r\n", user->loginname);
2016-04-09 01:57:01 +00:00
if (qfrom != NULL) {
fprintf(fptr, "%s\r\n", qfrom);
} else {
fprintf(fptr, "%s\r\n", to);
}
2016-04-07 04:43:23 +00:00
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);
2016-08-06 04:36:36 +00:00
rundoor(user, conf.external_editor_cmd, conf.external_editor_stdio);
2016-04-07 04:43:23 +00:00
// readin msgtmp
sprintf(buffer, "%s/node%d/MSGTMP", conf.bbs_path, mynode);
fptr = fopen(buffer, "r");
if (!fptr) {
return NULL;
}
2016-04-07 04:43:23 +00:00
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);
}
2016-04-07 04:43:23 +00:00
memcpy(&body[totlen - len], buffer, len);
body[totlen] = '\0';
2016-04-07 04:43:23 +00:00
len = fread(buffer, 1, 256, fptr);
}
2016-04-07 04:43:23 +00:00
fclose(fptr);
if (email == 1) {
2016-04-07 04:43:23 +00:00
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));
2016-04-07 04:43:23 +00:00
j = 0;
for (i=0;i<totlen;i++) {
2016-04-07 04:43:23 +00:00
if (body[i] == '\n') {
continue;
2016-04-10 09:30:43 +00:00
} else if (body[i] == '\0') {
continue;
2016-04-07 04:43:23 +00:00
}
body2[j++] = body[i];
body2[j] = '\0';
2016-04-07 04:43:23 +00:00
}
2016-04-07 04:43:23 +00:00
strcat(body2, buffer);
2016-04-07 06:41:10 +00:00
free(body);
2016-04-07 04:43:23 +00:00
return body2;
}
}
2016-08-06 04:36:36 +00:00
return editor(user, quote, qfrom, email);
2016-04-07 04:43:23 +00:00
}
2016-08-06 04:36:36 +00:00
char *editor(struct user_record *user, char *quote, char *from, int email) {
2016-03-22 08:19:06 +00:00
int lines = 0;
char buffer[256];
2016-03-22 08:19:06 +00:00
char linebuffer[80];
2016-08-06 04:55:18 +00:00
int doquit = 0;
2016-03-22 08:19:06 +00:00
char **content = NULL;
int i;
char *msg;
int size = 0;
int quotelines = 0;
char **quotecontent;
int lineat=0;
int qfrom,qto;
2016-03-23 00:14:31 +00:00
int z;
2016-03-27 03:17:25 +00:00
char *tagline;
struct utsname name;
2016-04-13 12:35:49 +00:00
char next_line_buffer[80];
memset(next_line_buffer, 0, 80);
2016-04-07 04:43:23 +00:00
if (quote != NULL) {
for (i=0;i<strlen(quote);i++) {
2016-04-13 12:35:49 +00:00
if (quote[i] == '\r' || lineat == 67) {
if (quotelines == 0) {
quotecontent = (char **)malloc(sizeof(char *));
} else {
quotecontent = (char **)realloc(quotecontent, sizeof(char *) * (quotelines + 1));
}
quotecontent[quotelines] = (char *)malloc(strlen(linebuffer) + 4);
sprintf(quotecontent[quotelines], "%c> %s", from[0], linebuffer);
quotelines++;
lineat = 0;
2016-03-23 00:14:31 +00:00
linebuffer[0] = '\0';
2016-04-07 02:42:25 +00:00
if (quote[i] != '\r') {
i--;
}
} else {
linebuffer[lineat++] = quote[i];
linebuffer[lineat] = '\0';
}
}
}
2016-08-06 04:36:36 +00:00
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");
2016-03-22 08:19:06 +00:00
while(!doquit) {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", lines, next_line_buffer);
2016-04-13 12:35:49 +00:00
strcpy(linebuffer, next_line_buffer);
2016-08-06 04:36:36 +00:00
s_readstring(&linebuffer[strlen(next_line_buffer)], 70 - strlen(next_line_buffer));
2016-04-13 12:35:49 +00:00
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]);
2016-08-06 04:36:36 +00:00
s_printf("\e[%dD\e[0K", 70 - i);
2016-04-13 12:35:49 +00:00
break;
}
}
}
2016-04-13 12:35:49 +00:00
if (linebuffer[0] == '/' && strlen(linebuffer) == 2) {
2016-03-22 08:19:06 +00:00
if (toupper(linebuffer[1]) == 'S') {
for (i=0;i<lines;i++) {
size += strlen(content[i]) + 1;
2016-03-22 08:19:06 +00:00
}
size ++;
2016-03-27 03:17:25 +00:00
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);
}
size += 2;
size += strlen(buffer);
2016-03-22 08:19:06 +00:00
msg = (char *)malloc(size);
memset(msg, 0, size);
2016-03-22 08:19:06 +00:00
for (i=0;i<lines;i++) {
strcat(msg, content[i]);
strcat(msg, "\r");
free(content[i]);
}
2016-03-29 04:34:03 +00:00
strcat(msg, buffer);
2016-03-22 08:19:06 +00:00
free(content);
if (quote != NULL) {
for (i=0;i<quotelines;i++) {
free(quotecontent[i]);
}
free(quotecontent);
}
2016-03-22 08:19:06 +00:00
return msg;
} else if (toupper(linebuffer[1]) == 'A') {
for (i=0;i<lines;i++) {
free(content[i]);
}
if (lines > 0) {
free(content);
}
if (quote != NULL) {
for (i=0;i<quotelines;i++) {
free(quotecontent[i]);
}
free(quotecontent);
}
2016-03-22 08:19:06 +00:00
return NULL;
} else if (toupper(linebuffer[1]) == 'Q') {
if (quote == NULL) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nNo message to quote!\r\n");
} else {
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
for (i=0;i<quotelines;i++) {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", i, quotecontent[i]);
}
2016-08-06 04:36:36 +00:00
s_printf("\r\nQuote from Line: ");
s_readstring(buffer, 5);
qfrom = atoi(buffer);
2016-08-06 04:36:36 +00:00
s_printf("\r\nQuote to Line: ");
s_readstring(buffer, 5);
qto = atoi(buffer);
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
if (qto > quotelines) {
qto = quotelines;
}
if (qfrom < 0) {
qfrom = 0;
}
if (qfrom > qto) {
2016-08-06 04:36:36 +00:00
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++;
}
2016-08-06 04:36:36 +00:00
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");
2016-03-23 00:14:31 +00:00
for (i=0;i<lines;i++) {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", i, content[i]);
}
}
} else if (toupper(linebuffer[1]) == 'L') {
2016-08-06 04:36:36 +00:00
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");
2016-03-23 00:14:31 +00:00
for (i=0;i<lines;i++) {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", i, content[i]);
}
} else if (linebuffer[1] == '?') {
2016-08-06 04:36:36 +00:00
s_printf("\e[1;33m\r\nHELP\r\n");
s_printf("/S - Save Message\r\n");
s_printf("/A - Abort Message\r\n");
s_printf("/Q - Quote Message\r\n");
s_printf("/E - Edit (Rewrite) Line\r\n");
s_printf("/D - Delete Line\r\n");
s_printf("/I - Insert Line\r\n");
s_printf("/L - Relist Message\r\n\e[0m");
2016-03-23 00:14:31 +00:00
} else if (toupper(linebuffer[1]) == 'D') {
2016-08-06 04:36:36 +00:00
s_printf("\r\nWhich line do you want to delete? ");
s_readstring(buffer, 6);
2016-03-23 00:14:31 +00:00
if (strlen(buffer) == 0) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nAborted...\r\n");
2016-03-23 00:14:31 +00:00
} else {
z = atoi(buffer);
if (z < 0 || z >= lines) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nAborted...\r\n");
2016-03-23 00:14:31 +00:00
} else {
for (i=z;i<lines-1;i++) {
free(content[i]);
content[i] = strdup(content[i+1]);
}
free(content[i]);
lines--;
content = (char **)realloc(content, sizeof(char *) * lines);
}
}
} else if (toupper(linebuffer[1]) == 'E') {
2016-08-06 04:36:36 +00:00
s_printf("\r\nWhich line do you want to edit? ");
s_readstring(buffer, 6);
2016-03-23 00:14:31 +00:00
if (strlen(buffer) == 0) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nAborted...\r\n");
2016-03-23 00:14:31 +00:00
} else {
z = atoi(buffer);
if (z < 0 || z >= lines) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nAborted...\r\n");
2016-03-23 00:14:31 +00:00
} else {
2016-08-06 04:36:36 +00:00
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);
2016-03-23 00:14:31 +00:00
free(content[z]);
content[z] = strdup(linebuffer);
2016-03-23 00:14:31 +00:00
}
}
} else if (toupper(linebuffer[1]) == 'I') {
2016-08-06 04:36:36 +00:00
s_printf("\r\nInsert before which line? ");
s_readstring(buffer, 6);
2016-03-23 00:14:31 +00:00
if (strlen(buffer) == 0) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nAborted...\r\n");
2016-03-23 00:14:31 +00:00
} else {
z = atoi(buffer);
if (z < 0 || z >= lines) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nAborted...\r\n");
2016-03-23 00:14:31 +00:00
} else {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m", z);
s_readstring(linebuffer, 70);
2016-03-23 00:14:31 +00:00
lines++;
content = (char **)realloc(content, sizeof(char *) * lines);
2016-03-23 00:14:31 +00:00
for (i=lines;i>z;i--) {
content[i] = content[i-1];
}
2016-03-23 00:14:31 +00:00
content[z] = strdup(linebuffer);
}
}
2016-03-22 08:19:06 +00:00
}
} else {
if (lines == 0) {
content = (char **)malloc(sizeof(char *));
} else {
content = (char **)realloc(content, sizeof(char *) * (lines + 1));
}
2016-03-22 08:19:06 +00:00
content[lines] = strdup(linebuffer);
2016-03-22 08:19:06 +00:00
lines++;
}
}
if (quote != NULL) {
for (i=0;i<quotelines;i++) {
free(quotecontent[i]);
}
free(quotecontent);
}
2016-03-22 08:19:06 +00:00
return NULL;
}
2016-08-06 04:39:12 +00:00
void read_message(struct user_record *user, struct msg_headers *msghs, int mailno) {
2016-03-22 08:19:06 +00:00
s_JamBase *jb;
2016-08-06 04:55:18 +00:00
s_JamMsgHeader jmh;
2016-03-22 08:19:06 +00:00
s_JamSubPacket* jsp;
s_JamSubfield jsf;
2016-03-26 06:06:59 +00:00
s_JamLastRead jlr;
2016-03-22 08:19:06 +00:00
char buffer[256];
2016-04-04 00:53:23 +00:00
int z, z2;
2016-03-23 00:14:31 +00:00
struct tm msg_date;
2016-03-22 08:19:06 +00:00
char *subject = NULL;
char *from = NULL;
char *to = NULL;
2016-03-22 08:19:06 +00:00
char *body = NULL;
2016-04-04 00:53:23 +00:00
char *body2 = NULL;
2016-03-22 08:19:06 +00:00
int lines = 0;
char c;
char *replybody;
2016-03-24 07:23:42 +00:00
struct fido_addr *from_addr = NULL;
2016-08-06 04:55:18 +00:00
int i, j;
char timestr[17];
2016-03-30 02:59:00 +00:00
int doquit = 0;
2016-04-04 00:53:23 +00:00
int skip_line = 0;
int chars = 0;
2016-04-22 04:36:53 +00:00
int ansi;
2016-04-23 04:10:42 +00:00
int sem_fd;
2016-03-22 08:19:06 +00:00
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);
2016-03-22 08:19:06 +00:00
return;
}
2016-03-30 02:59:00 +00:00
while (!doquit) {
2016-03-30 02:59:00 +00:00
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;
2016-03-28 11:10:07 +00:00
}
2016-03-30 02:59:00 +00:00
jlr.LastReadMsg = mailno;
if (jlr.HighReadMsg < msghs->msgs[mailno]->msg_no) {
jlr.HighReadMsg = msghs->msgs[mailno]->msg_no;
2016-03-28 11:10:07 +00:00
}
2016-03-30 02:59:00 +00:00
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);
2016-08-06 04:36:36 +00:00
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);
2016-03-30 02:59:00 +00:00
free(from_addr);
} else {
2016-08-06 04:36:36 +00:00
s_printf("\e[2J\e[1;32mFrom : \e[1;37m%s\r\n", msghs->msgs[mailno]->from);
2016-03-28 11:10:07 +00:00
}
2016-08-06 04:36:36 +00:00
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);
2016-03-30 02:59:00 +00:00
sprintf(buffer, "\e[1;32mDate : \e[1;37m%s", asctime(&msg_date));
buffer[strlen(buffer) - 1] = '\0';
strcat(buffer, "\r\n");
2016-08-06 04:36:36 +00:00
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");
2016-03-22 08:19:06 +00:00
2016-03-30 02:59:00 +00:00
body = (char *)malloc(msghs->msgs[mailno]->msg_h->TxtLen);
2016-03-30 02:59:00 +00:00
JAM_ReadMsgText(jb, msghs->msgs[mailno]->msg_h->TxtOffset, msghs->msgs[mailno]->msg_h->TxtLen, (char *)body);
JAM_WriteLastRead(jb, user->id, &jlr);
2016-03-22 08:19:06 +00:00
2016-04-04 01:04:11 +00:00
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;
}
2016-04-04 01:04:11 +00:00
for (z=0;z<msghs->msgs[mailno]->msg_h->TxtLen;z++) {
if (body[z] == '\r') {
2016-04-04 02:54:35 +00:00
if (body[z+1] == '\n') {
z++;
}
2016-04-04 01:04:11 +00:00
if (body[z+1] == 4 && body[z+2] == '0') {
skip_line = 1;
2016-04-04 00:53:23 +00:00
} else {
2016-04-04 01:18:38 +00:00
body2[z2++] = '\r';
2016-04-04 01:04:11 +00:00
skip_line = 0;
}
} else {
if (!skip_line) {
if (body[z] == 3 || body[z] == 4) {
z++;
} else {
body2[z2++] = body[z];
}
2016-04-04 00:53:23 +00:00
}
}
}
2016-04-04 01:04:11 +00:00
free(body);
body = body2;
2016-04-04 02:54:35 +00:00
} else {
z2 = msghs->msgs[mailno]->msg_h->TxtLen;
2016-04-04 00:53:23 +00:00
}
2016-04-08 03:09:39 +00:00
lines = 0;
chars = 0;
2016-04-04 02:54:35 +00:00
for (z=0;z<z2;z++) {
if (body[z] == '\r' || chars == 79) {
chars = 0;
2016-08-05 06:13:09 +00:00
if (body[z] == '\r') {
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
2016-08-05 06:13:09 +00:00
} else {
2016-08-06 04:36:36 +00:00
s_putchar(body[z]);
2016-08-05 06:13:09 +00:00
}
2016-03-30 02:59:00 +00:00
lines++;
2016-04-22 10:06:13 +00:00
if (lines >= 17) {
2016-08-06 04:36:36 +00:00
s_printf("\e[1;37mPress a key to continue...\e[0m");
s_getc();
2016-03-30 02:59:00 +00:00
lines = 0;
2016-08-06 04:36:36 +00:00
s_printf("\e[7;1H\e[0J");
2016-03-28 04:46:48 +00:00
}
} else if (body[z] == '\e' && body[z + 1] == '[') {
2016-04-22 04:36:53 +00:00
ansi = z;
2016-04-08 03:35:53 +00:00
while (strchr("ABCDEFGHIGJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", body[z]) == NULL)
z++;
if (body[z] == 'm') {
2016-04-22 04:50:29 +00:00
strncpy(buffer, &body[ansi], (z - ansi) + 1);
buffer[z - ansi + 1] = '\0';
2016-08-06 04:36:36 +00:00
s_printf("%s", buffer);
2016-04-22 06:07:20 +00:00
} else if (body[z] == 'A') {
2016-04-22 06:14:08 +00:00
j = atoi(&body[ansi + 2]);
2016-04-22 09:55:23 +00:00
if (j == 0 && ansi + 2 == z) {
2016-04-22 06:14:08 +00:00
j = 1;
}
for (i=0;i<j;i++) {
2016-04-22 05:50:48 +00:00
if (lines - 1 >= 0) {
2016-08-06 04:36:36 +00:00
s_printf("\e[A");
lines--;
} else {
break;
}
2016-04-22 05:11:00 +00:00
}
2016-04-22 06:07:20 +00:00
} else if (body[z] == 'C') {
2016-04-22 06:14:08 +00:00
j = atoi(&body[ansi + 2]);
2016-04-22 09:55:23 +00:00
if (j == 0 && ansi + 2 == z) {
2016-04-22 06:14:08 +00:00
j = 1;
}
for (i=0;i<j;i++) {
2016-04-22 05:50:48 +00:00
if (chars + 1 <= 79) {
2016-08-06 04:36:36 +00:00
s_printf("\e[C");
chars++;
} else {
break;
}
2016-04-22 05:17:33 +00:00
}
2016-04-22 06:07:20 +00:00
} else if (body[z] == 'B') {
2016-04-22 06:14:08 +00:00
j = atoi(&body[ansi + 2]);
2016-04-22 09:55:23 +00:00
if (j == 0 && ansi + 2 == z) {
2016-04-22 06:14:08 +00:00
j = 1;
}
2016-04-22 06:14:08 +00:00
for (i=0;i<j;i++) {
2016-04-22 10:06:13 +00:00
if (lines + 1 < 17) {
2016-08-06 04:36:36 +00:00
s_printf("\e[B");
lines++;
} else {
break;
}
}
2016-04-22 06:07:20 +00:00
} else if (body[z] == 'D') {
2016-04-22 06:14:08 +00:00
j = atoi(&body[ansi + 2]);
2016-04-22 09:55:23 +00:00
if (j == 0 && ansi + 2 == z) {
2016-04-22 06:14:08 +00:00
j = 1;
}
2016-04-22 06:14:08 +00:00
for (i=0;i<j;i++) {
2016-04-22 05:50:48 +00:00
if (chars - 1 >= 0) {
2016-08-06 04:36:36 +00:00
s_printf("\e[D");
chars--;
} else {
break;
}
}
2016-04-22 04:50:29 +00:00
}
2016-04-22 06:07:20 +00:00
} else {
chars++;
2016-08-06 04:36:36 +00:00
s_putchar(body[z]);
}
2016-03-30 02:59:00 +00:00
}
2016-08-06 04:36:36 +00:00
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...");
2016-08-06 04:36:36 +00:00
c = s_getc();
2016-03-30 02:59:00 +00:00
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) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nSorry, you are not allowed to post in this area\r\n");
2016-03-28 04:46:48 +00:00
} else {
2016-03-31 22:55:25 +00:00
if (msghs->msgs[mailno]->subject != NULL) {
2016-04-09 01:57:01 +00:00
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);
}
2016-03-30 02:59:00 +00:00
}
subject = (char *)malloc(strlen(buffer) + 1);
strcpy(subject, buffer);
2016-08-06 04:36:36 +00:00
s_printf("\r\n\r\nReplying to: %s\r\n", subject);
s_printf("Change Subject? (Y/N) ");
2016-08-06 04:36:36 +00:00
c = s_getc();
if (tolower(c) == 'y') {
2016-08-06 04:36:36 +00:00
s_printf("\r\nNew subject: ");
s_readstring(buffer, 25);
if (strlen(buffer) == 0) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nOk, not changing the subject line...");
} else {
free(subject);
subject = (char *)malloc(strlen(buffer) + 1);
strcpy(subject, buffer);
}
}
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
2016-03-30 02:59:00 +00:00
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);
2016-03-24 07:23:42 +00:00
}
2016-03-30 02:59:00 +00:00
} 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 {
2016-03-30 02:59:00 +00:00
from = (char *)malloc(strlen(user->firstname) + strlen(user->lastname) + 2);
sprintf(from, "%s %s", user->firstname, user->lastname);
2016-03-29 11:53:42 +00:00
}
}
2016-03-30 02:59:00 +00:00
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);
}
2016-08-06 04:36:36 +00:00
replybody = external_editor(user, to, from, body, msghs->msgs[mailno]->from, subject, 0);
2016-03-30 02:59:00 +00:00
if (replybody != NULL) {
2016-03-30 02:59:00 +00:00
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);
2016-03-30 02:59:00 +00:00
free(replybody);
free(body);
free(subject);
free(to);
free(from);
return;
}
2016-03-30 02:59:00 +00:00
JAM_ClearMsgHeader( &jmh );
jmh.DateWritten = time(NULL);
jmh.Attribute |= MSG_LOCAL;
2016-03-30 02:59:00 +00:00
jsp = JAM_NewSubPacket();
jsf.LoID = JAMSFLD_SENDERNAME;
jsf.HiID = 0;
jsf.DatLen = strlen(from);
jsf.Buffer = (char *)from;
JAM_PutSubfield(jsp, &jsf);
2016-03-30 02:59:00 +00:00
jsf.LoID = JAMSFLD_RECVRNAME;
jsf.HiID = 0;
jsf.DatLen = strlen(to);
jsf.Buffer = (char *)to;
JAM_PutSubfield(jsp, &jsf);
2016-03-30 02:59:00 +00:00
jsf.LoID = JAMSFLD_SUBJECT;
jsf.HiID = 0;
jsf.DatLen = strlen(subject);
jsf.Buffer = (char *)subject;
JAM_PutSubfield(jsp, &jsf);
2016-03-29 11:53:42 +00:00
2016-03-30 02:59:00 +00:00
if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_ECHOMAIL_AREA) {
jmh.Attribute |= MSG_TYPEECHO;
2016-03-30 02:59:00 +00:00
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);
2016-03-30 02:59:00 +00:00
snprintf(timestr, 16, "%016lx", time(NULL));
2016-03-29 11:53:42 +00:00
sprintf(buffer, "%d:%d/%d.%d %s", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone,
2016-03-30 02:59:00 +00:00
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,
&timestr[strlen(timestr) - 8]);
2016-03-30 02:59:00 +00:00
jsf.LoID = JAMSFLD_MSGID;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
jsf.Buffer = (char *)buffer;
JAM_PutSubfield(jsp, &jsf);
2016-04-15 02:34:58 +00:00
if (msghs->msgs[mailno]->msgid != NULL) {
2016-03-30 02:59:00 +00:00
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]);
2016-03-30 02:59:00 +00:00
}
2016-03-30 02:59:00 +00:00
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));
2016-03-29 11:53:42 +00:00
}
2016-03-30 02:59:00 +00:00
} 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;
2016-03-30 02:59:00 +00:00
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);
2016-03-25 05:58:08 +00:00
} else {
2016-03-30 02:59:00 +00:00
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);
2016-03-25 05:58:08 +00:00
}
2016-03-30 02:59:00 +00:00
jsf.LoID = JAMSFLD_OADDRESS;
2016-03-24 07:23:42 +00:00
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
2016-03-25 08:28:09 +00:00
jsf.Buffer = (char *)buffer;
2016-03-30 02:59:00 +00:00
JAM_PutSubfield(jsp, &jsf);
jmh.MsgIdCRC = JAM_Crc32(buffer, strlen(buffer));
2016-03-30 02:59:00 +00:00
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);
2016-03-30 02:59:00 +00:00
}
jsf.LoID = JAMSFLD_DADDRESS;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
jsf.Buffer = (char *)buffer;
JAM_PutSubfield(jsp, &jsf);
free(from_addr);
}
2016-03-30 02:59:00 +00:00
snprintf(timestr, 16, "%016lx", time(NULL));
2016-03-29 11:53:42 +00:00
sprintf(buffer, "%d:%d/%d.%d %s", conf.mail_conferences[user->cur_mail_conf]->fidoaddr->zone,
2016-03-30 02:59:00 +00:00
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,
&timestr[strlen(timestr) - 8]);
2016-03-30 02:59:00 +00:00
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));
2016-03-30 03:46:09 +00:00
if (msghs->msgs[mailno]->msgid != NULL) {
2016-03-30 02:59:00 +00:00
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]);
2016-03-30 02:59:00 +00:00
}
2016-03-30 02:59:00 +00:00
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) {
2016-03-30 02:59:00 +00:00
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);
2016-03-29 11:53:42 +00:00
}
2016-03-28 11:10:07 +00:00
}
2016-03-30 02:59:00 +00:00
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!");
2016-03-30 02:59:00 +00:00
return;
2016-03-29 11:53:42 +00:00
}
}
2016-03-30 02:59:00 +00:00
if (JAM_AddMessage(jb, &jmh, jsp, (char *)replybody, strlen(replybody))) {
dolog("Failed to add message");
2016-04-23 04:10:42 +00:00
} 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);
}
2016-04-23 04:10:42 +00:00
}
2016-03-30 02:59:00 +00:00
}
2016-03-30 02:59:00 +00:00
JAM_UnlockMB(jb);
2016-03-30 02:59:00 +00:00
JAM_DelSubPacket(jsp);
free(replybody);
JAM_CloseMB(jb);
doquit = 1;
} else {
doquit = 1;
2016-03-30 02:59:00 +00:00
}
}
2016-03-30 02:59:00 +00:00
free(body);
2016-03-22 08:19:06 +00:00
2016-03-30 02:59:00 +00:00
if (from != NULL) {
free(from);
}
2016-03-30 02:59:00 +00:00
if (to != NULL) {
free(to);
}
2016-03-30 02:59:00 +00:00
if (subject != NULL) {
free(subject);
}
2016-03-30 02:59:00 +00:00
} else if (tolower(c) == 'q') {
doquit = 1;
} else if (c == ' ') {
mailno++;
if (mailno >= msghs->msg_count) {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\r\nNo more messages\r\n");
2016-03-30 02:59:00 +00:00
doquit = 1;
}
2016-04-22 11:48:52 +00:00
} else if (tolower(c) == 'b') {
if (mailno > 0) {
mailno--;
}
2016-03-30 02:59:00 +00:00
}
2016-03-29 11:53:42 +00:00
}
2016-03-22 08:19:06 +00:00
}
2016-08-06 04:36:36 +00:00
int mail_menu(struct user_record *user) {
2016-03-22 03:07:42 +00:00
int doquit = 0;
int domail = 0;
char c;
2016-08-06 04:55:18 +00:00
char buffer[256];
2016-03-28 11:10:07 +00:00
char buffer2[256];
2016-03-22 08:19:06 +00:00
int i;
int j;
int z;
2016-04-22 12:04:03 +00:00
int k;
2016-03-30 02:59:00 +00:00
struct msg_headers *msghs;
2016-03-22 08:19:06 +00:00
s_JamBase *jb;
2016-08-06 04:55:18 +00:00
s_JamMsgHeader jmh;
2016-03-22 08:19:06 +00:00
s_JamSubPacket* jsp;
s_JamSubfield jsf;
2016-03-26 06:06:59 +00:00
s_JamLastRead jlr;
2016-03-22 08:19:06 +00:00
struct tm msg_date;
2016-03-22 08:19:06 +00:00
char *subject;
char *from;
char *to;
2016-08-06 04:55:18 +00:00
char timestr[17];
2016-03-22 08:19:06 +00:00
char *msg;
int closed;
2016-08-06 04:55:18 +00:00
struct fido_addr *from_addr = NULL;
int wwiv_to;
struct stat s;
int do_internal_menu = 0;
char *lRet;
lua_State *L;
int result;
2016-04-23 04:10:42 +00:00
int sem_fd;
2016-05-03 00:58:32 +00:00
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;
}
2016-03-22 03:07:42 +00:00
while (!domail) {
if (do_internal_menu == 1) {
2016-08-06 04:36:36 +00:00
s_displayansi("mailmenu");
2016-08-06 04:36:36 +00:00
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];
}
2016-03-22 03:07:42 +00:00
switch(tolower(c)) {
2016-04-23 10:32:56 +00:00
case 'd':
{
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
2016-04-23 10:32:56 +00:00
// 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);
2016-04-23 10:32:56 +00:00
break;
} else {
2016-05-03 00:58:32 +00:00
all_unread = 0;
2016-04-23 10:32:56 +00:00
if (JAM_ReadLastRead(jb, user->id, &jlr) == JAM_NO_USER) {
jlr.LastReadMsg = 0;
jlr.HighReadMsg = 0;
2016-05-03 00:58:32 +00:00
all_unread = 1;
2016-04-23 10:32:56 +00:00
}
JAM_CloseMB(jb);
2016-08-06 04:36:36 +00:00
s_printf("Read message [1-%d] or N for New: ", msghs->msg_count);
s_readstring(buffer, 6);
2016-04-23 10:32:56 +00:00
if (tolower(buffer[0]) == 'n') {
2016-05-03 00:58:32 +00:00
if (all_unread == 0) {
k = jlr.HighReadMsg;
for (i=0;i<msghs->msg_count;i++) {
if (msghs->msgs[i]->msg_no == k) {
break;
}
2016-04-23 10:32:56 +00:00
}
2016-05-03 00:58:32 +00:00
i += 2;
} else {
i = 1;
2016-04-23 10:32:56 +00:00
}
} else {
i = atoi(buffer);
}
2016-04-23 10:32:56 +00:00
if (i > 0 && i <= msghs->msg_count) {
2016-08-06 04:39:12 +00:00
read_message(user, msghs, i - 1);
}
2016-04-23 10:32:56 +00:00
}
}
if (msghs != NULL) {
free_message_headers(msghs);
}
2016-04-23 10:32:56 +00:00
}
break;
2016-03-22 08:19:06 +00:00
case 'p':
{
if (user->sec_level < conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->write_sec_level) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nSorry, you are not allowed to post in this area\r\n");
break;
}
2016-03-28 04:46:48 +00:00
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 {
2016-08-06 04:36:36 +00:00
s_printf("\r\nTO: ");
s_readstring(buffer, 16);
2016-03-28 04:46:48 +00:00
}
2016-03-22 08:19:06 +00:00
if (strlen(buffer) == 0) {
strcpy(buffer, "ALL");
}
2016-03-22 08:19:06 +00:00
if (conf.mail_conferences[user->cur_mail_conf]->networked == 0 && strcasecmp(buffer, "ALL") != 0) {
if (check_user(buffer)) {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\r\nInvalid Username\r\n");
2016-03-22 08:19:06 +00:00
break;
}
2016-03-22 08:19:06 +00:00
}
2016-03-24 07:23:42 +00:00
if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_NETMAIL_AREA) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nADDR: ");
s_readstring(buffer2, 32);
2016-03-28 11:10:07 +00:00
if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) {
from_addr = parse_fido_addr(buffer2);
if (!from_addr) {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\r\nInvalid Address\r\n");
break;
2016-03-28 11:10:07 +00:00
} else {
2016-03-30 03:46:09 +00:00
if (from_addr->zone == 0 && from_addr->net == 0 && from_addr->node == 0 && from_addr->point == 0) {
free(from_addr);
2016-08-06 04:36:36 +00:00
s_printf("\r\n\r\nInvalid Address\r\n");
break;
2016-03-30 03:46:09 +00:00
}
2016-08-06 04:36:36 +00:00
s_printf(buffer2, "\r\nMailing to %d:%d/%d.%d\r\n", from_addr->zone, from_addr->net, from_addr->node, from_addr->point);
}
2016-03-28 11:10:07 +00:00
} else if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) {
wwiv_to = atoi(buffer2);
if (wwiv_to == 0) {
2016-08-06 04:36:36 +00:00
s_printf("\r\n\r\nInvalid Address\r\n");
break;
2016-03-28 11:10:07 +00:00
} else {
2016-08-06 04:36:36 +00:00
s_printf("\r\nMailing to @%d\r\n", wwiv_to);
2016-03-28 11:10:07 +00:00
}
2016-03-24 07:23:42 +00:00
}
}
2016-03-22 08:19:06 +00:00
to = strdup(buffer);
2016-08-06 04:36:36 +00:00
s_printf("\r\nSUBJECT: ");
s_readstring(buffer, 25);
2016-03-30 03:46:09 +00:00
if (strlen(buffer) == 0) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nAborted!\r\n");
2016-03-30 03:46:09 +00:00
free(to);
if (from_addr != NULL) {
free(from_addr);
}
break;
}
2016-03-22 08:19:06 +00:00
subject = strdup(buffer);
2016-08-06 05:03:45 +00:00
// post a message
if (conf.mail_conferences[user->cur_mail_conf]->realnames == 0) {
from = strdup(user->loginname);
} else {
from = (char *)malloc(strlen(user->firstname) + strlen(user->lastname) + 2);
sprintf(from, "%s %s", user->firstname, user->lastname);
}
2016-08-06 04:36:36 +00:00
msg = external_editor(user, to, from, NULL, NULL, subject, 0);
2016-08-06 05:03:45 +00:00
free(from);
2016-03-22 08:19:06 +00:00
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);
2016-03-22 08:19:06 +00:00
free(msg);
free(to);
free(subject);
break;
}
2016-03-22 08:19:06 +00:00
JAM_ClearMsgHeader( &jmh );
2016-03-25 02:47:44 +00:00
jmh.DateWritten = (uint32_t)time(NULL);
jmh.Attribute |= MSG_LOCAL;
if (conf.mail_conferences[user->cur_mail_conf]->realnames == 0) {
2016-03-28 04:46:48 +00:00
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 {
2016-03-28 04:46:48 +00:00
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 {
2016-08-06 05:03:45 +00:00
sprintf(buffer, "%s %s", user->firstname, user->lastname);
2016-03-28 04:46:48 +00:00
}
}
2016-03-22 08:19:06 +00:00
jsp = JAM_NewSubPacket();
2016-03-22 08:19:06 +00:00
jsf.LoID = JAMSFLD_SENDERNAME;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
2016-03-25 08:28:09 +00:00
jsf.Buffer = (char *)buffer;
2016-03-22 08:19:06 +00:00
JAM_PutSubfield(jsp, &jsf);
jsf.LoID = JAMSFLD_RECVRNAME;
jsf.HiID = 0;
jsf.DatLen = strlen(to);
2016-03-25 08:28:09 +00:00
jsf.Buffer = (char *)to;
2016-03-22 08:19:06 +00:00
JAM_PutSubfield(jsp, &jsf);
2016-03-22 08:19:06 +00:00
jsf.LoID = JAMSFLD_SUBJECT;
jsf.HiID = 0;
jsf.DatLen = strlen(subject);
2016-03-25 08:28:09 +00:00
jsf.Buffer = (char *)subject;
2016-03-22 08:19:06 +00:00
JAM_PutSubfield(jsp, &jsf);
2016-03-24 07:23:42 +00:00
if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_ECHOMAIL_AREA) {
jmh.Attribute |= MSG_TYPEECHO;
2016-03-24 07:23:42 +00:00
if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) {
2016-03-25 05:58:08 +00:00
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);
}
2016-03-24 07:23:42 +00:00
jsf.LoID = JAMSFLD_OADDRESS;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
2016-03-25 08:28:09 +00:00
jsf.Buffer = (char *)buffer;
2016-03-24 07:23:42 +00:00
JAM_PutSubfield(jsp, &jsf);
2016-03-29 11:53:42 +00:00
snprintf(timestr, 16, "%016lx", time(NULL));
2016-03-29 11:53:42 +00:00
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,
2016-03-29 12:16:13 +00:00
&timestr[strlen(timestr) - 8]);
2016-03-29 11:53:42 +00:00
jsf.LoID = JAMSFLD_MSGID;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
jsf.Buffer = (char *)buffer;
JAM_PutSubfield(jsp, &jsf);
2016-03-29 12:02:46 +00:00
jmh.MsgIdCRC = JAM_Crc32(buffer, strlen(buffer));
2016-03-24 07:23:42 +00:00
}
2016-03-25 05:58:08 +00:00
} else
2016-03-25 02:47:44 +00:00
if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->type == TYPE_NETMAIL_AREA) {
2016-03-24 07:23:42 +00:00
jmh.Attribute |= MSG_TYPENET;
2016-03-28 11:10:07 +00:00
jmh.Attribute |= MSG_PRIVATE;
2016-03-24 07:23:42 +00:00
if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) {
2016-03-25 05:58:08 +00:00
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);
2016-03-25 05:58:08 +00:00
}
2016-03-24 07:23:42 +00:00
jsf.LoID = JAMSFLD_OADDRESS;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
2016-03-25 08:28:09 +00:00
jsf.Buffer = (char *)buffer;
2016-03-24 07:23:42 +00:00
JAM_PutSubfield(jsp, &jsf);
2016-03-25 05:58:08 +00:00
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);
}
2016-03-24 07:23:42 +00:00
jsf.LoID = JAMSFLD_DADDRESS;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
2016-03-25 08:28:09 +00:00
jsf.Buffer = (char *)buffer;
2016-03-25 02:47:44 +00:00
JAM_PutSubfield(jsp, &jsf);
free(from_addr);
from_addr = NULL;
2016-03-24 07:23:42 +00:00
}
2016-03-29 11:53:42 +00:00
snprintf(timestr, 16, "%016lx", time(NULL));
2016-03-29 11:53:42 +00:00
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,
2016-03-29 12:16:13 +00:00
&timestr[strlen(timestr) - 8]);
2016-03-29 11:53:42 +00:00
jsf.LoID = JAMSFLD_MSGID;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
jsf.Buffer = (char *)buffer;
JAM_PutSubfield(jsp, &jsf);
2016-03-29 12:02:46 +00:00
jmh.MsgIdCRC = JAM_Crc32(buffer, strlen(buffer));
} else if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) {
2016-03-28 11:10:07 +00:00
sprintf(buffer, "%d", wwiv_to);
jsf.LoID = JAMSFLD_DADDRESS;
jsf.HiID = 0;
jsf.DatLen = strlen(buffer);
jsf.Buffer = (char *)buffer;
JAM_PutSubfield(jsp, &jsf);
}
2016-03-24 07:23:42 +00:00
}
2016-03-22 08:19:06 +00:00
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!");
2016-03-22 08:19:06 +00:00
break;
}
}
if (z != 0) {
JAM_CloseMB(jb);
break;
}
2016-03-25 08:28:09 +00:00
if (JAM_AddMessage(jb, &jmh, jsp, (char *)msg, strlen(msg))) {
dolog("Failed to add message");
2016-04-23 04:10:42 +00:00
} 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);
}
2016-04-23 04:10:42 +00:00
}
2016-03-22 08:19:06 +00:00
}
2016-03-22 08:19:06 +00:00
JAM_UnlockMB(jb);
2016-03-22 08:19:06 +00:00
JAM_DelSubPacket(jsp);
free(msg);
JAM_CloseMB(jb);
}
free(to);
free(subject);
}
break;
case 'l':
{
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
2016-03-22 08:19:06 +00:00
// list mail in message base
2016-03-30 02:59:00 +00:00
msghs = read_message_headers(user->cur_mail_conf, user->cur_mail_area, user);
2016-04-04 01:34:46 +00:00
if (msghs != NULL && msghs->msg_count > 0) {
2016-03-30 02:59:00 +00:00
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);
2016-03-30 02:59:00 +00:00
break;
} else {
2016-05-03 00:58:32 +00:00
all_unread = 0;
2016-03-30 02:59:00 +00:00
if (JAM_ReadLastRead(jb, user->id, &jlr) == JAM_NO_USER) {
jlr.LastReadMsg = 0;
jlr.HighReadMsg = 0;
2016-05-03 00:58:32 +00:00
all_unread = 1;
2016-03-30 02:59:00 +00:00
}
2016-04-23 10:32:56 +00:00
JAM_CloseMB(jb);
2016-08-06 04:36:36 +00:00
s_printf("Start at message [1-%d] or N for New? ", msghs->msg_count);
s_readstring(buffer, 6);
2016-04-22 12:04:03 +00:00
if (tolower(buffer[0]) == 'n') {
2016-05-03 00:58:32 +00:00
if (all_unread == 0) {
k = jlr.HighReadMsg;
for (i=0;i<msghs->msg_count;i++) {
if (msghs->msgs[i]->msg_no == k) {
break;
}
2016-04-22 12:04:03 +00:00
}
2016-05-03 00:58:32 +00:00
i+=2;
} else {
i = 1;
2016-04-22 12:04:03 +00:00
}
} else {
i = atoi(buffer);
2016-04-23 10:32:56 +00:00
if (i <= 0) {
i = 1;
2016-04-22 12:04:03 +00:00
}
2016-04-01 05:15:54 +00:00
}
2016-03-23 00:14:31 +00:00
closed = 0;
2016-08-06 04:36:36 +00:00
s_printf("\e[2J\e[1;37;44m[MSG#] Subject From To Date \r\n\e[0m");
2016-04-23 10:32:56 +00:00
for (j=i-1;j<msghs->msg_count;j++) {
2016-03-30 02:59:00 +00:00
localtime_r((time_t *)&msghs->msgs[j]->msg_h->DateWritten, &msg_date);
if (msghs->msgs[j]->msg_no > jlr.HighReadMsg || all_unread) {
2016-08-06 04:36:36 +00:00
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);
2016-03-26 06:06:59 +00:00
} else {
2016-08-06 04:36:36 +00:00
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);
2016-03-26 06:06:59 +00:00
}
2016-08-06 04:36:36 +00:00
2016-04-23 10:32:56 +00:00
if ((j - (i - 1)) != 0 && (j - (i - 1)) % 20 == 0) {
2016-08-06 04:36:36 +00:00
s_printf("(#) Read Message # (Q) Quit (ENTER) Continue\r\n");
s_readstring(buffer, 6);
2016-03-23 00:14:31 +00:00
if (tolower(buffer[0]) == 'q') {
2016-04-09 23:50:58 +00:00
closed = 1;
2016-03-22 08:19:06 +00:00
break;
2016-03-23 00:14:31 +00:00
} else if (strlen(buffer) > 0) {
z = atoi(buffer);
2016-04-23 10:32:56 +00:00
if (z > 0 && z <= msghs->msg_count) {
2016-03-23 00:14:31 +00:00
closed = 1;
2016-08-06 04:39:12 +00:00
read_message(user, msghs, z - 1);
2016-03-23 00:14:31 +00:00
break;
}
2016-03-22 08:19:06 +00:00
}
2016-08-06 04:36:36 +00:00
s_printf("\e[2J\e[1;37;44m[MSG#] Subject From To Date \r\n\e[0m");
2016-03-22 08:19:06 +00:00
}
2016-03-22 08:19:06 +00:00
}
2016-04-09 23:50:58 +00:00
if (closed == 0) {
2016-08-06 04:36:36 +00:00
s_printf("(#) Read Message # (ENTER) Quit\r\n");
s_readstring(buffer, 6);
2016-04-09 23:50:58 +00:00
if (strlen(buffer) > 0) {
z = atoi(buffer);
2016-04-23 10:32:56 +00:00
if (z > 0 && z <= msghs->msg_count) {
2016-08-06 04:39:12 +00:00
read_message(user, msghs, z - 1);
2016-04-09 23:50:58 +00:00
}
2016-03-23 00:14:31 +00:00
}
2016-03-30 02:59:00 +00:00
}
2016-03-31 10:47:52 +00:00
}
2016-03-31 10:47:52 +00:00
if (msghs != NULL) {
free_message_headers(msghs);
}
2016-03-30 02:59:00 +00:00
} else {
2016-08-06 04:36:36 +00:00
s_printf("\r\nThere is no mail in this area\r\n");
2016-03-22 08:19:06 +00:00
}
}
2016-03-22 08:19:06 +00:00
break;
case 'c':
{
2016-08-06 04:36:36 +00:00
s_printf("\r\n\r\nMail Conferences:\r\n\r\n");
2016-03-22 08:19:06 +00:00
for (i=0;i<conf.mail_conference_count;i++) {
if (conf.mail_conferences[i]->sec_level <= user->sec_level) {
2016-08-06 04:36:36 +00:00
s_printf(" %d. %s\r\n", i, conf.mail_conferences[i]->name);
}
2016-04-03 05:26:25 +00:00
if (i != 0 && i % 20 == 0) {
2016-08-06 04:36:36 +00:00
s_printf("Press any key to continue...\r\n");
c = s_getc();
2016-03-22 08:19:06 +00:00
}
}
2016-08-06 04:36:36 +00:00
s_printf("Enter the conference number: ");
s_readstring(buffer, 5);
2016-03-22 08:19:06 +00:00
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) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nInvalid conference number!\r\n");
2016-03-22 08:19:06 +00:00
} else {
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
2016-03-22 08:19:06 +00:00
user->cur_mail_conf = j;
user->cur_mail_area = 0;
}
}
}
break;
case 'a':
{
2016-08-06 04:36:36 +00:00
s_printf("\r\n\r\nMail Areas:\r\n\r\n");
2016-03-22 08:19:06 +00:00
for (i=0;i<conf.mail_conferences[user->cur_mail_conf]->mail_area_count;i++) {
if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[i]->read_sec_level <= user->sec_level) {
2016-08-06 04:36:36 +00:00
s_printf(" %d. %s\r\n", i, conf.mail_conferences[user->cur_mail_conf]->mail_areas[i]->name);
}
2016-04-03 05:26:25 +00:00
if (i != 0 && i % 20 == 0) {
2016-08-06 04:36:36 +00:00
s_printf("Press any key to continue...\r\n");
c = s_getc();
2016-03-22 08:19:06 +00:00
}
}
2016-08-06 04:36:36 +00:00
s_printf("Enter the area number: ");
s_readstring(buffer, 5);
2016-03-22 08:19:06 +00:00
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) {
2016-08-06 04:36:36 +00:00
s_printf("\r\nInvalid area number!\r\n");
2016-03-22 08:19:06 +00:00
} else {
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
2016-03-22 08:19:06 +00:00
user->cur_mail_area = j;
}
}
}
break;
2016-03-22 03:07:42 +00:00
case 'q':
{
domail = 1;
}
break;
case 'g':
{
2016-08-06 04:36:36 +00:00
s_printf("\r\nAre you sure you want to log off? (Y/N)");
c = s_getc();
2016-03-22 03:07:42 +00:00
if (tolower(c) == 'y') {
domail = 1;
doquit = 1;
}
}
break;
case 'e':
{
2016-08-06 04:36:36 +00:00
send_email(user);
}
break;
case 'r':
{
// Read your email...
2016-08-06 04:36:36 +00:00
s_printf("\r\n");
list_emails(user);
}
break;
case '}':
{
for (i=user->cur_mail_conf;i<conf.mail_conference_count;i++) {
if (i + 1 == conf.mail_conference_count) {
i = -1;
}
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_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;i<conf.mail_conferences[user->cur_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;
2016-03-22 03:07:42 +00:00
}
}
if (do_internal_menu == 0) {
lua_close(L);
}
2016-03-22 03:07:42 +00:00
return doquit;
}
2016-03-23 00:14:31 +00:00
2016-08-06 04:36:36 +00:00
void mail_scan(struct user_record *user) {
2016-03-26 06:06:59 +00:00
s_JamBase *jb;
s_JamBaseHeader jbh;
s_JamLastRead jlr;
2016-03-26 06:06:59 +00:00
char c;
int i;
int j;
2016-08-06 04:55:18 +00:00
2016-08-06 04:36:36 +00:00
s_printf("\r\nScan for new mail? (Y/N) : ");
c = s_getc();
2016-03-26 06:06:59 +00:00
if (tolower(c) == 'y') {
for (i=0;i<conf.mail_conference_count;i++) {
if (conf.mail_conferences[i]->sec_level > user->sec_level) {
continue;
}
2016-08-06 04:36:36 +00:00
s_printf("\r\n%d. %s\r\n", i, conf.mail_conferences[i]->name);
for (j=0;j<conf.mail_conferences[i]->mail_area_count;j++) {
2016-03-26 06:06:59 +00:00
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");
2016-03-26 06:06:59 +00:00
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;
}
2016-08-06 04:36:36 +00:00
s_printf(" --> %d. %s (%d new)\r\n", j, conf.mail_conferences[i]->mail_areas[j]->name, jbh.ActiveMsgs);
2016-03-26 06:06:59 +00:00
} else {
if (jlr.HighReadMsg < (jbh.ActiveMsgs - 1)) {
2016-08-06 04:36:36 +00:00
s_printf(" --> %d. %s (%d new)\r\n", j, conf.mail_conferences[i]->mail_areas[j]->name, (jbh.ActiveMsgs - 1) - jlr.HighReadMsg);
2016-03-26 06:06:59 +00:00
} else {
JAM_CloseMB(jb);
continue;
}
}
2016-08-06 04:36:36 +00:00
JAM_CloseMB(jb);
2016-03-26 06:06:59 +00:00
}
}
2016-08-06 04:36:36 +00:00
s_printf("\r\nPress any key to continue...\r\n");
s_getc();
2016-03-26 06:06:59 +00:00
}
}