Your bug report which ought to go to bugs@ is incomplete, please see
https://www.openbsd.org/report.html.
On Sat, Sep 08, 2018 at 11:35:47PM -0700, Jungle Boogie wrote:
> The backtrace is pretty uneventful, there's no debugging:
/usr/bin/smtp lacks debug symbols. Rebuild from source:
$ cd /usr/src/usr.bin/smtp
$ make obj
$ make DEBUG=-g3
Then either use the existing binary and core dump with your new symbols
$ egdb -e /usr/bin/smtp -s /usr/obj/usr.bin/smtp/smtp \
-c ./smtp.core -batch -ex bt
or reproduce the issue using the new binary (and possibly turning off
optimizations)
$ make clean
$ make DEBUG='-O0 -g3'
$ ./obj/smtp ...
$ egdb -se ./obj/smtp -c ./smtp.core -batch -ex bt