From 9c21e2a852a5da2388053ada7a27065200d3d749 Mon Sep 17 00:00:00 2001 From: Sergey Vlasov Date: Tue, 3 Dec 2002 14:49:14 +0000 Subject: [PATCH] Removed first-dot escaping when using external command to send messages (SMTP-only, not needed for sending through pipe). --- ChangeLog.claws | 6 ++++++ configure.in | 2 +- src/send.c | 3 --- 3 files changed, 7 insertions(+), 4 deletions(-) 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); } -- 2.25.1