]> git.ipfire.org Git - people/ms/dma.git/commitdiff
drop 28-valid-recipient.patch: already applied
authorSimon Schubert <2@0x2c.org>
Thu, 28 Oct 2010 21:00:27 +0000 (23:00 +0200)
committerSimon Schubert <2@0x2c.org>
Thu, 28 Oct 2010 21:00:27 +0000 (23:00 +0200)
debian/patches/28-valid-recipient.patch [deleted file]

diff --git a/debian/patches/28-valid-recipient.patch b/debian/patches/28-valid-recipient.patch
deleted file mode 100644 (file)
index 5fc700b..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-Description: Check the parsed recipient address for validity.
-Origin: other: http://svn.ringlet.net/svn/ringlet/mail/dma/
-Forwarded: yes
-Author: Peter Pentchev <roam@ringlet.net>
-Last-Update: 2010-06-21
-
---- a/mail.c
-+++ b/mail.c
-@@ -428,8 +428,8 @@
-       if (addr == NULL)
-               errlog(1, NULL);
--      add_recp(queue, addr, 1);
--      fprintf(stderr, "parsed `%s'\n", addr);
-+      if (add_recp(queue, addr, 1) != 0)
-+              errlogx(1, "invalid recipient `%s'", addr);
-       goto again;
- }