Displaying 20 results from an estimated 46 matches for "sol_tcp".
2016 Apr 12
2
Slow reading of large dovecot-uidlist files
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Tue, 12 Apr 2016, Bostjan Skufca wrote:
> On 12 April 2016 at 10:23, A.L.E.C <alec at alec.pl> wrote:
>
>> I don't know dovecot's code, but I suppose it uses uidlist file to get
>> mailbox statistics that it returns as EXISTS, RECENT, UNSEEN, UIDNEXT,
>> UIDVALIDITY, etc, which are required by IMAP standard. I
2010 Oct 10
3
pop3 TCP_CORK too late error
...4=37481984}}}, 38, 207) = 1
write(41, "iTxPBrNlaNFao+yQzLhuO4/+tQ5cuiKSe"..., 224) = 224
epoll_ctl(8, EPOLL_CTL_MOD, 41, {EPOLLIN|EPOLLPRI|EPOLLERR|EPOLLHUP,
{u32=37481984, u64=37481984}}) = 0
pread(19, "AFABQAlAC0AJ\nQAUALQAUAFABQAlAC0AF"..., 8192, 811008) = 8192
setsockopt(41, SOL_TCP, TCP_CORK, [1], 4) = 0
write(41, "\r\nKUWtGCjKO5N8UbW5uYLZbS0nmaNi4ZB"..., 4134) = 4134
write(41, "\r\npckt0KMGuho6r4H1ay0sXbx+YyuC0Sn"..., 4134) = 4134
pread(19, "kivLO4WgAoAKACgBKAFoAr3V0lpH5kuQg"..., 8192, 819200) = 8192
write(41, "\r\nJkm1ZFXSIr1Ig19KGYj7oHT61...
2019 Mar 08
1
Dovecot v2.3.5 released
On 7.3.2019 23.37, A. Schulze via dovecot wrote:
>
> Am 07.03.19 um 17:33 schrieb Aki Tuomi via dovecot:
>
>>> test-http-client-errors.c:2989: Assert failed: FALSE
>>> connection timed out ................................................. : FAILED
> Hello Aki,
>
>> Are you running with valgrind or on really slow system?
> I'm not aware my buildsystem
2009 Mar 27
1
very slow pop3 downloads
...s=POLLERR|POLLHUP|POLLNVAL}, {fd=0,
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=1, events=POLLOUT|POLLERR|POLLHUP|POLLNVAL, revents=POLLOUT}], 4,
10000) = 1
gettimeofday({1238146847, 807077}, {0, 0}) = 0
write(1, "6DEDK02J5VXFQtloRQ/JPgdcCrSmSRXj"..., 2171) = 2171
setsockopt(1, SOL_TCP, TCP_CORK, [1], 4) = 0
pread64(9, "7P8JZloV9g/oYWdnm\nnZ9f+xzkO3fVXr"..., 4096, 102400) = 4096
write(1, "\r\nLhQoxZy+rq1TZXl2ZtrKrZH15dE2PK"..., 4134) = 3669
write(1, "uv69IdP6FDbO0lztPh2sA6Z/wBqIdP9Y"..., 465) = -1 EAGAIN (Resource temporarily unavailable)
setsockopt(...
2006 Nov 25
3
[PATCH] HTTP accept filter support for FreeBSD
...,10 +666,17 @@
end
def configure_socket_options
- if /linux/ === RUBY_PLATFORM
+ case RUBY_PLATFORM
+ when /linux/
# 9 is currently TCP_DEFER_ACCEPT
- $tcp_defer_accept_opts = [9,1]
- $tcp_cork_opts = [3,1]
+ $tcp_defer_accept_opts = [Socket::SOL_TCP, 9, 1]
+ $tcp_cork_opts = [Socket::SOL_TCP, 3, 1]
+ when /freebsd/
+ # Use the HTTP accept filter if available.
+ # The struct made by pack() is defined in /usr/include/sys/socket.h as accept_filter_arg
+ unless `/sbin/sysctl -nq net.inet.accf.http`.empty?
+...
2007 Dec 19
2
maildirsize quota counting locking account?
...omain.com/home/admin/Maildir/maildirsize", O_RDWR|O_APPEND) = 7
> read(7, "10485760000S\n1562717408 107547\n-"..., 5120) = 2446
> read(7, "", 2674) = 0
> write(1, "* 1810 FETCH (UID 1815 RFC822.SI"..., 2031) = 2031
> setsockopt(1, SOL_TCP, TCP_CORK, [0], 4) = 0
> epoll_wait(4, {{EPOLLIN, {u32=101056896, u64=2370923004288}}}, 5, 2584) = 1
> read(0, "2838 UID fetch 1816 (UID RFC822."..., 2974) = 51
> setsockopt(1, SOL_TCP, TCP_CORK, [1], 4) = 0
> close(7) = 0
> open("/home/v...
2005 Sep 13
1
Solaris build failed
dovecot-v1.0-alpha build failed for Solaris 11 (OpenSolaris Nevada).
The problematic line is in socket.c line 228. The fix should be to
change SOL_TCP to IPPROTO_TCP found in netinet/in.h. This change should
work universally on all platforms.
Gary
2017 Jun 17
1
client reconnect fails (was gluster heal entry reappears)
...1] and [2017-06-17 09:13:02.002464]
...
And so on
...
Digging deeper into the problems with an strace of the gluster process
on the client I found the following sequence (100.64.252.1 being the
brick that was in maintenance):
4543 socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 5
4543 setsockopt(5, SOL_TCP, TCP_NODELAY, [1], 4) = 0
4543 setsockopt(5, SOL_SOCKET, SO_KEEPALIVE, [1], 4) = 0
4543 setsockopt(5, SOL_TCP, TCP_KEEPIDLE, [20], 4) = 0
4543 setsockopt(5, SOL_TCP, TCP_KEEPINTVL, [2], 4) = 0
4543 setsockopt(5, SOL_TCP, TCP_USER_TIMEOUT, [0], 4) = 0
4543 open("/proc/sys/net/ipv4/ip_local...
2011 May 03
3
Issue with geo-replication and nfs auth
hi,
I've some issue with geo-replication (since 3.2.0) and nfs auth (since initial release).
Geo-replication
---------------
System : Debian 6.0 amd64
Glusterfs: 3.2.0
MASTER (volume) => SLAVE (directory)
For some volume it works, but for others i can't enable geo-replication and have this error with a faulty status:
2011-05-03 09:57:40.315774] E
2014 Jan 21
1
IDLE dropping EXISTS events on mass message arrival
...IR|0700, st_size=12288, ...}) = 0
07:30:06 stat64("/home/ew/.maildir/.INBOX.vomiteer/dovecot.index.log", {st_mode=S_IFREG|0600, st_size=25920, ...}) = 0
07:30:06 fstat64(10, {st_mode=S_IFREG|0600, st_size=25920, ...}) = 0
07:30:06 epoll_wait(9, {}, 6, 7865) = 0
07:30:14 setsockopt(11, SOL_TCP, TCP_CORK, [1], 4) = 0
07:30:14 write(11, "* OK Still here\r\n", 17) = 17
07:30:14 setsockopt(11, SOL_TCP, TCP_CORK, [0], 4) = 0
07:30:14 time(NULL) = 1390289414
07:30:14 epoll_wait(9, {{EPOLLIN, {u32=4159555408, u64=4159555408}}}, 6, 22124) = 1
07:30:17 read(13, "...
2017 Jan 31
3
quota-status returns quota_status_success when email would put user over quota
...0
>> setresuid(-1, 110, -1) = 0
>> prctl(PR_SET_DUMPABLE, 1) = 0
>> stat("/data/vmail/asom-net.dk/kptest", {st_mode=S_IFDIR|0700,
>> st_size=4096, ...}) = 0
>> prctl(PR_SET_DUMPABLE, 1) = 0
>> setsockopt(12, SOL_TCP, TCP_CORK, [1], 4) = 0
>> write(12, "action=DUNNO\n\n", 14) = 14
>> setsockopt(12, SOL_TCP, TCP_CORK, [0], 4) = 0
>> epoll_wait(11, {{EPOLLIN, {u32=1593554016, u64=139734059562080}}}, 5,
>
>> 59999) = 1
>> read(12, "", 8146)...
2018 Mar 30
1
Issue with a bug with imap-login
...epoll_wait(14<anon_inode:[eventpoll]>, [{EPOLLIN, {u32=2773039024, u64=94500643485616}}], 10, 179974) = 1
263563 read(19<UNIX:[1401333->1401334]>, "* OK [CAPABILITY IMAP4rev1 LITER"..., 1024) = 103
263563 setsockopt(18<TCP:[64.142.111.79:993->64.142.18.25:39552]>, SOL_TCP, TCP_CORK, [1], 4) = 0
263563 write(18<TCP:[64.142.111.79:993->64.142.18.25:39552]>, "\27\3\3\0\177[\202'O\267-\354\\\301@\225\301\363YeQ\213\341\204!x\347\314\305\327\16\366"..., 132) = 132
263563 read(19<UNIX:[1401333->1401334]>, 0x55f2a5492a54, 1024) = -1 EAGAIN (...
2007 Dec 11
1
1.1.beta10 pop3 process hangs with 100% CPU
...96If+uVXeH2Zxl/hkn+plVwmI"..., 3975}, {"HP1oxt+np0o4Xtz27VQBtxx0zWfGuA3r"..., 193}], 2) = -1 EPIPE (Broken pipe)
13:36:05.866250 --- SIGPIPE (Broken pipe) @ 0 (0) ---
13:36:05.866288 epoll_ctl(6, EPOLL_CTL_DEL, 1, {0, {u32=135259776, u64=135259776}}) = 0
13:36:05.866335 setsockopt(1, SOL_TCP, TCP_CORK, [1], 4) = 0
13:36:05.866372 writev(1, [{"508qWWH96If+uVXeH2Zxl/hkn+plVwmI"..., 3975}, {"HP1oxt+np0o4Xtz27VQBtxx0zWfGuA3r"..., 193}], 2) = -1 EPIPE (Broken pipe)
13:36:05.866441 --- SIGPIPE (Broken pipe) @ 0 (0) ---
13:36:05.866478 writev(1, [{"508qWWH96If+uVXeH2Z...
2006 Aug 17
1
Strange apache behaviour
...f99f3, 1) = -1 EAGAIN (Resource temporarily
unavailable)
strace longer output of the same
------------------------------------------------
writev(14, [{"HTTP/1.1 200 OK\r\nDate: Thu, 17 A"..., 269}], 1) = 269
sendfile(14, 15, [0], 18475) = 18475
setsockopt(14, SOL_TCP, TCP_CORK, [0], 4) = 0
setsockopt(14, SOL_TCP, TCP_NODELAY, [1], 4) = 0
brk(0) = 0x9524000
brk(0x9546000) = 0x9546000
write(9, "192.168.0.4 - - [18/Aug/2006:00"..., 151) = 151
shutdown(14, 1 /* send */) = 0
poll([{fd=1...
2016 Oct 05
3
Dev: new option to mark all tincd socket of a tincd process
I know i'm new to the list but i'd like to propose something for tincd
daemon.
I'd like to mark all sockets established by a tincd process with a mark
passed as an argument in the command line.
What could be the purpose of this new option?
The goal of this option is to be able to have several tincd process
running at the same time using the same port but using different ip.
In
2014 Jun 24
2
Crash in service imap with version 2.2.13
Hi,
yesterday I upgraded to version 2.2.13 under Debian Squeeze.
Since today morning sometimes my logfile shows the folling error:
..
Jun 24 10:14:16 mailstore dovecot: imap(user at domain.net pid:23434 session:<jf6yi5D8TADD/vzh>): Fatal: master: service(imap): child 23434 killed with
signal 11 (core dumped)
...
The kernel error log shows:
...
Jun 24 10:14:16 mailstore kernel:
2017 Jan 24
2
quota-status returns quota_status_success when email would put user over quota
...= 110
setgroups(1, [110]) = 0
setresuid(-1, 110, -1) = 0
prctl(PR_SET_DUMPABLE, 1) = 0
stat("/data/vmail/asom-net.dk/kptest", {st_mode=S_IFDIR|0700,
st_size=4096, ...}) = 0
prctl(PR_SET_DUMPABLE, 1) = 0
setsockopt(12, SOL_TCP, TCP_CORK, [1], 4) = 0
write(12, "action=DUNNO\n\n", 14) = 14
setsockopt(12, SOL_TCP, TCP_CORK, [0], 4) = 0
epoll_wait(11, {{EPOLLIN, {u32=1593554016, u64=139734059562080}}}, 5,
59999) = 1
read(12, "", 8146) = 0
epoll_ctl(11, EPOLL_CTL_DEL, 12, 7fff0b...
2007 Jan 26
2
Attention FreeBSD Gurus
...on the FreeBSD http filtering. I completely missed that it calls /sbin/sysctl directly which means I''m slipping on my auditing.
def configure_socket_options
case RUBY_PLATFORM
when /linux/
# 9 is currently TCP_DEFER_ACCEPT
$tcp_defer_accept_opts = [Socket::SOL_TCP, 9, 1]
$tcp_cork_opts = [Socket::SOL_TCP, 3, 1]
when /freebsd/
# Use the HTTP accept filter if available.
# The struct made by pack() is defined in /usr/include/sys/socket.h as accept_filter_arg
unless `/sbin/sysctl -nq net.inet.accf.http`.empty?
$tcp...
2007 Jul 04
4
Dovecot shared mailbox folder problem
...:57 new/
drwxrws--- 2 31045 30005 4096 2007-06-21 13:57 tmp/
I added chmod o+rx for testing purpose, just in case.
stracing the situation results in:
gettimeofday({1183560101, 339756}, {4294967176, 0}) = 0
read(0, "3 select \"Shared.testAccess\"\r\n", 3978) = 30
setsockopt(1, SOL_TCP, TCP_CORK, [1], 4) = 0
stat64("/mnt/mailcache/shared/.testAccess", {st_mode=S_IFDIR|S_ISGID|0770,
st_size=4096, ...}) = 0
stat64("/mnt/mailcache/shared/.testAccess/cur", 0xbf8cb470) = -1 EACCES
(Permission denied)
write(2, "\1Estat(/mnt/mailcache/shared/.te"..., 72)...
2017 Feb 01
0
quota-status returns quota_status_success when email would put user over quota
...(-1, 110, -1) = 0
>>> prctl(PR_SET_DUMPABLE, 1) = 0
>>> stat("/data/vmail/asom-net.dk/kptest", {st_mode=S_IFDIR|0700,
>>> st_size=4096, ...}) = 0
>>> prctl(PR_SET_DUMPABLE, 1) = 0
>>> setsockopt(12, SOL_TCP, TCP_CORK, [1], 4) = 0
>>> write(12, "action=DUNNO\n\n", 14) = 14
>>> setsockopt(12, SOL_TCP, TCP_CORK, [0], 4) = 0
>>> epoll_wait(11, {{EPOLLIN, {u32=1593554016, u64=139734059562080}}}, 5,
>>> 59999) = 1
>>> read(12, "", 8146)...