Initial commit.
This commit is contained in:
4
mail/spamassassin/pyzor-0.7.0/config/accounts.sample
Normal file
4
mail/spamassassin/pyzor-0.7.0/config/accounts.sample
Normal file
@@ -0,0 +1,4 @@
|
||||
## This file should contain a list of `host : port : username : salt,key`
|
||||
## each on a new line. The salt and key can be generated with genkey command
|
||||
## in the pyzor client. Example:
|
||||
# 127.0.0.1 : 24441 : alice : d28f86151e80a9accba4a4eba81c460532384cd6,fc7f1cad729b5f3862b2ef192e2d9e0d0d4bd515
|
||||
96
mail/spamassassin/pyzor-0.7.0/config/config.sample
Normal file
96
mail/spamassassin/pyzor-0.7.0/config/config.sample
Normal file
@@ -0,0 +1,96 @@
|
||||
## Note that the options that require a file name, must not contain absolute
|
||||
## paths. They are relative to the specified --homedir, which defaults to
|
||||
## ~/.pyzor
|
||||
|
||||
## All of these options are overridable from the respective command-line
|
||||
## arguments.
|
||||
|
||||
## The client section only affects the pyzor client.
|
||||
|
||||
[client]
|
||||
## The `ServersFile` must contain a newline-separated list of server
|
||||
## addresses to report/whitelist/check with.
|
||||
# ServersFile = servers
|
||||
|
||||
## The `AccountsFile` file containing information about accounts on servers.
|
||||
# AccountsFile = accounts
|
||||
|
||||
## This option specifies the name of the log file.
|
||||
# LogFile =
|
||||
|
||||
## This options specifies the number of seconds that the pyzor client should
|
||||
## wait for a response from the server before timing out.
|
||||
# Timeout = 5
|
||||
|
||||
## This options specifies the input style of the pyzor client. Current options
|
||||
## are:
|
||||
## - msg (individual RFC5321 message)
|
||||
## - mbox (mbox file of messages)
|
||||
## - digests (Pyzor digests, one per line)
|
||||
# Style = msg
|
||||
|
||||
## Thes options specify the threshold for number of reports/whitelists.
|
||||
## According to these thresholds the pyzor client exit code will differ.
|
||||
# ReportThreshold = 0
|
||||
# WhitelistThreshold = 0
|
||||
|
||||
## The server section only affects the pyzord server.
|
||||
|
||||
[server]
|
||||
## Specifes the port and interface to listen on.
|
||||
# Port = 24441
|
||||
# ListenAddress = 0.0.0.0
|
||||
|
||||
## This option specifies the name of the log file.
|
||||
# LogFile =
|
||||
## This option specifies the name of the usage log file.
|
||||
# UsageLogFile =
|
||||
|
||||
## This file will contain the PID of the pyzord daemon, when the it's
|
||||
## started with the --detach options. The file is removed when the daemon is
|
||||
## closed
|
||||
# PidFile = pyzord.pid
|
||||
|
||||
## This file must contain the username and their keys
|
||||
# PasswdFile = pyzord.passwd
|
||||
|
||||
## This file defines the ACL for the users
|
||||
# AccessFile = pyzord.access
|
||||
|
||||
## These settings define the storage engine that the pyzord server should use.
|
||||
|
||||
## Example for gdbm (default):
|
||||
# Engine = gdbm
|
||||
# DigestDB = pyzord.db
|
||||
|
||||
## Example for mysql:
|
||||
# Engine = mysql
|
||||
# DigestDB = localhost,user,passwd,pyzor_db,pyzor_table
|
||||
|
||||
## Example for redis:
|
||||
# Engine = redis
|
||||
# DigestDB = localhost,6379,,0
|
||||
## Or if a password is required
|
||||
# DigestDB = localhost,6379,passwd,0
|
||||
|
||||
## The maximum age of an record, after which it will be removed.
|
||||
## To disable this set this to 0.
|
||||
# CleanupAge = 10368000 # aprox 4 months
|
||||
|
||||
|
||||
## These setting define how and if the pyzord server should use concurrency
|
||||
## For multi-threading:
|
||||
# Threads = False
|
||||
# MaxThreads = 0 # unlimited
|
||||
# DBConnections = 0 # new connection for each request
|
||||
## For multi-processing:
|
||||
# Processes = False
|
||||
# MaxProcesses = 40
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
## This defines the ACL for each user, by default if a user is not specified
|
||||
## here he is denied all access ( this includes anonymous users). Examples:
|
||||
# check report ping pong info whitelist : alice : allow
|
||||
# ALL : anonymous : allow
|
||||
# whitelist : anonymous : deny
|
||||
4
mail/spamassassin/pyzor-0.7.0/config/pyzord.paswd.sample
Normal file
4
mail/spamassassin/pyzor-0.7.0/config/pyzord.paswd.sample
Normal file
@@ -0,0 +1,4 @@
|
||||
## This file must contain the username and their keys, so that the recieving
|
||||
## server can verify the user's signature. Example
|
||||
# alice : fc7f1cad729b5f3862b2ef192e2d9e0d0d4bd515
|
||||
# bob : cf88277c5d4abdc0a3f56f416011966d04a3f462
|
||||
3
mail/spamassassin/pyzor-0.7.0/config/servers.sample
Normal file
3
mail/spamassassin/pyzor-0.7.0/config/servers.sample
Normal file
@@ -0,0 +1,3 @@
|
||||
## This file should contain a list of pyzor servers to which to direct the
|
||||
## requests. Each address:port on a new line.
|
||||
public.pyzor.org:24441
|
||||
Reference in New Issue
Block a user