summaryrefslogtreecommitdiff
path: root/mail/messagewall/files/allow-multiple-recipients.patch
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 07:37:31 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 07:37:31 +0000
commitb792cc5809657214baafaf9e6c91c0f2c60ae2d3 (patch)
tree2819644bae64c8f4c44733d6d7dcbf578855d2d2 /mail/messagewall/files/allow-multiple-recipients.patch
parentNew Features: (diff)
remove unmaintained expired ports from mail
2011-05-01 mail/biabam: Upstream disapear and distfile is no more available 2011-05-01 mail/crashecho: Upstream disapear and distfile is no more available 2011-05-01 mail/drbl: Upstream disapear and distfile is no more available 2011-05-01 mail/glbiff: Upstream disapear and distfile is no more available 2011-05-01 mail/libsrs: Upstream disapear and distfile is no more available 2011-05-01 mail/majorcool: Upstream disapear and distfile is no more available 2011-05-01 mail/messagewall: Upstream disapear and distfile is no more available 2011-05-01 mail/pgen: Upstream disapear and distfile is no more available 2011-05-01 mail/regm: Upstream disapear and distfile is no more available 2011-05-01 mail/ricochet: Upstream disapear and distfile is no more available 2011-05-01 mail/smtpclient: Upstream disapear and distfile is no more available 2011-05-01 mail/smtpproxy: Upstream disapear and distfile is no more available 2011-05-01 mail/solidpop3d: Upstream disapear and distfile is no more available 2011-05-01 mail/spruce: Upstream disapear and distfile is no more available 2011-05-01 mail/teapop-devel: Upstream disapear and distfile is no more available 2011-05-01 mail/wmmail: Upstream disapear and distfile is no more available 2011-05-01 mail/wmmultipop3: Upstream disapear and distfile is no more available 2011-05-01 mail/wmymail: Upstream disapear and distfile is no more available 2011-05-01 mail/xpbiff: Upstream disapear and distfile is no more available
Notes
Notes: svn path=/head/; revision=273455
Diffstat (limited to '')
-rw-r--r--mail/messagewall/files/allow-multiple-recipients.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/mail/messagewall/files/allow-multiple-recipients.patch b/mail/messagewall/files/allow-multiple-recipients.patch
deleted file mode 100644
index 4166015e3a9f..000000000000
--- a/mail/messagewall/files/allow-multiple-recipients.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- smtp.c-orig Fri Oct 18 10:24:16 2002
-+++ smtp.c Tue Mar 25 13:57:37 2003
-@@ -629,20 +629,17 @@
-
- /*
- * check that we have recipient space
-+ * Patch from Quentin Guernsey <quentin@wingateweb.com>
-+ * Applied by Douglas K. Rand <rand@meridian-enviro.com>
-+ * Which allows multiple recipients, but applies the profile of
-+ * the first recipient to all recipients.
-+ * See http://www.messagewall.org/cgi-bin/ezmlm-browse.cgi?command=showthread&list=messagewall-discuss&month=200303&threadid=lcjcimckfmdphlhpjjhn
- */
-- if (clients[client].can_relay == 1) {
-- if (clients[client].num_to == max_rcpt) {
-- fprintf(stderr,"{%d} (%d) SMTP/REJECT: too many RCPT\n",process,client);
-- SMTP_RESET
-- tls_client_write(client,SMTP_MAXRCPT,sizeof(SMTP_MAXRCPT) - 1);
-- return 0;
-- }
-- } else {
-- if (clients[client].num_to == 1) {
-- fprintf(stderr,"{%d} (%d) SMTP/TEMPORARY: external host attempted multiple recipient delivery, asked for one at a time\n",process,client);
-- tls_client_write(client,SMTP_ONLYONE,sizeof(SMTP_ONLYONE) - 1);
-- return 0;
-- }
-+ if (clients[client].num_to == max_rcpt) {
-+ fprintf(stderr,"{%d} (%d) SMTP/REJECT: too many RCPT\n",process,client);
-+ SMTP_RESET
-+ tls_client_write(client,SMTP_MAXRCPT,sizeof(SMTP_MAXRCPT) - 1);
-+ return 0;
- }
-
- /*