Displaying 13 results from an estimated 13 matches for "ssl_write".
2016 Apr 15
2
Randomly SSL Errors since upgrade to 2.2.23-1 (Enterprise Edition)
...SSL3_GET_RECORD:decryption failed or bad record mac
Apr 15 10:34:24 imap1 dovecot: pop3-login: Error: SSL: Stacked error: error:1408F119:SSL routines:SSL3_GET_RECORD:decryption failed or bad record mac
Apr 15 10:37:11 imap1 dovecot: imap-login: Error: SSL: Stacked error: error:140D00CF:SSL routines:SSL_write:protocol is shutdown
Apr 15 10:39:04 imap1 dovecot: imap-login: Error: SSL: Stacked error: error:1408F119:SSL routines:SSL3_GET_RECORD:decryption failed or bad record mac
Apr 15 10:43:02 imap1 dovecot: imap-login: Error: SSL: Stacked error: error:140D00CF:SSL routines:SSL_write:protocol is shutdown...
2013 Sep 16
0
Can't download emails with large file attachment
...vecot v1.0.7
I have problem in downloading emails with attachment of more than 3MB
via my email client. (Thunderbird, Outlook, etc) I can send emails out
with more than 3MB without any problem, whereas i can't download emails.
Following are the errors i found on maillog
*dovecot: pop3-login: SSL_write() syscall failed: Bad file descriptor**
**dovecot: impa-login: SSL_write() syscall failed: Bad file descriptor*
After this the email client stops downloading emails.
What could be the problem ? Please help me fix this . Thank You
*
**dovecot version: dovecot-1.0.7-8.el5_9.1**
**openssl version:...
2012 Jun 23
4
2.0.19 segfault
...4-linux-gnu/libssl.so.1.0.0
No symbol table info available.
#6 0x00007f4d01f79e04 in ?? () from /lib/x86_64-linux-gnu/libssl.so.1.0.0
No symbol table info available.
#7 0x00007f4d01f7a134 in ?? () from /lib/x86_64-linux-gnu/libssl.so.1.0.0
No symbol table info available.
#8 0x00007f4d027fed6f in ssl_write (proxy=0x7f4d03e7c0a0)
at ssl-proxy-openssl.c:499
ret = <optimized out>
#9 0x00007f4d027fee68 in plain_read (proxy=0x7f4d03e7c0a0)
at ssl-proxy-openssl.c:308
ret = <optimized out>
corked = true
---Type <return> to continue, or q <return>...
2017 Aug 25
3
trouble compiling Dovecot 2.2.31 on Solaris 10 SPARC - libssl_iostream_openssl.so is not portable!
...am_openssl.so
sk_value ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so
PEM_X509_INFO_read_bio ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so
X509_NAME_oneline ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so
ERR_get_error_line_data ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so
SSL_write ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so
X509_NAME_get_text_by_NID ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so
SSL_get_ex_new_index ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so
SSL_get_error ../lib-ssl-iostream/.libs/libssl_iostream_openssl.so
ENGINE_init ../lib-ssl-ios...
2007 Feb 03
1
POP3-Proxy error
...ntf+0x2c9a) [0x804d072] ->
pop3-login(vfprintf+0x1086) [0x804b45e] ->
pop3-login(vfprintf+0x29d0) [0x804cda8] ->
pop3-login [0x8056346] ->
pop3-login [0x8055849] ->
pop3-login(vfprintf+0x39d6) [0x804ddae] ->
/lib/i686/libc.so.6(__libc_start_main+0xc7) [0x4015bd17] ->
pop3-login(SSL_write+0x49) [0x804a931]
dovecot: Feb 02 09:30:00 Error: child 5985 (login) killed with signal 6
It seems that the unexpected shutdown of the connection confuses dovecot.
When I increased the MAXPERIP-limit in courier the crashes went away.
regards,
Christian
--
SYSTEM CONCEPT GmbH
2006 Jan 17
0
SSL and login_process_per_connection = no
...ogin_process_per_connection = no" (we
had problems with authentication and running out of file descriptors
early on, now fixed by using userdb = passwd-file rather than NIS).
This combination seems to work OK in 1.0-beta1, except I just got
disconnected with a log entry:
Warning: imap-login: SSL_write() syscall failed: Bad file number [<IP
address>]
which I've never seen before (though I've been testing this with alpha5
for weeks).
Best Wishes,
Chris
--
--+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+-
Christopher Wakelin, c.d.w...
2007 Jan 29
0
Antwort: Re: "no longer stale" when disconnected with 2.0.5
...also, the answer
will now be shorter than expected and miss the trailing '\n'
(server/upsd.c):
int sendback(ctype *client, const char *fmt, ...)
[...]
upsdebugx(2, "write: [destfd=%d] [len=%d] [%s]",
client->fd, len, rtrim(ans, '\n'));
if (client->ssl)
res = ssl_write(client, ans, len);
else
res = write(client->fd, ans, len);
The solution is to move the line with upsdebugx to after the lines writing
this to the client. I will commit this fix later today. This is an
unrelated problem from the staleness warnings though.
Best regards, Arjen
2001 Mar 07
0
Anyone have Large File support working on AIX?
...AVE_EXPLICIT_LARGEFILE_SUPPORT is turned on. Anyone
been more successful or have ideas?
----code snippit from lib/util_sock.c------
ssize_t write_data(int fd,char *buffer,size_t N)
{
size_t total=0;
ssize_t ret;
while (total < N)
{
#ifdef WITH_SSL
if(fd == sslFd){
ret = SSL_write(ssl,buffer + total,N - total);
}else{
ret = write(fd,buffer + total,N - total);
}
#else /* WITH_SSL */
ret = write(fd,buffer + total,N - total);
#endif /* WITH_SSL */
if (ret == -1) {
DEBUG(0,("write_data: write failure. Error = %s\n",
strerror(errno) ));...
2013 Feb 12
0
nginx-1.2.7
...uot; directive.
*) Bugfix: a segmentation fault might occur in a worker process if
resolver was used with the poll method.
*) Bugfix: nginx might hog CPU during SSL handshake with a backend if
the select, poll, or /dev/poll methods were used.
*) Bugfix: the "[crit] SSL_write() failed (SSL:)" error.
*) Bugfix: in the "fastcgi_keep_conn" directive.
--
Maxim Dounin
http://nginx.com/support.html
2006 Sep 29
5
SSL errors
I have a Dovecot server set up as a proxy and getting a ton of these errors, but I'm not sure where to begin troubleshooting it. I'm hearing frequently that Outlook users who use IMAP with SSL are getting disconnected often as a result. Any suggestions?...
Sep 29 11:12:07 director4 dovecot: imap-login: SSL_accept() failed: error:1409C041:SSL routines:SSL3_SETUP_BUFFERS:malloc failure
2005 Jul 16
1
Compiling under Fedora Core 4 - Problem
...ossl.o)(.text+0xa4): In function
`vio_ssl_read':
: undefined reference to `SSL_read'
/usr/lib/mysql/libmysqlclient.a(viossl.o)(.text+0xc5): In function
`vio_ssl_read':
: undefined reference to `SSL_get_error'
/usr/lib/mysql/libmysqlclient.a(viossl.o)(.text+0xf9): In function
`vio_ssl_write':
: undefined reference to `SSL_write'
/usr/lib/mysql/libmysqlclient.a(viossl.o)(.text+0x22d): In function
`vio_ssl_close':
: undefined reference to `SSL_shutdown'
/usr/lib/mysql/libmysqlclient.a(viossl.o)(.text+0x23d): In function
`vio_ssl_close':
: undefined reference to `SS...
2010 Jul 01
1
Interesting "Bad Certificate" Problem
.../lib/ruby/site_ruby/1.8/puppet/application.rb:217:in `run''
/usr/lib/ruby/site_ruby/1.8/puppet/application.rb:306:in `exit_on_fail''
/usr/lib/ruby/site_ruby/1.8/puppet/application.rb:217:in `run''
/usr/sbin/puppetmasterd:66
[2010-07-01 13:27:31] ERROR OpenSSL::SSL::SSLError: SSL_write:: internal
error
/usr/lib/ruby/1.8/openssl/buffering.rb:178:in `syswrite''
/usr/lib/ruby/1.8/openssl/buffering.rb:178:in `do_write''
/usr/lib/ruby/1.8/openssl/buffering.rb:197:in `<<''
/usr/lib/ruby/1.8/webrick/httpresponse.rb:324:in `_write_data''
/usr/lib/rub...
2012 Oct 30
5
Pigeonhole 3.3 broken against Dovecot 2.1.10
....0.0'
/usr/local/lib/dovecot/libdovecot-storage.so: undefined reference to
`SSLv23_server_method at OPENSSL_1.0.0'
/usr/local/lib/dovecot/libdovecot-storage.so: undefined reference to
`OBJ_txt2nid at OPENSSL_1.0.0'
/usr/local/lib/dovecot/libdovecot-storage.so: undefined reference to
`SSL_write at OPENSSL_1.0.0'
/usr/local/lib/dovecot/libdovecot-storage.so: undefined reference to
`sk_num at OPENSSL_1.0.0'
/usr/local/lib/dovecot/libdovecot-storage.so: undefined reference to
`BIO_ctrl_get_write_guarantee at OPENSSL_1.0.0'
/usr/local/lib/dovecot/libdovecot-storage.so: undefined...