From: Sergey Vlasov Date: Tue, 3 Dec 2002 14:49:14 +0000 (+0000) Subject: Removed first-dot escaping when using external command to send messages X-Git-Tag: rel_0_8_7~94 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=9c21e2a852a5da2388053ada7a27065200d3d749 Removed first-dot escaping when using external command to send messages (SMTP-only, not needed for sending through pipe). --- diff --git a/ChangeLog.claws b/ChangeLog.claws index c2a074e9b..4dda379ec 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2002-12-03 [sergey] 0.8.6claws54 + + * src/send.c + send_message_local(): removed first-dot escaping + (SMTP-only, not needed for sending through pipe) + 2002-12-03 [paul] 0.8.6claws53 * po/POTFILES.in diff --git a/configure.in b/configure.in index 5f3738833..1061fd32a 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws53 +EXTRA_VERSION=claws54 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/send.c b/src/send.c index e0ee7d278..2caab150d 100644 --- a/src/send.c +++ b/src/send.c @@ -256,9 +256,6 @@ gint send_message_local(const gchar *command, FILE *fp) while (fgets(buf, sizeof(buf), fp) != NULL) { strretchomp(buf); - /* escape when a dot appears on the top */ - if (buf[0] == '.') - fputc('.', pipefp); fputs(buf, pipefp); fputc('\n', pipefp); }