[default]

# Your email address, for replying to qsecretary confirmation notices
confirmation_address = 'myemailaddress@example.net'

#
# Secret
#
# For additional security, add some entropy to the hashing algorithm.  This
# helps to prevent pymsgauth from confirming qsecretary notices from forged
# messages.  Define it as a string, like this:
#
#	secret = "my secret"
#
# It should contain a secret of sufficient length and entropy to prevent message 
# forgeries.  Consider using 128 bytes from /dev/random or /dev/urandom and 
# converted to hexadecimal format as your secret; this will create a 1024-bit 
# secret and make forgeries nearly impossible.
#
# An easy way to generate the necessary string from a shell with GNU-type
# tools is:
#
#  dd if=/dev/random bs=128 count=1 2>/dev/null | od -An -t x -w128 | tr -d ': '
#
secret = ''

# What is the "real" mail delivery program?  Any arguments passed to the
# pymsgauth_mail wrapper will be appended to this.  The following is the
# default, and works well with mutt on a qmail system.
# This can be overridden on a per-message basis in the environment
# variable MAIL_PROG.
#
#   mail_prog = '/var/qmail/bin/qmail-inject -A'

# You can add arbitrary extra arguments to the mail program commandline
# here.
#
#   extra_mail_args = ""

# Configure which messages pymsgauth will add a token to; a message which
# includes any of the configured recipients will be sent with a token.
# List once for each recipient.
#
token_recipient = qmail@list.cr.yp.to
token_recipient = log@list.cr.yp.to
token_recipient = dns@list.cr.yp.to

# From what domains should qsecretary notices be processed?  List each domain
# as a separate item.  The default includes list.cr.yp.to; you may wish to
# add other domains if the qsecretary package is released to the public.
# To replicate the default:
#
#   confirm_domain = list.cr.yp.to

# By default, tokens are allowed to live for three days.  Change that by
# setting this value to the new lifetime, in seconds.
#
#   token_lifetime = 86400

# By default, pymsgauth will only log warnings or errors.  If you want a little
# more verbosity, change this to INFO.
#
#   log_level = WARN

# Log messages go to stderr by default; this will cause log messages during
# qsecretary notice processing to go to the qmail-send logs, and errors during
# message submission to hopefully be displayed by your MUA.  Turn this off
# by specifying 0 instead of 1.
#
#   log_stderr = 1

# You can also log to a file by specifying a path here.  Leading tilde 
# character will be username-expanded, so values like "~/logs/pymsgauth.log"
# do the right thing.
#
#   log_file = ~/.pymsgauth/log
