[EMAIL PROTECTED] wrote:
>
>Where can you set an explicit digest reply-to email address?  I have tried the
>General Options and the reply-to is always to the list no matter what I change
>(even if I set an explicit reply-to address).


Those settings only apply to messages. Currently, From: and Reply-To:
for digests are set to the list address in
Mailman/Handlers/ToDigest.py in the send_i18n_digests() function.


>If I have a one-way list that
>only sends in digest, I don't want people/autoresponders to pick up the list as
>the reply-to and fill up the next digest (in the case when an allowed poster is
>on holidays and fails to set their out-of-office policy correctly, for 
>example).


You're dealing with broken autoresponders if they're responding to to
digests in the first place so you can't predict what they will do with
Reply-To:, however, you could do something like changing

    mimemsg['Reply-To'] = mlist.GetListEmail()

to

    if mlist.reply_to_address:
        mimemsg['Reply-To'] = mlist.reply_to_address
    else:
        mimemsg['Reply-To'] = mlist.GetListEmail()

and similarly a few lines below with rfc1153msg['Reply-To']. This will
honor the list's reply_to_address if there is one.

-- 
Mark Sapiro <[EMAIL PROTECTED]>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9

Reply via email to