diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-02-24 19:15:08 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-02-24 19:15:08 -0200 |
commit | e42539462dad7c66b12b9ff899a45c227e115f54 (patch) | |
tree | 99bb23dbbc4ec93704fa8f5ae58a060ad9da3304 | |
parent | 0d86856e51af59a670cdb96762d74031abb5025b (diff) | |
download | firma-e42539462dad7c66b12b9ff899a45c227e115f54.tar.gz firma-e42539462dad7c66b12b9ff899a45c227e115f54.tar.bz2 |
Adding sample firma.conf and lists folder
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | firma.conf | 50 | ||||
-rw-r--r-- | lists/.empty | 0 |
3 files changed, 51 insertions, 1 deletions
@@ -133,7 +133,7 @@ Setup Firma installation is quite simple: - 1 - Create a folder to store lists; by default firma use /var/lib/firma + 1 - Create a folder to store lists; by default firma use /var/lib/firma/lists but you can use anything, just edit firma and change FIRMA_LIST_PATH variable. diff --git a/firma.conf b/firma.conf new file mode 100644 index 0000000..f398a06 --- /dev/null +++ b/firma.conf @@ -0,0 +1,50 @@ +# +# Default firma configuration file +# + +# Path to the GnuPG binary +GPG_BINARY=/usr/bin/gpg + +# Path to the mailing lists directory +LISTS_DIR=/var/lib/firma/lists + +# Path to the mail transport agent to be used (e.g., sendmail) +MAIL_AGENT=/usr/sbin/sendmail + +# Command-line arguments to be passed to the command above +MAIL_AGENT_ARGS=-t + +# User that runs firma (usually the same as your MTA user); +# defaults to "nobody"; you can also specify this parameter +# in each mailing list config file if you plan to have one +# user per mailing list +FIRMA_USER=nobody + +# Group that runs firma (usually the same as your MTA group); +# defaults to "nobody"; you can also specify this parameter +# in each mailing list config file if you plan to have one +# group per mailing list +FIRMA_GROUP=nobody + +# Set to '1' to log errors and warnings to syslog, else firma +# will print errors to STDERR +LOG_TO_SYSLOG=0 + +# If logging to syslog, set the path to logger's binary +#LOGGER_BINARY= + +# If logging to syslog, set a priority for the error messages (defaults to 'user.err') +#SYSLOG_PRIORITY= + +# Set to '1' to use GnuPG's --hidden-recipient option, available from +# version 1.4.0 onwards (try 'man gpg' for more information) +USE_GPG_HIDDEN_RECIPIENT_OPTION= + +# Headers that should be stripped from list messages on all lists +# running under firma (space separated case-insensitive entries) +# (may include regexps (e.g., X-.*) +REMOVE_THESE_HEADERS_ON_ALL_LISTS= + +# Default keyserver to import/export keys +# (defaults to keyserver.noreply.org) +KEYSERVER= diff --git a/lists/.empty b/lists/.empty new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/lists/.empty |