Project "Tuxbox-GIT: apps":
The branch, master has been updated
via 38f5160b5a5638f14b190769cc6f698de6984fb4 (commit)
from 8f9abfa8c0b426b42231f8ede21d3a434ec12e65 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 38f5160b5a5638f14b190769cc6f698de6984fb4
Author: GetAway <get...@t-...>
Date: Fri Nov 7 16:57:03 2014 +0100
tuxmaild: increase linelen to get the whole quoted printable string. 100 chars are to little. Set it to 256.
Signed-off-by: GetAway <get...@t-...>
diff --git a/tuxbox/plugins/tuxmail/daemon/tuxmaild.c b/tuxbox/plugins/tuxmail/daemon/tuxmaild.c
index 06af926..bf2837e 100644
--- a/tuxbox/plugins/tuxmail/daemon/tuxmaild.c
+++ b/tuxbox/plugins/tuxmail/daemon/tuxmaild.c
@@ -1712,7 +1712,7 @@ int SendPOPCommand(int command, char *param, int ssl)
if(stringindex < sizeof(recv_buffer) - 4)
{
- if((linelen < 100) || (command != TOP)) // restrict linelen
+ if((linelen < 256) || (command != TOP)) // restrict linelen
{
stringindex++;
}
@@ -4800,7 +4800,7 @@ void SigHandler(int signal)
int main(int argc, char **argv)
{
- char cvs_revision[] = "$Revision: 1.51C $";
+ char cvs_revision[] = "$Revision: 1.52 $";
int param, nodelay = 0, account, mailstatus, unread_mailstatus;
pthread_t thread_id;
void *thread_result = 0;
-----------------------------------------------------------------------
Summary of changes:
tuxbox/plugins/tuxmail/daemon/tuxmaild.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
--
Tuxbox-GIT: apps
|