diff options
Diffstat (limited to 'mbbsd/mail.c')
-rw-r--r-- | mbbsd/mail.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c index 530d23aa..485bd394 100644 --- a/mbbsd/mail.c +++ b/mbbsd/mail.c @@ -1955,7 +1955,8 @@ doforward(const char *direct, const fileheader_t * fh, int mode) } trim(address); - if (address[0]) { + // if user has address and not the default 'x' (no-email)... + if (address[0] && strcmp(address, "x") != 0) { snprintf(genbuf, sizeof(genbuf), "½T©wÂà±Hµ¹ [%s] ¶Ü(Y/N/Q)¡H[Y] ", address); getdata(b_lines, 0, genbuf, fname, 3, LCECHO); |