* Now compatible with SunOS * Correctly handle international character sets in email From Plus changes from Debian: * Document more options in config.py * Flesh out manual page * Check exit status of sendmail, and die if it fails * Use fcntl even on non-Sunos-Unix
76 lines
2.7 KiB
Python
76 lines
2.7 KiB
Python
### Vaguely Customizable Options ###
|
|
|
|
# The email address messages are from by default:
|
|
DEFAULT_FROM = "bozo@dev.null.invalid"
|
|
|
|
# 1: Send text/html messages when possible.
|
|
# 0: Convert HTML to plain text.
|
|
HTML_MAIL = 0
|
|
|
|
# 1: Only use the DEFAULT_FROM address.
|
|
# 0: Use the email address specified by the feed, when possible.
|
|
FORCE_FROM = 0
|
|
|
|
# 1: Receive one email per post
|
|
# 0: Receive an email every time a post changes
|
|
TRUST_GUID = 1
|
|
|
|
# 1: Generate Date header based on item's date, when possible
|
|
# 0: Generate Date header based on time sent
|
|
DATE_HEADER = 0
|
|
|
|
# A tuple consisting of some combination of
|
|
# ('issued', 'created', 'modified', 'expired')
|
|
# expressing ordered list of preference in dates
|
|
# to use for the Date header of the email.
|
|
DATE_HEADER_ORDER = ('modified', 'issued', 'created')
|
|
|
|
# 1: Apply Q-P conversion (required for some MUAs).
|
|
# 0: Send message in 8-bits.
|
|
# http://cr.yp.to/smtp/8bitmime.html
|
|
QP_REQUIRED = 0
|
|
|
|
# 1: Name feeds as they're being processed.
|
|
# 0: Keep quiet.
|
|
VERBOSE = 0
|
|
|
|
# 1: Use the publisher's email if you can't find the author's.
|
|
# 0: Just use the DEFAULT_FROM email instead.
|
|
USE_PUBLISHER_EMAIL = 0
|
|
|
|
# 1: Use SMTP_SERVER to send mail.
|
|
# 0: Call /usr/sbin/sendmail to send mail.
|
|
SMTP_SEND = 0
|
|
|
|
SMTP_SERVER = "smtp.yourisp.net:25"
|
|
AUTHREQUIRED = 0 # if you need to use SMTP AUTH set to 1
|
|
SMTP_USER = ' username' # for SMTP AUTH, set SMTP username here
|
|
SMTP_PASS = 'password' # for SMTP AUTH, set SMTP password here
|
|
|
|
# Set this to add a bonus header to all emails (start with '\n').
|
|
BONUS_HEADER = ''
|
|
# Example: BONUS_HEADER = '\nApproved: joe@bob.org'
|
|
|
|
# Set this to override From addresses. Keys are feed URLs, values are new titles.
|
|
OVERRIDE_FROM = {}
|
|
|
|
# Set this to override the timeout (in seconds) for feed server response
|
|
FEED_TIMEOUT = 60
|
|
|
|
# Optional CSS styling
|
|
USE_CSS_STYLING = 0
|
|
STYLE_SHEET='h1 {font: 18pt Georgia, "Times New Roman";} body {font: 12pt Arial;} a:link {font: 12pt Arial; font-weight: bold; color: #0000cc} blockquote {font-family: monospace; } .header { background: #e0ecff; border-bottom: solid 4px #c3d9ff; padding: 5px; margin-top: 0px; color: red;} .header a { font-size: 20px; text-decoration: none; } .footer { background: #c3d9ff; border-top: solid 4px #c3d9ff; padding: 5px; margin-bottom: 0px; } #entry {border: solid 4px #c3d9ff; } #body { margin-left: 5px; margin-right: 5px; }'
|
|
|
|
# If you have an HTTP Proxy set this in the format 'http://your.proxy.here:8080/'
|
|
PROXY=""
|
|
|
|
## html2text options ##
|
|
|
|
# Use Unicode characters instead of their ascii psuedo-replacements
|
|
UNICODE_SNOB = 0
|
|
|
|
# Put the links after each paragraph instead of at the end.
|
|
LINKS_EACH_PARAGRAPH = 0
|
|
|
|
# Wrap long lines at position. 0 for no wrapping. (Requires Python 2.3.)
|
|
BODY_WIDTH = 0
|