diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/perm.h | 7 | ||||
-rw-r--r-- | include/pttstruct.h | 3 |
2 files changed, 9 insertions, 1 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 /* 不列入排行榜 */ #define PERM_VIOLATELAW 000000400000 /* 違法通緝中 */ -#define PERM_NOOUTMAIL 000001000000 /* 不接受站外的信 */ + +#ifdef PLAY_ANGEL +#define PERM_ANGEL 000001000000 /* 有資格擔任小天使 */ +#endif +#define OLD_PERM_NOOUTMAIL 000001000000 /* 不接受站外的信 */ + #define PERM_NOREGCODE 000002000000 /*不允許認證碼註冊*/ #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 */ |