e6f5bb48bb
Exchange server. The MS Exchange server gets upset that MessageWall sends the "250 2.0.0 h1Q0Qc907062 Message accepted for delivery" and the "\r\n" in different packets. The first patch works around this MS problem. See http://messagewall.org/cgi-bin/ezmlm-browse.cgi?command=showthread&list=messagewall-discuss&month=200302&threadid=nnoiaogojliciagmgpbk The other patch changes how MessageWall behaves when there are multiple recipients to a message. MessageWall accepts the first recipient, but defers the second with a temporary SMTP error. This can take some time for all recipients to get the message when the sending side has a long queue time. MessageWall does this since different recipients of a message can have different profiles. We, along with a number of sites, use a single profile for all inbound email. This patch, which must be enabled when the port is built with -DMESSAGEWALL_ALLOW_MULT_RCPT, allows multiple recipients, using the profile of the first recipient. See: http://www.messagewall.org/cgi-bin/ezmlm-browse.cgi?command=showthread&list=messagewall-discuss&month=200303&threadid=lcjcimckfmdphlhpjjhn PR: ports/50296 Submitted by: Douglas K. Rand <rand@meridian-enviro.com> Approved by: maintainer timeout (12 days)
20 lines
981 B
Text
20 lines
981 B
Text
--- 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] != '-') {
|