David Collantes <[EMAIL PROTECTED]> writes:
The following email address --valid when not using tofmipd-- chokes tofmipd:
peter.o'[EMAIL PROTECTED]
Error given:
----- The following addresses had permanent fatal errors ----- peter.o\'[EMAIL PROTECTED] (reason: 550 5.1.1 <peter.o\'[EMAIL PROTECTED]>... User unknown) (expanded from: peter.o\'[EMAIL PROTECTED])
What version of TMDA are you using? What does your /etc/tmdarc and ~/.tmda/config look like? What program is returning the error message above?
I am using X-Delivery-Agent: TMDA/0.87+ (Decidedly). I believe tofmipd did not change on this CVS pull. I do not have a /etc/tmdarc. My config is attached. The error comes from sendmail, but because tofmipd is escaping the _'_ with a \ and such user, peter.o\'[EMAIL PROTECTED] does not exists, but peter.o'[EMAIL PROTECTED] does.
Cheers,
-- David Collantes - College of Business Administration, UCF - (407)823-3418 Please do not forward, Cc or Bcc this email to anyone without my consent. This email was meant for you and no one else, unless otherwise specified.
# -*- python -*- import time, os, random, socket os.environ["QMAILIDHOST"] = "youshallnotpass.bus.ucf.edu"
ACTION_EXPIRED_DATED = "bounce"
ACTION_FAIL_DATED = "bounce"
ACTION_FAIL_KEYWORD = "bounce"
ACTION_FAIL_SENDER = "bounce"
ACTION_HEADER_INCOMING = 1
ACTION_INCOMING = "confirm"
ACTION_OUTGOING = "dated"
AUTORESPONSE_INCLUDE_SENDER_COPY = 2
ADDED_HEADERS_CLIENT = {
"User-Agent" : "Thunderbird, Open Source Client with plenty juice.",
"X-Primary-Address" : "[EMAIL PROTECTED]",
"X-Antispam-Info" : os.popen("/usr/bin/whoami").read().strip(),
"X-Localtime" : time.asctime(),
"X-Operating-System" : os.uname()[0],
"X-Uptime" : os.popen("/usr/bin/uptime").read().strip()
}
# rcvd = os.environ.get('TMDA_OFMIPD_RECEIVED')
# if rcvd:
# import re
# mo = re.search(r'(\d+\.\d+\.\d+\.\d+)', rcvd)
# ADDED_HEADERS_CLIENT['X-Originating-IP'] = mo.group(1)
ADDED_HEADERS_SERVER = ADDED_HEADERS_CLIENT
BARE_APPEND = os.path.expanduser("~/.tmda/lists/whitelist.txt")
BOUNCE_ENV_SENDER = "[EMAIL PROTECTED]"
BOUNCE_TEXT_EXPIRED_DATED = "You have sent email to an expired address."
BOUNCE_TEXT_FAIL_DATED = "You have sent email to an invalid address."
BOUNCE_TEXT_FAIL_KEYWORD = "You have sent email to an invalid address."
BOUNCE_TEXT_FAIL_SENDER = "You have sent email to an address you are not authorized to
use."
BOUNCE_TEXT_FILTER_INCOMING = "Message rejected by recipient."
BOUNCE_TEXT_INVALID_CONFIRMATION = "This confirmation address is invalid."
BOUNCE_TEXT_NONEXISTENT_PENDING = "Your original message could not be located."
BOUNCE_TEXT_WRONG_SUBJECT = "Your subject contains invalid characters that I can not
read."
CONFIRM_ACCEPT_TEXT_ALREADY_CONFIRMED = "Your original message has already been
confirmed and delivered; you don't need to confirm it again."
CONFIRM_ACCEPT_TEXT_ALREADY_RELEASED = "Your original message has already been
released and delivered."
CONFIRM_ACCEPT_TEXT_INITIAL = "Your confirmation was accepted, and so your original
message has been delivered."
CONFIRM_APPEND = os.path.expanduser("~/.tmda/lists/confirmed.txt")
DATED_TEMPLATE_VARS = 1
DELIVERY = "/var/spool/mail/david"
FILTER_INCOMING = os.path.expanduser("~/.tmda/filters/incoming.txt")
FILTER_OUTGOING = os.path.expanduser("~/.tmda/filters/outgoing.txt")
FINGERPRINT = ["message-id", "from", "date", "body"]
FULLNAME = "David Collantes"
HMAC_BYTES = 5
HOSTNAME = "bus.ucf.edu"
MAIL_TRANSFER_AGENT = "sendmail"
MAX_AUTORESPONSES_PER_DAY = 20
MESSAGE_FROM_STYLE = "angles"
MESSAGE_TAG_HEADER_STYLE = "angles"
OUTGOINGMAIL = "smtp"
# PENDING_BLACKLIST_APPEND = os.path.expanduser("~/.tmda/lists/blacklist.txt")
PENDING_CACHE = os.path.expanduser("~/.tmda/pending/msgcache.txt")
PENDING_CACHE_LEN = 5000
PENDING_CLEANUP_ODDS = 1.0
# PENDING_DELETE_APPEND = os.path.expanduser("~/.tmda/lists/blacklist.txt")
PENDING_DIR = os.path.expanduser("~/.tmda/pending/")
PENDING_LIFETIME = "1w"
PENDING_RELEASE_APPEND = os.path.expanduser("~/.tmda/lists/whitelist.txt")
PRIMARY_ADDRESS_MATCH = 3
PURGED_HEADERS_CLIENT = ["bcc", "resent-bcc", "x-mailer", "x-msmail-priority",
"x-mimeole"]
RECIPIENT_DELIMITER = "+"
SMTPHOST = "localhost"
TAGS_CONFIRM = ['confirm', 'c']
TAGS_DATED = ['dated', 'd', 'exp', 'expires']
TAGS_KEYWORD = ['keyword', 'key', 'kw']
TAGS_SENDER = ['sender', 's']
TEMPLATE_DIR = os.path.expanduser("~/.tmda/templates/")
TIMEOUT = "3d"
TMDAINJECT = "i"
USERNAME = "david"
X_TMDA_IN_SUBJECT = 1
LOGFILE_DEBUG = os.path.expanduser("~/.tmda/logs/debug.txt")
LOGFILE_INCOMING = os.path.expanduser("~/.tmda/logs/incoming.txt")
LOGFILE_OUTGOING = os.path.expanduser("~/.tmda/logs/outgoing.txt")
_____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
