forked from indymedia/epicyon
Increase max posts
parent
6dc55a1988
commit
3bd99d04ca
|
@ -3760,7 +3760,7 @@ def runDaemon(projectVersion, \
|
|||
httpd.maxPostLength=1024*1024*30
|
||||
httpd.maxMediaSize=httpd.maxPostLength
|
||||
httpd.maxMessageLength=5000
|
||||
httpd.maxPostsInBox=1024
|
||||
httpd.maxPostsInBox=10000
|
||||
httpd.domain=domain
|
||||
httpd.port=port
|
||||
httpd.domainFull=domain
|
||||
|
|
|
@ -964,7 +964,7 @@ if args.changepassword:
|
|||
archiveWeeks=4
|
||||
if args.archiveWeeks:
|
||||
archiveWeeks=args.archiveWeeks
|
||||
archiveMaxPosts=1024
|
||||
archiveMaxPosts=10000
|
||||
if args.archiveMaxPosts:
|
||||
archiveMaxPosts=args.archiveMaxPosts
|
||||
|
||||
|
|
6
posts.py
6
posts.py
|
@ -1913,7 +1913,7 @@ def createBoxBase(baseDir: str,boxname: str, \
|
|||
return boxHeader
|
||||
return boxItems
|
||||
|
||||
def expireCache(baseDir: str,personCache: {},httpPrefix: str,archiveDir: str,maxPostsInBox=1024):
|
||||
def expireCache(baseDir: str,personCache: {},httpPrefix: str,archiveDir: str,maxPostsInBox=10000):
|
||||
"""Thread used to expire actors from the cache and archive old posts
|
||||
"""
|
||||
while True:
|
||||
|
@ -1922,7 +1922,7 @@ def expireCache(baseDir: str,personCache: {},httpPrefix: str,archiveDir: str,max
|
|||
expirePersonCache(basedir,personCache)
|
||||
archivePosts(baseDir,httpPrefix,archiveDir,maxPostsInBox)
|
||||
|
||||
def archivePosts(baseDir: str,httpPrefix: str,archiveDir: str,maxPostsInBox=1024) -> None:
|
||||
def archivePosts(baseDir: str,httpPrefix: str,archiveDir: str,maxPostsInBox=10000) -> None:
|
||||
"""Archives posts for all accounts
|
||||
"""
|
||||
if archiveDir:
|
||||
|
@ -1956,7 +1956,7 @@ def archivePosts(baseDir: str,httpPrefix: str,archiveDir: str,maxPostsInBox=1024
|
|||
maxPostsInBox)
|
||||
|
||||
def archivePostsForPerson(httpPrefix: str,nickname: str,domain: str,baseDir: str, \
|
||||
boxname: str,archiveDir: str,maxPostsInBox=1024) -> None:
|
||||
boxname: str,archiveDir: str,maxPostsInBox=10000) -> None:
|
||||
"""Retain a maximum number of posts within the given box
|
||||
Move any others to an archive directory
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue