From c86171b69ccc0d127f97cb3ad68a00245e451a14 Mon Sep 17 00:00:00 2001 From: piaip Date: Sat, 8 Mar 2008 05:53:12 +0000 Subject: - mail: never use 'x' as foward address. help manual registered users. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3976 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/mail.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mbbsd/mail.c') 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); -- cgit v1.2.3