summaryrefslogtreecommitdiffstats
path: root/mbbsd/user.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-28 13:39:47 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-28 13:39:47 +0800
commit7e6208a021bc404aaeb782669b7c403160a4c8d8 (patch)
tree2ac69b5b4c4c4e453ab5a85346e0cfd10dfe566e /mbbsd/user.c
parent0454427012fc548d888d7318ba78eea8e9de78fb (diff)
downloadpttbbs-7e6208a021bc404aaeb782669b7c403160a4c8d8.tar
pttbbs-7e6208a021bc404aaeb782669b7c403160a4c8d8.tar.gz
pttbbs-7e6208a021bc404aaeb782669b7c403160a4c8d8.tar.bz2
pttbbs-7e6208a021bc404aaeb782669b7c403160a4c8d8.tar.lz
pttbbs-7e6208a021bc404aaeb782669b7c403160a4c8d8.tar.xz
pttbbs-7e6208a021bc404aaeb782669b7c403160a4c8d8.tar.zst
pttbbs-7e6208a021bc404aaeb782669b7c403160a4c8d8.zip
- user: allow admins to change email to 'invalid'.
- admin: try to solve "registration failed if user is online" - register: fix display for expired accounts git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3873 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r--mbbsd/user.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index bcdd9510..192131c8 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -695,18 +695,22 @@ uinfo_query(userec_t *u, int adminmode, int unum)
case 'c':
Customize();
return;
+
case 'm':
do {
- getdata_str(y, 0, "電子信箱[變動要重新認證]:", buf, 50, DOECHO,
- x.email);
+ getdata_str(y, 0, "電子信箱[變動要重新認證]:", buf,
+ sizeof(x.email), DOECHO, x.email);
} while (!isvalidemail(buf) && vmsg("認證信箱不能用使用免費信箱"));
y++;
- if (strcmp(buf, x.email) && strchr(buf, '@')) {
+ // admins may want to use special names
+ if (strcmp(buf, x.email) &&
+ (strchr(buf, '@') || adminmode)) {
strlcpy(x.email, buf, sizeof(x.email));
mail_changed = 1;
delregcodefile();
}
break;
+
case '7':
violate_law(&x, unum);
return;