Author: norman
Date: Thu Sep 28 02:44:42 2006
New Revision: 450773
URL: http://svn.apache.org/viewvc?view=rev&rev=450773
Log:
Merge attempt to fix JAMES-638
Modified:
james/server/branches/v2.3/src/java/org/apache/james/transport/mailets/RemoteDelivery.java
Modified:
james/server/branches/v2.3/src/java/org/apache/james/transport/mailets/RemoteDelivery.java
URL:
http://svn.apache.org/viewvc/james/server/branches/v2.3/src/java/org/apache/james/transport/mailets/RemoteDelivery.java?view=diff&rev=450773&r1=450772&r2=450773
==============================================================================
---
james/server/branches/v2.3/src/java/org/apache/james/transport/mailets/RemoteDelivery.java
(original)
+++
james/server/branches/v2.3/src/java/org/apache/james/transport/mailets/RemoteDelivery.java
Thu Sep 28 02:44:42 2006
@@ -505,11 +505,15 @@
// performance enhancement can be done.
if (transport instanceof SMTPTransport) {
SMTPTransport smtpTransport = (SMTPTransport)
transport;
+
// if the message is alredy 8bit or binary and the
// server doesn't support the 8bit extension it has
// to be converted to 7bit. Javamail api don't do
// that conversion, but it is required to be a
// rfc-compliant smtp server.
+
+ // Temporaly disabled. See JAMES-638
+ /*
if (!smtpTransport.supportsExtension("8BITMIME"))
{
try {
convertTo7Bit(message);
@@ -520,6 +524,7 @@
log("Error during the conversion to 7
bit.", e);
}
}
+ */
/*
* Workaround for a javamail 1.3.2 bug: if
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]