[PATCH 13/13] test: make smtp-dummy work with Emacs 24

2011-11-13 Thread David Bremner
On Mon,  3 Oct 2011 18:47:27 +0200, Thomas Jost  
wrote:
> In Emacs 24, a space is expected after a SMTP response code. If we don't 
> respect
> that, smtpmail-send-it will wait forever.

pushed.

d


Re: [PATCH 13/13] test: make smtp-dummy work with Emacs 24

2011-11-13 Thread David Bremner
On Mon,  3 Oct 2011 18:47:27 +0200, Thomas Jost  wrote:
> In Emacs 24, a space is expected after a SMTP response code. If we don't 
> respect
> that, smtpmail-send-it will wait forever.

pushed.

d
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


[PATCH 13/13] test: make smtp-dummy work with Emacs 24

2011-10-04 Thread Thomas Jost
In Emacs 24, a space is expected after a SMTP response code. If we don't respect
that, smtpmail-send-it will wait forever.
---
 test/smtp-dummy.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/test/smtp-dummy.c b/test/smtp-dummy.c
index 9da8202..021af11 100644
--- a/test/smtp-dummy.c
+++ b/test/smtp-dummy.c
@@ -71,7 +71,7 @@ static int
 process_command (FILE *peer, FILE *output, const char *command)
 {
if (STRNCMP_LITERAL (command, "EHLO ") == 0) {
-   fprintf (peer, "502\r\n");
+   fprintf (peer, "502 not implemented\r\n");
fflush (peer);
} else if (STRNCMP_LITERAL (command, "HELO ") == 0) {
fprintf (peer, "250 localhost\r\n");
-- 
1.7.6.4

___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


[PATCH 13/13] test: make smtp-dummy work with Emacs 24

2011-10-03 Thread Thomas Jost
In Emacs 24, a space is expected after a SMTP response code. If we don't respect
that, smtpmail-send-it will wait forever.
---
 test/smtp-dummy.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/test/smtp-dummy.c b/test/smtp-dummy.c
index 9da8202..021af11 100644
--- a/test/smtp-dummy.c
+++ b/test/smtp-dummy.c
@@ -71,7 +71,7 @@ static int
 process_command (FILE *peer, FILE *output, const char *command)
 {
if (STRNCMP_LITERAL (command, "EHLO ") == 0) {
-   fprintf (peer, "502\r\n");
+   fprintf (peer, "502 not implemented\r\n");
fflush (peer);
} else if (STRNCMP_LITERAL (command, "HELO ") == 0) {
fprintf (peer, "250 localhost\r\n");
-- 
1.7.6.4