0.8.10claws94

* src/send.c
        fix rfc2821 (4.5.2) violation in SMTP data sending,
        all lines starting with a period get an extra period
        inserted
        (found by Simon 'corecode' Schubert)
This commit is contained in:
Christoph Hohmann 2003-03-06 15:14:13 +00:00
parent 91bf8d7fe2
commit 4d3257f644
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2003-03-06 [christoph] 0.8.10claws94
* src/send.c
fix rfc2821 (4.5.2) violation in SMTP data sending,
all lines starting with a period get an extra period
inserted
(found by Simon 'corecode' Schubert)
2003-03-06 [paul] 0.8.10claws93
* src/folderview.c

View file

@ -11,7 +11,7 @@ MINOR_VERSION=8
MICRO_VERSION=10
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=claws93
EXTRA_VERSION=claws94
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target

View file

@ -256,7 +256,7 @@ gint send_message_local(const gchar *command, FILE *fp)
while (fgets(buf, sizeof(buf), fp) != NULL) {
strretchomp(buf);
if (buf[0] == '.' && buf[1] == '\0')
if (buf[0] == '.')
fputc('.', pipefp);
fputs(buf, pipefp);
fputc('\n', pipefp);