mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-08-07 22:25:20 +00:00
Stop showing message numbers in the UI. It is debug really.
This commit is contained in:
@@ -5,6 +5,7 @@
|
|||||||
/////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
|
// - Fix terrible scrollback algorithm!!
|
||||||
// - Email composition (write, reply and forward)
|
// - Email composition (write, reply and forward)
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@@ -201,12 +202,13 @@ void print_one_email_summary(struct emailhdrs *h, uint8_t inverse) {
|
|||||||
putchar('D'); // Deleted
|
putchar('D'); // Deleted
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
printf("%02d|", h->emailnum);
|
//printf("%02d|", h->emailnum);
|
||||||
|
putchar('|');
|
||||||
printfield(h->date, 0, 16);
|
printfield(h->date, 0, 16);
|
||||||
putchar('|');
|
putchar('|');
|
||||||
printfield(h->from, 0, 20);
|
printfield(h->from, 0, 20);
|
||||||
putchar('|');
|
putchar('|');
|
||||||
printfield(h->subject, 0, 37);
|
printfield(h->subject, 0, 39);
|
||||||
//putchar('\r');
|
//putchar('\r');
|
||||||
putchar(0xe); // NORMAL
|
putchar(0xe); // NORMAL
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user