summaryrefslogtreecommitdiff
path: root/mail/messagewall/files/patch-exchange-server
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/patch-exchange-server
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 'mail/messagewall/files/patch-exchange-server')
-rw-r--r--mail/messagewall/files/patch-exchange-server20
1 files changed, 0 insertions, 20 deletions
diff --git a/mail/messagewall/files/patch-exchange-server b/mail/messagewall/files/patch-exchange-server
deleted file mode 100644
index f497cc898ba4..000000000000
--- a/mail/messagewall/files/patch-exchange-server
+++ /dev/null
@@ -1,20 +0,0 @@
---- client.c-orig Sat Sep 28 12:21:02 2002
-+++ client.c Tue Mar 25 13:57:37 2003
-@@ -384,8 +384,15 @@
- line = client_get_line(n);
- if (line == NULL)
- return 0;
-- tls_client_write(backends[n].client,line->s,line->l);
-- tls_client_write(backends[n].client,"\r\n",2);
-+ /*
-+ * Patch from Russell Vincent <rv2@sanger.ac.uk>
-+ * Applied by Douglas K. Rand <rand@meridian-enviro.com>
-+ * Works around problem with MS Exchange servers not liking
-+ * the \r\n showing up in a seperate packet.
-+ * See http://messagewall.org/cgi-bin/ezmlm-browse.cgi?command=showthread&list=messagewall-discuss&month=200302&threadid=nnoiaogojliciagmgpbk
-+ */
-+ firestring_estr_sprintf(&outline,"%e\r\n", line);
-+ tls_client_write(backends[n].client,outline.s,outline.l);
- firestring_estr_0(line);
- fprintf(stderr,"{%d} [%d] BACKEND/ACCEPT: accepted message responsibility: '%s'\n",process,n,line->s);
- if (line->l >= 4 && line->s[3] != '-') {