summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/perm.h7
-rw-r--r--include/pttstruct.h3
-rw-r--r--mbbsd/mail.c6
-rw-r--r--mbbsd/menu.c3
-rw-r--r--mbbsd/user.c27
-rw-r--r--mbbsd/var.c2
-rw-r--r--util/AngelConvert.c36
-rw-r--r--util/bbsmail.c2
8 files changed, 75 insertions, 11 deletions
diff --git a/include/perm.h b/include/perm.h
index 02c03d0f..d2788a59 100644
--- a/include/perm.h
+++ b/include/perm.h
@@ -20,7 +20,12 @@
#define PERM_BBSADM 000000100000 /* BBSADM */
#define PERM_NOTOP 000000200000 /* ���C�J�Ʀ�] */
#define PERM_VIOLATELAW 000000400000 /* �H�k�q�r�� */
-#define PERM_NOOUTMAIL 000001000000 /* ���������~���H */
+
+#ifdef PLAY_ANGEL
+#define PERM_ANGEL 000001000000 /* ��������p�Ѩ� */
+#endif
+#define OLD_PERM_NOOUTMAIL 000001000000 /* ���������~���H */
+
#define PERM_NOREGCODE 000002000000 /*�����\�{�ҽX���U*/
#define PERM_VIEWSYSOP 000004000000 /* ��ı���� */
#define PERM_LOGUSER 000010000000 /* �[��ϥΪ̦��� */
diff --git a/include/pttstruct.h b/include/pttstruct.h
index 80cef86c..89135e89 100644
--- a/include/pttstruct.h
+++ b/include/pttstruct.h
@@ -119,6 +119,9 @@ typedef struct userec_t {
#define FAVNEW_FLAG 0x20 /* true if add new board into one's fav */
#define FOREIGN 0x100 /* true if a foreign */
#define LIVERIGHT 0x200 /* true if get "liveright" already */
+#define REJ_OUTTAMAIL 0x400 /* true if don't accept outside mails */
+#define REJECT_OUTTAMAIL (cuser.uflag2 & REJ_OUTTAMAIL)
+#define BEING_ANGEL 0x1000 /* true if willing to be angel */
#define BTLEN 48 /* Length of board title */
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index 6c0ae7c7..f3e7a855 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -816,7 +816,7 @@ mailtitle()
prints("[��]���}[����]���[��]�\\Ū�H�� [R]�^�H [x]��F "
"[y]�s�զ^�H [O]���~�H:%s [h]�D�U\n\033[7m"
"�s�� �� �� �@ �� �H �� �� �D \033[32m",
- HAS_PERM(PERM_NOOUTMAIL) ? "\033[31m��\033[m" : "�}");
+ REJECT_OUTTAMAIL ? "\033[31m��\033[m" : "�}");
buf[0] = 0;
if (mailsumlimit) {
snprintf(buf, sizeof(buf),
@@ -1038,7 +1038,7 @@ mail_edit(int ent, fileheader_t * fhdr, char *direct)
static int
mail_nooutmail(int ent, fileheader_t * fhdr, char *direct)
{
- cuser.userlevel ^= PERM_NOOUTMAIL;
+ cuser.uflag2 ^= REJ_OUTTAMAIL;
passwd_update(usernum, &cuser);
return TITLE_REDRAW;
@@ -1307,7 +1307,7 @@ mail_waterball(int ent, fileheader_t * fhdr, char *direct)
}
if (invalidaddr(address))
return -2;
- if( strstr(address, ".bbs") && HAS_PERM(PERM_NOOUTMAIL) ){
+ if( strstr(address, ".bbs") && REJECT_OUTTAMAIL ){
move(b_lines - 4, 0);
outs("\n�z�����n���}�������~�H, ���y��z�t�Τ~��H�J���G\n"
"�г·Ш�i�l����j���j�g O�令�������~�H (�b�k�W��)\n"
diff --git a/mbbsd/menu.c b/mbbsd/menu.c
index 5f8276b8..9e39ae1d 100644
--- a/mbbsd/menu.c
+++ b/mbbsd/menu.c
@@ -363,6 +363,9 @@ static commands_t talklist[] = {
{t_talk, PERM_PAGE, "TTalk ��H���"},
{t_chat, PERM_CHAT, "CChat ��a���{����h"},
{t_display, 0, "DDisplay ��ܤW�X�����T"},
+#ifdef PLAY_ANGEL
+ {t_changeangel, PERM_BASIC, "CChange Angel �󴫤p�Ѩ�"},
+#endif
{NULL, 0, NULL}
};
diff --git a/mbbsd/user.c b/mbbsd/user.c
index 4a531d10..8ca757f7 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -229,15 +229,23 @@ static void Customize(void)
move(4, 0);
prints("%-30s%10s\n", "A. ���y�Ҧ�",
wm[(cuser.uflag2 & WATER_MASK)]);
- prints("%-30s%10s\n", "B. �������~�H",
- ((cuser.userlevel & PERM_NOOUTMAIL) ? "�_" : "�O"));
+ prints("%-30s%10s\n", "B. �������~�H", REJECT_OUTTAMAIL ? "�_" : "�O");
prints("%-30s%10s\n", "C. �s�O�۰ʶi�ڪ��̷R",
((cuser.uflag2 & FAVNEW_FLAG) ? "�O" : "�_"));
prints("%-30s%10s\n", "D. �ثe���߱�", mindbuf);
prints("%-30s%10s\n", "E. ���G����ܧڪ��̷R",
((cuser.uflag2 & FAVNOHILIGHT) ? "�_" : "�O"));
- getdata(b_lines - 1, 0, "�� [A-E] �����]�w�A�� [Return] �����G",
- ans, 3, DOECHO);
+#ifdef PLAY_ANGEL
+ if( HAS_PERM(PERM_ANGEL) ){
+ prints("%-30s%10s\n", "F. �����p�D�H�߰�",
+ ((cuser.uflag2 & BEING_ANGEL) ? "�O" : "�_"));
+ getdata(b_lines - 1, 0, "�� [A-F] �����]�w�A�� [Return] �����G",
+ ans, 3, DOECHO);
+ }else
+#else
+ getdata(b_lines - 1, 0, "�� [A-E] �����]�w�A�� [Return] �����G",
+ ans, 3, DOECHO);
+#endif
switch( ans[0] ){
case 'A':
@@ -251,8 +259,9 @@ static void Customize(void)
break;
case 'B':
case 'b':
- cuser.userlevel ^= PERM_NOOUTMAIL;
+ cuser.uflag2 ^= REJ_OUTTAMAIL;
break;
+
case 'C':
case 'c':
cuser.uflag2 ^= FAVNEW_FLAG;
@@ -275,6 +284,14 @@ static void Customize(void)
case 'e':
cuser.uflag2 ^= FAVNOHILIGHT;
break;
+#ifdef PLAY_ANGEL
+ case 'F':
+ case 'f':
+ if( HAS_PERM(PERM_ANGEL) ){
+ cuser.uflag2 ^= BEING_ANGEL;
+ break;
+ }
+#endif
default:
done = 1;
}
diff --git a/mbbsd/var.c b/mbbsd/var.c
index c9347b20..f3179f37 100644
--- a/mbbsd/var.c
+++ b/mbbsd/var.c
@@ -21,7 +21,7 @@ char *str_permid[] = {
"BBSADM", /* PERM_POSTMARK */
"���C�J�Ʀ�]", /* PERM_NOTOP */
"�H�k�q�r��", /* PERM_VIOLATELAW */
- "���������~���H", /* PERM_ */
+ "�i����p�Ѩ�", /* PERM_ANGEL */
"�����\\�{�ҽX���U", /* PERM_NOREGCODE */
"��ı����", /* PERM_VIEWSYSOP */
"�[��ϥΪ̦���", /* PERM_LOGUSER */
diff --git a/util/AngelConvert.c b/util/AngelConvert.c
new file mode 100644
index 00000000..94c42cb4
--- /dev/null
+++ b/util/AngelConvert.c
@@ -0,0 +1,36 @@
+#include "bbs.h"
+
+int main(){
+ int i;
+ int orig_fd, new_fd;
+ userec_t u;
+ int count = 0;
+
+ orig_fd = open(BBSHOME "/.PASSWD", O_RDONLY);
+ if( orig_fd < 0 ){
+ perror("opening " BBSHOME "/.PASSWD for reading");
+ return 1;
+ }
+ printf("Reading from " BBSHOME "/.PASSWD\n");
+
+ new_fd = open(BBSHOME "/PASSWD.NEW", O_WRONLY);
+ if( new_fd < 0 ){
+ perror("opening " BBSHOME "/PASSWD.NEW for writing");
+ return 1;
+ }
+ printf("Writing to " BBSHOME "/PASSWD.NEW\n");
+
+ while(read(orig_fd, &u, sizeof(userec_t)) == sizeof(userec_t)){
+ u.uflag2 &= 0x03ff; // clear 0x400 and 0x1000
+ if( u.userlevel & OLD_PERM_NOOUTMAIL )
+ u.uflag2 |= REJ_OUTTAMAIL;
+ u.userlevel &= ~PERM_ANGEL;
+ write(new_fd, &u, sizeof(userec_t));
+ ++count;
+ }
+
+ close(orig_fd);
+ close(new_fd);
+ printf("Done, totally %d accounts transfered\n", count);
+ return 0;
+}
diff --git a/util/bbsmail.c b/util/bbsmail.c
index a58d5763..dd015099 100644
--- a/util/bbsmail.c
+++ b/util/bbsmail.c
@@ -93,7 +93,7 @@ int mail2bbs(char *userid)
return -1;//EX_NOUSER;
}
- if( xuser.userlevel & PERM_NOOUTMAIL )
+ if( xuser.uflag2 & REJ_OUTTAMAIL )
return -1; //���������~�H
sprintf(filename, BBSHOME "/home/%c/%s", userid[0], userid);