mirror of https://gitlab.com/bashrc2/epicyon
Pass onion domain to inbox queue
parent
b366b9f80f
commit
4b46b1f7f5
|
@ -6149,7 +6149,8 @@ def runDaemon(blogsInstance: bool,mediaInstance: bool, \
|
||||||
baseDir,httpPrefix,httpd.sendThreads, \
|
baseDir,httpPrefix,httpd.sendThreads, \
|
||||||
httpd.postLog,httpd.cachedWebfingers, \
|
httpd.postLog,httpd.cachedWebfingers, \
|
||||||
httpd.personCache,httpd.inboxQueue, \
|
httpd.personCache,httpd.inboxQueue, \
|
||||||
domain,port,useTor,httpd.federationList, \
|
domain,onionDomain,port,useTor, \
|
||||||
|
httpd.federationList, \
|
||||||
httpd.ocapAlways,maxReplies, \
|
httpd.ocapAlways,maxReplies, \
|
||||||
domainMaxPostsPerDay,accountMaxPostsPerDay, \
|
domainMaxPostsPerDay,accountMaxPostsPerDay, \
|
||||||
allowDeletion,debug,maxMentions,maxEmoji, \
|
allowDeletion,debug,maxMentions,maxEmoji, \
|
||||||
|
|
3
inbox.py
3
inbox.py
|
@ -2001,7 +2001,8 @@ def runInboxQueue(recentPostsCache: {},maxRecentPosts: int, \
|
||||||
projectVersion: str, \
|
projectVersion: str, \
|
||||||
baseDir: str,httpPrefix: str,sendThreads: [],postLog: [], \
|
baseDir: str,httpPrefix: str,sendThreads: [],postLog: [], \
|
||||||
cachedWebfingers: {},personCache: {},queue: [], \
|
cachedWebfingers: {},personCache: {},queue: [], \
|
||||||
domain: str,port: int,useTor: bool,federationList: [], \
|
domain: str,onionDomain: str,port: int,useTor: bool, \
|
||||||
|
federationList: [], \
|
||||||
ocapAlways: bool,maxReplies: int, \
|
ocapAlways: bool,maxReplies: int, \
|
||||||
domainMaxPostsPerDay: int,accountMaxPostsPerDay: int, \
|
domainMaxPostsPerDay: int,accountMaxPostsPerDay: int, \
|
||||||
allowDeletion: bool,debug: bool,maxMentions: int, \
|
allowDeletion: bool,debug: bool,maxMentions: int, \
|
||||||
|
|
Loading…
Reference in New Issue