summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-05-19 15:10:19 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-05-19 15:10:19 +0800
commitcd65bcf095efcc5f8e6bb3aaada318e5ac9c11f5 (patch)
tree6fd8ced9632eff56d4a89b8c0034f68411d8af9c
parent6d6c76d0df6da92dcf4151ae4d4d6df2df08f81c (diff)
downloadpttbbs-cd65bcf095efcc5f8e6bb3aaada318e5ac9c11f5.tar
pttbbs-cd65bcf095efcc5f8e6bb3aaada318e5ac9c11f5.tar.gz
pttbbs-cd65bcf095efcc5f8e6bb3aaada318e5ac9c11f5.tar.bz2
pttbbs-cd65bcf095efcc5f8e6bb3aaada318e5ac9c11f5.tar.lz
pttbbs-cd65bcf095efcc5f8e6bb3aaada318e5ac9c11f5.tar.xz
pttbbs-cd65bcf095efcc5f8e6bb3aaada318e5ac9c11f5.tar.zst
pttbbs-cd65bcf095efcc5f8e6bb3aaada318e5ac9c11f5.zip
warning for SaveEMail
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@881 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--mbbsd/mail.c10
-rw-r--r--mbbsd/menu.c4
2 files changed, 9 insertions, 5 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index d2a84154..70549fbe 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -1,4 +1,4 @@
-/* $Id: mail.c,v 1.26 2003/02/02 10:31:35 kcwu Exp $ */
+/* $Id: mail.c,v 1.27 2003/05/19 07:10:19 in2 Exp $ */
#include "bbs.h"
char currmaildir[32];
static char msg_cc[] = "\033[32m[群組名單]\033[m\n";
@@ -46,8 +46,12 @@ built_mail_index()
{
char genbuf[128];
- getdata(b_lines, 0,
- "重建信箱?(警告:請確定信箱有問題時才使用)(y/N)", genbuf, 3,
+ move(b_lines - 4, 0);
+ outs("本功\能只在信箱檔毀損時使用,\033[1;33m無法\033[m救回被刪除的信件。\n"
+ "除非您清楚這個功\能的作用,否則\033[1;33m請不要使用\033[m。\n"
+ "警告:任意的使用將導致\033[1;33m不可預期的結果\033[m!\n");
+ getdata(b_lines - 1, 0,
+ "確定重建信箱?(y/N)", genbuf, 3,
LCECHO);
if (genbuf[0] != 'y')
return 0;
diff --git a/mbbsd/menu.c b/mbbsd/menu.c
index 4455605c..5cd8c132 100644
--- a/mbbsd/menu.c
+++ b/mbbsd/menu.c
@@ -1,4 +1,4 @@
-/* $Id: menu.c,v 1.24 2003/03/31 08:27:50 in2 Exp $ */
+/* $Id: menu.c,v 1.25 2003/05/19 07:10:19 in2 Exp $ */
#include "bbs.h"
/* help & menu processring */
@@ -343,7 +343,7 @@ static commands_t maillist[] = {
{m_sysop, 0, "YYes, sir! 諂媚站長"},
{m_internet, PERM_INTERNET, "RInternet 寄信到 Internet"},
{mail_mbox, PERM_INTERNET, "RZip UserHome 把所有私人資料打包回去"},
- {built_mail_index, PERM_LOGINOK, "SSavemail 把信件救回來"},
+ {built_mail_index, PERM_LOGINOK, "SSavemail 重建信箱索引"},
{mail_all, PERM_SYSOP, "RAll 寄信給所有使用者"},
{NULL, 0, NULL}
};