diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-09-26 10:52:38 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-09-26 10:52:38 +0800 |
commit | 0eedb4d41e4d69c8042c5e7a2dd956e63be7c824 (patch) | |
tree | 83834818078de56b7080864ac5474b41fcc14a35 | |
parent | afdd6c13fbb883c85c72e2df7366da912d1ce62c (diff) | |
download | pttbbs-0eedb4d41e4d69c8042c5e7a2dd956e63be7c824.tar pttbbs-0eedb4d41e4d69c8042c5e7a2dd956e63be7c824.tar.gz pttbbs-0eedb4d41e4d69c8042c5e7a2dd956e63be7c824.tar.bz2 pttbbs-0eedb4d41e4d69c8042c5e7a2dd956e63be7c824.tar.lz pttbbs-0eedb4d41e4d69c8042c5e7a2dd956e63be7c824.tar.xz pttbbs-0eedb4d41e4d69c8042c5e7a2dd956e63be7c824.tar.zst pttbbs-0eedb4d41e4d69c8042c5e7a2dd956e63be7c824.zip |
remove the 2048 limit
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3211 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/mail.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c index eb7ce9d7..56784a24 100644 --- a/mbbsd/mail.c +++ b/mbbsd/mail.c @@ -1622,10 +1622,6 @@ send_inner_mail(const char *fpath, const char *title, const char *receiver) if (chk_mailbox_limit()) return -2; } - // XXX should we use MAX_EXKEEPMAIL instead? - else if (dashs(fname) >= 2048 * sizeof(fileheader_t)) { - return -2; - } sethomepath(fname, rightid); stampfile(fname, &mymail); |