Subj : src/sbbs3/mailsrvr.c To : Git commit to main/sbbs/master From : Rob Swindell (on Debian Linux) Date : Thu Mar 02 2023 01:11 am https://gitlab.synchro.net/main/sbbs/-/commit/2852540e7b592e32195f03b8 Modified Files: src/sbbs3/mailsrvr.c Log Message: Fix false FORGED mail header 'FROM' field detection/rejection Pretty much any From field that contains an '@' in the username portion was subject to comparison to the full email address, but clearly some of these rejected emails were not forge attempts: 'Chris @ StubHub' vs 'events@mail.stubhub.com' 'Eric S. Raymond (@esr)' vs 'gitlab@mg.gitlab.com' Fixed by requiring that the sender name is actually a well-formed Internet email address using smb_netaddr_type(), which was also recently improved to be more accurate. Unrelated change: include reverse-path (email address for bounces) in ILLEGALLY-LONG body and header line log messages (usually SPAM from what I can tell). .