Hi, postfix-3.3.0
we got a bug report (https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/ 1753470) where postconf was crashing if main.cf had a map pointing to a file that the user couldn't read. ubuntu@bionic-postfix:~$ l /etc/postfix/valiases.cf -rw-r----- 1 root root 169 May 7 14:08 /etc/postfix/valiases.cf ubuntu@bionic-postfix:~$ cat /etc/postfix/valiases.cf cat: /etc/postfix/valiases.cf: Permission denied ubuntu@bionic-postfix:~$ postconf Segmentation fault (core dumped) ubuntu@bionic-postfix:~$ gdb shows the crash is in vstream_fileno(fp): Program received signal SIGSEGV, Segmentation fault. pcf_check_dbms_client (cf_file=0x5555557cf7c6 "/etc/postfix/valiases.cf", dp=<optimized out>) at postconf_dbms.c:184 184 if (fstat(vstream_fileno(fp), &st) == 0 && !S_ISREG(st.st_mode)) { (gdb) p fp $1 = (VSTREAM *) 0x0 (gdb) p errno $2 = 13 Just before there is a check for fp == 0, but looking for errno != EACCES, and EACCES is exactly what I got: if ((fp = vstream_fopen(cf_file, O_RDONLY, 0)) == 0 && errno != EACCES) { msg_warn("open \"%s\" configuration \"%s\": %m", dp->db_type, cf_file); myfree(dict_spec); return; }