summaryrefslogtreecommitdiffstats
path: root/mbbsd/mail.c
diff options
context:
space:
mode:
authorwens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-03 21:40:56 +0800
committerwens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-03 21:40:56 +0800
commit0d2cdc827cdad0928646498d9105b951eaf4995f (patch)
tree24ad314bb778d1d96c031c4b1aa1083ccec14851 /mbbsd/mail.c
parentfea64042f0f66b989215dfdf644dade15b2b6be1 (diff)
downloadpttbbs-0d2cdc827cdad0928646498d9105b951eaf4995f.tar
pttbbs-0d2cdc827cdad0928646498d9105b951eaf4995f.tar.gz
pttbbs-0d2cdc827cdad0928646498d9105b951eaf4995f.tar.bz2
pttbbs-0d2cdc827cdad0928646498d9105b951eaf4995f.tar.lz
pttbbs-0d2cdc827cdad0928646498d9105b951eaf4995f.tar.xz
pttbbs-0d2cdc827cdad0928646498d9105b951eaf4995f.tar.zst
pttbbs-0d2cdc827cdad0928646498d9105b951eaf4995f.zip
Post limits do not apply to BMs and SYSOPs
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2574 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mail.c')
-rw-r--r--mbbsd/mail.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index 2b0b7160..839f618c 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -1044,9 +1044,10 @@ mail_cross_post(int ent, fileheader_t * fhdr, char *direct)
return TITLE_REDRAW;
ent = getbnum(xboard);
- if ( cuser.firstlogin > (now - (time4_t)bcache[currbid - 1].post_limit_regtime * 2592000) ||
+ if ( ((currmode & MODE_BOARD) || HAS_PERM(PERM_SYSOP)) &&
+ (cuser.firstlogin > (now - (time4_t)bcache[currbid - 1].post_limit_regtime * 2592000) ||
cuser.numlogins < ((unsigned int)(bcache[ent - 1].post_limit_logins) * 10) ||
- cuser.numposts < ((unsigned int)(bcache[ent - 1].post_limit_posts) * 10) ) {
+ cuser.numposts < ((unsigned int)(bcache[ent - 1].post_limit_posts) * 10)) ) {
move(5, 10);
vmsg("§A¤£°÷¸ê²`³á¡I");
return FULLUPDATE;