summaryrefslogtreecommitdiffstats
path: root/mbbsd/user.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r--mbbsd/user.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index 05484af6..cee3106f 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -248,7 +248,7 @@ user_display(const userec_t * u, int adminmode)
int i;
static const char *uflag_desc[] = {
"拒收外信",
- "最愛自動加新板",
+ "新板加最愛",
"外藉",
"居留權",
};
@@ -258,9 +258,13 @@ user_display(const userec_t * u, int adminmode)
UF_FOREIGN,
UF_LIVERIGHT,
};
+ char buf[PATHLEN];
prints("\n其它資訊: [%s]", (u->userlevel & PERM_LOGINOK) ?
"已註冊" : "未註冊");
+ sethomefile(buf, u->userid, ".forward");
+ if (dashs(buf) > 0)
+ outs("[自動轉寄]");
for (i = 0; i < sizeof(uflag_mask)/sizeof(uflag_mask[0]); i++)
{