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-03-25 08:24:24 +00:00
|
|
|
#include "jamlib/jam.h"
|
2016-03-22 03:07:42 +00:00
|
|
|
#include "bbs.h"
|
|
|
|
|
|
|
|
extern struct bbs_config conf;
|
|
|
|
|
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);
|
|
|
|
printf("Got %d\n", ret);
|
|
|
|
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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
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) {
|
|
|
|
printf("Error opening JAM base.. %s\n", 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;
|
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);
|
|
|
|
if (z != 0) {
|
|
|
|
printf("Failed to read msg header: %d Erro %d\n", 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;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);
|
|
|
|
}
|
|
|
|
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;j<strlen(jamm->to);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);
|
2016-03-30 03:04:11 +00:00
|
|
|
k++;
|
2016-03-30 02:59:00 +00:00
|
|
|
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;
|
2016-03-30 03:04:11 +00:00
|
|
|
msghs->msg_count++;
|
|
|
|
k++;
|
2016-03-30 02:59:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
JAM_CloseMB(jb);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
JAM_CloseMB(jb);
|
|
|
|
return msghs;
|
|
|
|
}
|
|
|
|
|
2016-03-27 03:17:25 +00:00
|
|
|
char *editor(int socket, struct user_record *user, char *quote, char *from) {
|
2016-03-22 08:19:06 +00:00
|
|
|
int lines = 0;
|
2016-03-22 11:46:43 +00:00
|
|
|
char buffer[256];
|
2016-03-22 08:19:06 +00:00
|
|
|
char linebuffer[80];
|
|
|
|
char prompt[12];
|
|
|
|
int doquit = 0;
|
|
|
|
char **content = NULL;
|
|
|
|
int i;
|
|
|
|
char *msg;
|
|
|
|
int size = 0;
|
2016-03-22 11:46:43 +00:00
|
|
|
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;
|
2016-03-30 03:04:11 +00:00
|
|
|
|
2016-03-22 11:46:43 +00:00
|
|
|
if (quote != NULL) {
|
|
|
|
for (i=0;i<strlen(quote);i++) {
|
|
|
|
|
|
|
|
if (quote[i] == '\r' || lineat == 75) {
|
|
|
|
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-03-22 11:46:43 +00:00
|
|
|
} else {
|
|
|
|
linebuffer[lineat++] = quote[i];
|
|
|
|
linebuffer[lineat] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-23 00:14:31 +00:00
|
|
|
s_putstring(socket, "\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_putstring(socket, "\e[1;30m-------------------------------------------------------------------------------\e[0m");
|
2016-03-22 08:19:06 +00:00
|
|
|
|
|
|
|
while(!doquit) {
|
2016-03-23 00:14:31 +00:00
|
|
|
sprintf(prompt, "\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m", lines);
|
2016-03-22 08:19:06 +00:00
|
|
|
s_putstring(socket, prompt);
|
|
|
|
s_readstring(socket, linebuffer, 70);
|
|
|
|
if (linebuffer[0] == '/') {
|
|
|
|
if (toupper(linebuffer[1]) == 'S') {
|
|
|
|
for (i=0;i<lines;i++) {
|
2016-03-22 11:46:43 +00:00
|
|
|
size += strlen(content[i]) + 1;
|
2016-03-22 08:19:06 +00:00
|
|
|
}
|
2016-03-22 11:46:43 +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;
|
|
|
|
}
|
|
|
|
|
2016-03-29 04:34:03 +00:00
|
|
|
size += 18;
|
2016-03-27 03:17:25 +00:00
|
|
|
size += strlen(tagline);
|
|
|
|
|
2016-03-22 08:19:06 +00:00
|
|
|
msg = (char *)malloc(size);
|
2016-03-22 11:46:43 +00:00
|
|
|
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
|
|
|
|
|
|
|
sprintf(buffer, "\r---\r * Origin: %s \r", tagline);
|
|
|
|
strcat(msg, buffer);
|
2016-03-27 03:17:25 +00:00
|
|
|
|
2016-03-22 08:19:06 +00:00
|
|
|
free(content);
|
2016-03-22 11:46:43 +00:00
|
|
|
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);
|
|
|
|
}
|
2016-03-22 11:46:43 +00:00
|
|
|
|
|
|
|
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-03-22 11:46:43 +00:00
|
|
|
} else if (toupper(linebuffer[1]) == 'Q') {
|
|
|
|
if (quote == NULL) {
|
|
|
|
s_putstring(socket, "\r\nNo message to quote!\r\n");
|
|
|
|
} else {
|
|
|
|
s_putstring(socket, "\r\n");
|
|
|
|
for (i=0;i<quotelines;i++) {
|
2016-03-23 00:14:31 +00:00
|
|
|
sprintf(buffer, "\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", i, quotecontent[i]);
|
2016-03-22 11:46:43 +00:00
|
|
|
s_putstring(socket, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
s_putstring(socket, "\r\nQuote from Line: ");
|
|
|
|
s_readstring(socket, buffer, 5);
|
|
|
|
qfrom = atoi(buffer);
|
|
|
|
s_putstring(socket, "\r\nQuote to Line: ");
|
|
|
|
s_readstring(socket, buffer, 5);
|
|
|
|
qto = atoi(buffer);
|
|
|
|
s_putstring(socket, "\r\n");
|
|
|
|
|
|
|
|
if (qto > quotelines) {
|
|
|
|
qto = quotelines;
|
|
|
|
}
|
|
|
|
if (qfrom < 0) {
|
|
|
|
qfrom = 0;
|
|
|
|
}
|
|
|
|
if (qfrom > qto) {
|
|
|
|
s_putstring(socket, "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-03-23 00:14:31 +00:00
|
|
|
s_putstring(socket, "\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_putstring(socket, "\e[1;30m-------------------------------------------------------------------------------\e[0m");
|
|
|
|
|
2016-03-22 11:46:43 +00:00
|
|
|
for (i=0;i<lines;i++) {
|
2016-03-23 00:14:31 +00:00
|
|
|
sprintf(buffer, "\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", i, content[i]);
|
2016-03-22 11:46:43 +00:00
|
|
|
s_putstring(socket, buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (toupper(linebuffer[1]) == 'L') {
|
2016-03-23 00:14:31 +00:00
|
|
|
s_putstring(socket, "\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_putstring(socket, "\e[1;30m-------------------------------------------------------------------------------\e[0m");
|
|
|
|
|
2016-03-22 11:46:43 +00:00
|
|
|
for (i=0;i<lines;i++) {
|
2016-03-23 00:14:31 +00:00
|
|
|
sprintf(buffer, "\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", i, content[i]);
|
2016-03-22 11:46:43 +00:00
|
|
|
s_putstring(socket, buffer);
|
|
|
|
}
|
|
|
|
} else if (linebuffer[1] == '?') {
|
2016-03-23 00:14:31 +00:00
|
|
|
s_putstring(socket, "\e[1;33m\r\nHELP\r\n");
|
2016-03-22 11:46:43 +00:00
|
|
|
s_putstring(socket, "/S - Save Message\r\n");
|
|
|
|
s_putstring(socket, "/A - Abort Message\r\n");
|
|
|
|
s_putstring(socket, "/Q - Quote Message\r\n");
|
2016-03-23 00:14:31 +00:00
|
|
|
s_putstring(socket, "/E - Edit (Rewrite) Line\r\n");
|
|
|
|
s_putstring(socket, "/D - Delete Line\r\n");
|
|
|
|
s_putstring(socket, "/I - Insert Line\r\n");
|
|
|
|
s_putstring(socket, "/L - Relist Message\r\n\e[0m");
|
|
|
|
} else if (toupper(linebuffer[1]) == 'D') {
|
|
|
|
s_putstring(socket, "\r\nWhich line do you want to delete? ");
|
|
|
|
s_readstring(socket, buffer, 6);
|
|
|
|
if (strlen(buffer) == 0) {
|
|
|
|
s_putstring(socket, "\r\nAborted...\r\n");
|
|
|
|
} else {
|
|
|
|
z = atoi(buffer);
|
|
|
|
if (z < 0 || z >= lines) {
|
|
|
|
s_putstring(socket, "\r\nAborted...\r\n");
|
|
|
|
} 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') {
|
|
|
|
s_putstring(socket, "\r\nWhich line do you want to edit? ");
|
|
|
|
s_readstring(socket, buffer, 6);
|
|
|
|
if (strlen(buffer) == 0) {
|
|
|
|
s_putstring(socket, "\r\nAborted...\r\n");
|
|
|
|
} else {
|
|
|
|
z = atoi(buffer);
|
|
|
|
if (z < 0 || z >= lines) {
|
|
|
|
s_putstring(socket, "\r\nAborted...\r\n");
|
|
|
|
} else {
|
|
|
|
sprintf(buffer, "\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m%s", z, content[z]);
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
sprintf(buffer, "\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m", z);
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
s_readstring(socket, linebuffer, 70);
|
|
|
|
free(content[z]);
|
|
|
|
content[z] = strdup(linebuffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (toupper(linebuffer[1]) == 'I') {
|
|
|
|
s_putstring(socket, "\r\nInsert before which line? ");
|
|
|
|
s_readstring(socket, buffer, 6);
|
|
|
|
if (strlen(buffer) == 0) {
|
|
|
|
s_putstring(socket, "\r\nAborted...\r\n");
|
|
|
|
} else {
|
|
|
|
z = atoi(buffer);
|
|
|
|
if (z < 0 || z >= lines) {
|
|
|
|
s_putstring(socket, "\r\nAborted...\r\n");
|
|
|
|
} else {
|
|
|
|
sprintf(buffer, "\r\n\e[1;30m[\e[1;34m%3d\e[1;30m]: \e[0m", z);
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
s_readstring(socket, 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);
|
|
|
|
}
|
|
|
|
}
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
content[lines] = strdup(linebuffer);
|
|
|
|
|
|
|
|
lines++;
|
|
|
|
}
|
|
|
|
}
|
2016-03-22 11:46:43 +00:00
|
|
|
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-03-30 02:59:00 +00:00
|
|
|
void read_message(int socket, struct user_record *user, struct msg_headers *msghs, int mailno) {
|
2016-03-22 08:19:06 +00:00
|
|
|
s_JamBase *jb;
|
|
|
|
s_JamBaseHeader jbh;
|
|
|
|
s_JamMsgHeader jmh;
|
|
|
|
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];
|
|
|
|
int z;
|
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;
|
|
|
|
char *body = NULL;
|
|
|
|
int lines = 0;
|
2016-03-22 11:46:43 +00:00
|
|
|
char c;
|
|
|
|
char *replybody;
|
2016-03-24 07:23:42 +00:00
|
|
|
struct fido_addr *from_addr = NULL;
|
2016-03-28 11:10:07 +00:00
|
|
|
struct fido_addr *dest;
|
|
|
|
int wwiv_to = 0;
|
|
|
|
int i;
|
|
|
|
char *wwiv_addressee;
|
|
|
|
char *dest_addr;
|
|
|
|
int to_us;
|
2016-03-29 11:53:42 +00:00
|
|
|
char *msgid = NULL;
|
|
|
|
char timestr[17];
|
2016-03-30 02:59:00 +00:00
|
|
|
int doquit = 0;
|
|
|
|
|
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) {
|
|
|
|
printf("Error opening JAM base.. %s\n", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path);
|
|
|
|
return;
|
|
|
|
}
|
2016-03-26 06:06:59 +00:00
|
|
|
|
2016-03-30 02:59:00 +00:00
|
|
|
while (!doquit) {
|
2016-03-28 11:10:07 +00:00
|
|
|
|
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);
|
|
|
|
sprintf(buffer, "\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 {
|
|
|
|
sprintf(buffer, "\e[2J\e[1;32mFrom : \e[1;37m%s\r\n", msghs->msgs[mailno]->from);
|
2016-03-28 11:10:07 +00:00
|
|
|
}
|
2016-03-30 02:59:00 +00:00
|
|
|
s_putstring(socket, buffer);
|
|
|
|
sprintf(buffer, "\e[1;32mTo : \e[1;37m%s\r\n", msghs->msgs[mailno]->to);
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
sprintf(buffer, "\e[1;32mSubject : \e[1;37m%s\r\n", msghs->msgs[mailno]->subject);
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
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_putstring(socket, buffer);
|
|
|
|
sprintf(buffer, "\e[1;32mAttribs : \e[1;37m%s\r\n", (msghs->msgs[mailno]->msg_h->Attribute & MSG_SENT ? "SENT" : ""));
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
s_putstring(socket, "\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);
|
|
|
|
|
|
|
|
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-03-30 02:59:00 +00:00
|
|
|
|
|
|
|
for (z=0;z<msghs->msgs[mailno]->msg_h->TxtLen;z++) {
|
|
|
|
if (body[z] == '\r') {
|
|
|
|
s_putstring(socket, "\r\n");
|
|
|
|
lines++;
|
|
|
|
if (lines == 18) {
|
|
|
|
s_putstring(socket, "Press a key to continue...\r\n");
|
|
|
|
s_getc(socket);
|
|
|
|
lines = 0;
|
2016-03-28 04:46:48 +00:00
|
|
|
}
|
2016-03-22 11:46:43 +00:00
|
|
|
} else {
|
2016-03-30 02:59:00 +00:00
|
|
|
s_putchar(socket, body[z]);
|
2016-03-22 11:46:43 +00:00
|
|
|
}
|
2016-03-30 02:59:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s_putstring(socket, "Press R to reply, Q to quit, SPACE for Next Mesage...\r\n");
|
|
|
|
|
|
|
|
c = s_getc(socket);
|
|
|
|
|
|
|
|
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_putstring(socket, "\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-03-30 02:59:00 +00:00
|
|
|
sprintf(buffer, "RE: %s", msghs->msgs[mailno]->subject);
|
|
|
|
}
|
|
|
|
subject = (char *)malloc(strlen(buffer) + 1);
|
|
|
|
strcpy(subject, buffer);
|
|
|
|
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 {
|
|
|
|
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-22 11:46:43 +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);
|
|
|
|
}
|
|
|
|
replybody = editor(socket, user, body, to);
|
|
|
|
if (replybody != NULL) {
|
|
|
|
|
|
|
|
jb = open_jam_base(conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path);
|
|
|
|
if (!jb) {
|
|
|
|
printf("Error opening JAM base.. %s\n", 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);
|
2016-03-22 11:46:43 +00:00
|
|
|
|
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);
|
|
|
|
|
|
|
|
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-24 07:23: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-29 11:53:42 +00:00
|
|
|
|
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);
|
|
|
|
|
|
|
|
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,
|
|
|
|
×tr[strlen(timestr) - 8]);
|
|
|
|
|
|
|
|
jsf.LoID = JAMSFLD_MSGID;
|
|
|
|
jsf.HiID = 0;
|
|
|
|
jsf.DatLen = strlen(buffer);
|
|
|
|
jsf.Buffer = (char *)buffer;
|
|
|
|
JAM_PutSubfield(jsp, &jsf);
|
|
|
|
|
|
|
|
if (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,
|
|
|
|
&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));
|
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-29 11:53:42 +00:00
|
|
|
|
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));
|
|
|
|
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));
|
|
|
|
|
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,
|
|
|
|
×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));
|
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,
|
2016-03-30 03:46:09 +00:00
|
|
|
&msghs->msgs[mailno]->msgid[strlen(timestr) - 8]);
|
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) {
|
|
|
|
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);
|
|
|
|
printf("Failed to lock msg base!\n");
|
|
|
|
return;
|
2016-03-29 11:53:42 +00:00
|
|
|
}
|
2016-03-22 11:46:43 +00:00
|
|
|
}
|
2016-03-30 02:59:00 +00:00
|
|
|
if (JAM_AddMessage(jb, &jmh, jsp, (char *)replybody, strlen(replybody))) {
|
|
|
|
printf("Failed to add message\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
JAM_UnlockMB(jb);
|
2016-03-22 11:46:43 +00:00
|
|
|
|
2016-03-30 02:59:00 +00:00
|
|
|
JAM_DelSubPacket(jsp);
|
|
|
|
free(replybody);
|
|
|
|
JAM_CloseMB(jb);
|
|
|
|
doquit = 1;
|
2016-04-02 01:00:15 +00:00
|
|
|
} else {
|
|
|
|
doquit = 1;
|
2016-03-30 02:59:00 +00:00
|
|
|
}
|
2016-03-22 11:46:43 +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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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_putstring(socket, "\r\n\r\nNo more messages\r\n");
|
|
|
|
doquit = 1;
|
|
|
|
}
|
|
|
|
}
|
2016-03-29 11:53:42 +00:00
|
|
|
}
|
2016-03-22 08:19:06 +00:00
|
|
|
}
|
|
|
|
|
2016-03-22 03:07:42 +00:00
|
|
|
int mail_menu(int socket, struct user_record *user) {
|
|
|
|
int doquit = 0;
|
|
|
|
int domail = 0;
|
|
|
|
char c;
|
|
|
|
char prompt[128];
|
2016-03-22 08:19:06 +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-03-25 02:47:44 +00:00
|
|
|
|
2016-03-30 02:59:00 +00:00
|
|
|
struct msg_headers *msghs;
|
2016-03-22 08:19:06 +00:00
|
|
|
|
|
|
|
s_JamBase *jb;
|
|
|
|
s_JamBaseHeader jbh;
|
|
|
|
s_JamMsgHeader jmh;
|
|
|
|
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;
|
|
|
|
|
|
|
|
char *subject;
|
|
|
|
char *from;
|
|
|
|
char *to;
|
2016-03-22 11:46:43 +00:00
|
|
|
char *body;
|
|
|
|
char *replybody;
|
2016-03-28 11:10:07 +00:00
|
|
|
char *wwiv_addressee;
|
2016-03-29 11:53:42 +00:00
|
|
|
char timestr[17];
|
2016-03-22 08:19:06 +00:00
|
|
|
char *msg;
|
|
|
|
int closed;
|
2016-03-25 08:28:09 +00:00
|
|
|
uint32_t jam_crc;
|
2016-03-22 11:46:43 +00:00
|
|
|
unsigned int lastmsg,currmsg;
|
|
|
|
int lines;
|
2016-03-25 02:47:44 +00:00
|
|
|
struct fido_addr *from_addr = NULL;
|
2016-03-28 11:10:07 +00:00
|
|
|
struct fido_addr *dest = NULL;
|
|
|
|
char *dest_addr;
|
|
|
|
int to_us;
|
|
|
|
int wwiv_to;
|
2016-03-22 03:07:42 +00:00
|
|
|
|
|
|
|
while (!domail) {
|
|
|
|
s_displayansi(socket, "mailmenu");
|
|
|
|
|
|
|
|
|
2016-03-26 12:41:14 +00:00
|
|
|
sprintf(prompt, "\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);
|
2016-03-22 03:07:42 +00:00
|
|
|
s_putstring(socket, prompt);
|
|
|
|
|
|
|
|
c = s_getc(socket);
|
|
|
|
|
|
|
|
switch(tolower(c)) {
|
2016-03-22 08:19:06 +00:00
|
|
|
case 'p':
|
|
|
|
{
|
2016-03-22 11:46:43 +00:00
|
|
|
if (user->sec_level < conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->write_sec_level) {
|
|
|
|
s_putstring(socket, "\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 {
|
|
|
|
s_putstring(socket, "\r\nTO: ");
|
|
|
|
s_readstring(socket, buffer, 16);
|
|
|
|
}
|
2016-03-22 08:19:06 +00:00
|
|
|
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_putstring(socket, "\r\n\r\nInvalid Username\r\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
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) {
|
|
|
|
s_putstring(socket, "\r\nADDR: ");
|
2016-03-28 11:10:07 +00:00
|
|
|
s_readstring(socket, buffer2, 32);
|
|
|
|
if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_FIDO) {
|
|
|
|
from_addr = parse_fido_addr(buffer2);
|
|
|
|
if (!from_addr) {
|
|
|
|
s_putstring(socket, "\r\n\r\nInvalid Address\r\n");
|
|
|
|
break;
|
|
|
|
} 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);
|
|
|
|
s_putstring(socket, "\r\n\r\nInvalid Address\r\n");
|
|
|
|
break;
|
|
|
|
}
|
2016-03-28 11:10:07 +00:00
|
|
|
sprintf(buffer2, "\r\nMailing to %d:%d/%d.%d\r\n", from_addr->zone, from_addr->net, from_addr->node, from_addr->point);
|
|
|
|
s_putstring(socket, buffer2);
|
|
|
|
}
|
|
|
|
} else if (conf.mail_conferences[user->cur_mail_conf]->nettype == NETWORK_WWIV) {
|
|
|
|
wwiv_to = atoi(buffer2);
|
|
|
|
if (wwiv_to == 0) {
|
|
|
|
s_putstring(socket, "\r\n\r\nInvalid Address\r\n");
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
sprintf(buffer2, "\r\nMailing to @%d\r\n", wwiv_to);
|
|
|
|
s_putstring(socket, buffer2);
|
|
|
|
}
|
2016-03-24 07:23:42 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-22 08:19:06 +00:00
|
|
|
to = strdup(buffer);
|
|
|
|
s_putstring(socket, "\r\nSUBJECT: ");
|
|
|
|
s_readstring(socket, buffer, 25);
|
2016-03-30 03:46:09 +00:00
|
|
|
if (strlen(buffer) == 0) {
|
|
|
|
s_putstring(socket, "\r\nAborted!\r\n");
|
|
|
|
free(to);
|
|
|
|
if (from_addr != NULL) {
|
|
|
|
free(from_addr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2016-03-22 08:19:06 +00:00
|
|
|
subject = strdup(buffer);
|
|
|
|
|
|
|
|
// post a message
|
2016-03-27 03:17:25 +00:00
|
|
|
msg = editor(socket, user, NULL, NULL);
|
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) {
|
|
|
|
printf("Error opening JAM base.. %s\n", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path);
|
|
|
|
free(msg);
|
|
|
|
free(to);
|
|
|
|
free(subject);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
JAM_ClearMsgHeader( &jmh );
|
2016-03-25 02:47:44 +00:00
|
|
|
jmh.DateWritten = (uint32_t)time(NULL);
|
2016-03-23 03:29:27 +00:00
|
|
|
jmh.Attribute |= MSG_LOCAL;
|
2016-03-22 11:46:43 +00:00
|
|
|
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);
|
|
|
|
}
|
2016-03-22 11:46:43 +00:00
|
|
|
} 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 {
|
|
|
|
sprintf(from, "%s %s", user->firstname, user->lastname);
|
|
|
|
}
|
2016-03-22 11:46:43 +00:00
|
|
|
}
|
|
|
|
|
2016-03-22 08:19:06 +00:00
|
|
|
jsp = JAM_NewSubPacket();
|
2016-03-25 02:47:44 +00:00
|
|
|
|
2016-03-22 08:19:06 +00:00
|
|
|
jsf.LoID = JAMSFLD_SENDERNAME;
|
|
|
|
jsf.HiID = 0;
|
2016-03-22 11:46:43 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
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-25 05:58:08 +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_ECHOMAIL_AREA) {
|
|
|
|
jmh.Attribute |= MSG_TYPEECHO;
|
|
|
|
|
|
|
|
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-25 05:58:08 +00:00
|
|
|
|
2016-03-29 11:53:42 +00:00
|
|
|
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,
|
2016-03-29 12:16:13 +00:00
|
|
|
×tr[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-29 11:53:42 +00:00
|
|
|
|
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-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));
|
|
|
|
|
|
|
|
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
|
|
|
×tr[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-28 11:10:07 +00:00
|
|
|
} 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);
|
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);
|
|
|
|
printf("Failed to lock msg base!\n");
|
|
|
|
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))) {
|
2016-03-22 08:19:06 +00:00
|
|
|
printf("Failed to add message\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
JAM_UnlockMB(jb);
|
|
|
|
|
|
|
|
JAM_DelSubPacket(jsp);
|
|
|
|
free(msg);
|
|
|
|
JAM_CloseMB(jb);
|
|
|
|
}
|
|
|
|
free(to);
|
|
|
|
free(subject);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
{
|
|
|
|
s_putstring(socket, "\r\n");
|
|
|
|
// 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);
|
|
|
|
if (msghs != NULL) {
|
|
|
|
jb = open_jam_base(conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path);
|
|
|
|
if (!jb) {
|
|
|
|
printf("Error opening JAM base.. %s\n", conf.mail_conferences[user->cur_mail_conf]->mail_areas[user->cur_mail_area]->path);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
if (JAM_ReadLastRead(jb, user->id, &jlr) == JAM_NO_USER) {
|
|
|
|
jlr.LastReadMsg = 0;
|
|
|
|
jlr.HighReadMsg = 0;
|
|
|
|
}
|
|
|
|
sprintf(buffer, "Start at message [0-%d] ? ", msghs->msg_count - 1);
|
2016-03-23 00:14:31 +00:00
|
|
|
s_putstring(socket, buffer);
|
2016-03-30 02:59:00 +00:00
|
|
|
|
2016-03-23 00:14:31 +00:00
|
|
|
s_readstring(socket, buffer, 6);
|
|
|
|
i = atoi(buffer);
|
2016-04-01 05:15:54 +00:00
|
|
|
if (i < 0) {
|
|
|
|
i = 0;
|
|
|
|
}
|
2016-03-23 00:14:31 +00:00
|
|
|
closed = 0;
|
|
|
|
s_putstring(socket, "\e[2J\e[1;37;44m[MSG#] Subject From To Date \r\n\e[0m");
|
2016-03-25 05:58:08 +00:00
|
|
|
|
2016-03-30 02:59:00 +00:00
|
|
|
for (j=i;j<msghs->msg_count;j++) {
|
|
|
|
localtime_r((time_t *)&msghs->msgs[j]->msg_h->DateWritten, &msg_date);
|
|
|
|
if (msghs->msgs[j]->msg_no > jlr.HighReadMsg) {
|
2016-03-30 05:55:35 +00:00
|
|
|
sprintf(buffer, "\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, 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-03-30 05:55:35 +00:00
|
|
|
sprintf(buffer, "\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, 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-03-22 08:19:06 +00:00
|
|
|
s_putstring(socket, buffer);
|
|
|
|
|
2016-03-23 00:14:31 +00:00
|
|
|
if ((j - i) != 0 && (j - i) % 22 == 0) {
|
|
|
|
sprintf(buffer, "(#) Read Message # (Q) Quit (ENTER) Continue\r\n");
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
s_readstring(socket, buffer, 6);
|
|
|
|
|
|
|
|
if (tolower(buffer[0]) == 'q') {
|
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-03-30 02:59:00 +00:00
|
|
|
if (z >= 0 && z <= msghs->msg_count) {
|
2016-03-23 00:14:31 +00:00
|
|
|
JAM_CloseMB(jb);
|
|
|
|
closed = 1;
|
2016-03-30 02:59:00 +00:00
|
|
|
read_message(socket, user, msghs, z);
|
2016-03-23 00:14:31 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-03-22 08:19:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2016-03-30 02:59:00 +00:00
|
|
|
sprintf(buffer, "(#) Read Message # (ENTER) Quit\r\n");
|
2016-03-23 00:14:31 +00:00
|
|
|
s_putstring(socket, buffer);
|
|
|
|
s_readstring(socket, buffer, 6);
|
2016-03-30 02:59:00 +00:00
|
|
|
if (strlen(buffer) > 0) {
|
2016-03-23 00:14:31 +00:00
|
|
|
z = atoi(buffer);
|
2016-03-30 02:59:00 +00:00
|
|
|
if (z >= 0 && z <= msghs->msg_count) {
|
2016-03-23 00:14:31 +00:00
|
|
|
JAM_CloseMB(jb);
|
|
|
|
closed = 1;
|
2016-03-30 02:59:00 +00:00
|
|
|
read_message(socket, user, msghs, z);
|
2016-03-23 00:14:31 +00:00
|
|
|
}
|
2016-03-30 02:59:00 +00:00
|
|
|
}
|
2016-03-31 10:47:52 +00:00
|
|
|
}
|
|
|
|
if (closed == 0) {
|
|
|
|
JAM_CloseMB(jb);
|
|
|
|
}
|
|
|
|
if (msghs != NULL) {
|
|
|
|
free_message_headers(msghs);
|
|
|
|
}
|
2016-03-30 02:59:00 +00:00
|
|
|
} else {
|
|
|
|
s_putstring(socket, "\r\nThere is no mail in this area\r\n");
|
2016-03-22 08:19:06 +00:00
|
|
|
}
|
2016-03-30 02:59:00 +00:00
|
|
|
}
|
2016-03-22 08:19:06 +00:00
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
{
|
|
|
|
s_putstring(socket, "\r\n\r\nMail Conferences:\r\n\r\n");
|
|
|
|
for (i=0;i<conf.mail_conference_count;i++) {
|
2016-03-22 11:46:43 +00:00
|
|
|
if (conf.mail_conferences[i]->sec_level <= user->sec_level) {
|
|
|
|
sprintf(buffer, " %d. %s\r\n", i, conf.mail_conferences[i]->name);
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
}
|
2016-03-22 08:19:06 +00:00
|
|
|
if (i != 0 && i % 22 == 0) {
|
|
|
|
s_putstring(socket, "Press any key to continue...\r\n");
|
|
|
|
c = s_getc(socket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s_putstring(socket, "Enter the conference number: ");
|
|
|
|
s_readstring(socket, buffer, 5);
|
|
|
|
if (tolower(buffer[0]) != 'q') {
|
|
|
|
j = atoi(buffer);
|
2016-03-22 11:46:43 +00:00
|
|
|
if (j < 0 || j >= conf.mail_conference_count || conf.mail_conferences[j]->sec_level > user->sec_level) {
|
2016-03-22 08:19:06 +00:00
|
|
|
s_putstring(socket, "\r\nInvalid conference number!\r\n");
|
|
|
|
} else {
|
|
|
|
s_putstring(socket, "\r\n");
|
|
|
|
user->cur_mail_conf = j;
|
|
|
|
user->cur_mail_area = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
{
|
|
|
|
s_putstring(socket, "\r\n\r\nMail Areas:\r\n\r\n");
|
|
|
|
for (i=0;i<conf.mail_conferences[user->cur_mail_conf]->mail_area_count;i++) {
|
2016-03-22 11:46:43 +00:00
|
|
|
if (conf.mail_conferences[user->cur_mail_conf]->mail_areas[i]->read_sec_level <= user->sec_level) {
|
|
|
|
sprintf(buffer, " %d. %s\r\n", i, conf.mail_conferences[user->cur_mail_conf]->mail_areas[i]->name);
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
}
|
2016-03-22 08:19:06 +00:00
|
|
|
if (i != 0 && i % 22 == 0) {
|
|
|
|
s_putstring(socket, "Press any key to continue...\r\n");
|
|
|
|
c = s_getc(socket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s_putstring(socket, "Enter the area number: ");
|
|
|
|
s_readstring(socket, buffer, 5);
|
|
|
|
if (tolower(buffer[0]) != 'q') {
|
|
|
|
j = atoi(buffer);
|
2016-03-22 11:46:43 +00:00
|
|
|
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-03-22 08:19:06 +00:00
|
|
|
s_putstring(socket, "\r\nInvalid area number!\r\n");
|
|
|
|
} else {
|
|
|
|
s_putstring(socket, "\r\n");
|
|
|
|
user->cur_mail_area = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2016-03-22 03:07:42 +00:00
|
|
|
case 'q':
|
|
|
|
{
|
|
|
|
domail = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
{
|
|
|
|
s_putstring(socket, "\r\nAre you sure you want to log off? (Y/N)");
|
|
|
|
c = s_getc(socket);
|
|
|
|
if (tolower(c) == 'y') {
|
|
|
|
domail = 1;
|
|
|
|
doquit = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2016-03-22 11:46:43 +00:00
|
|
|
case 'e':
|
|
|
|
{
|
2016-04-01 04:33:37 +00:00
|
|
|
send_email(socket, user);
|
2016-03-22 11:46:43 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
{
|
|
|
|
// Read your email...
|
|
|
|
s_putstring(socket, "\r\n");
|
2016-04-01 04:33:37 +00:00
|
|
|
list_emails(socket, user);
|
2016-03-22 11:46:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2016-03-27 01:30:52 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return doquit;
|
|
|
|
}
|
2016-03-23 00:14:31 +00:00
|
|
|
|
2016-03-26 06:06:59 +00:00
|
|
|
void mail_scan(int socket, 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_putstring(socket, "\r\nScan for new mail? (Y/N) : ");
|
|
|
|
c = s_getc(socket);
|
|
|
|
|
|
|
|
if (tolower(c) == 'y') {
|
|
|
|
for (i=0;i<conf.mail_conference_count;i++) {
|
|
|
|
if (conf.mail_conferences[i]->sec_level > user->sec_level) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sprintf(buffer, "\r\n%d. %s\r\n", i, conf.mail_conferences[i]->name);
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
for (j=0;j<conf.mail_conferences[i]->mail_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) {
|
|
|
|
printf("Unable to open message base\n");
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
sprintf(buffer, " --> %d. %s (%d new)\r\n", j, conf.mail_conferences[i]->mail_areas[j]->name, jbh.ActiveMsgs);
|
|
|
|
} else {
|
|
|
|
if (jlr.HighReadMsg < (jbh.ActiveMsgs - 1)) {
|
|
|
|
sprintf(buffer, " --> %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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
JAM_CloseMB(jb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sprintf(buffer, "\r\nPress any key to continue...\r\n");
|
|
|
|
s_putstring(socket, buffer);
|
|
|
|
s_getc(socket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 00:14:31 +00:00
|
|
|
|