> That change was done here: > https://salsa.debian.org/debian/dovecot/-/commit/74e7dcd8c01731861777005a6c49b9093aec19c6 Thanks.
> TIME_T_MAX_BITS is set to 31 because Debian on i386 uses a signed 32-bit > integer for time_t. Ok. But then, this line in ioloop.c has to be adapted on i386 as well? > ioloop->next_max_time.tv_sec = (1ULL << (TIME_T_MAX_BITS-1)) - 1; It is supposed to be a very large value, "infinity" but on i386 is 1073741823 which corresponds to 2004-01-10 instead of 2038-01-19. Thanks, Andy

