Disable send buffer processing

This commit is contained in:
M66B 2021-12-21 17:56:07 +01:00
parent 9110202e4a
commit dae52a1c2f
1 changed files with 2 additions and 1 deletions

View File

@ -1313,7 +1313,8 @@ public class SMTPTransport extends Transport {
Integer _fd = null;
try {
_fd = ParcelFileDescriptor.fromSocket(serverSocket).getFd();
if (false)
_fd = ParcelFileDescriptor.fromSocket(serverSocket).getFd();
} catch (Throwable ex) {
eu.faircode.email.Log.w(ex);
}