Forum OpenACS Development: Re: Problem with notifications from Bug-Tracker

Collapse
Posted by Richard Hamilton on
Ok, at last I think I've found it.

In notifications-email-procs-tcl the proc

ad_proc -public send

calls acs-mail-lite::send

as follows:

    acs_mail_lite::send \
          -to_addr $email \
          -from_addr $from_email \
          -reply_to $reply_to \
          -mime_type $mime_type \
          -subject $subject \
          -body $content \
          -file_ids $file_ids \
          -use_sender \
          -extraheaders $eh_list_of_lists
    }

I think that -from_addr

should be

-from_party_id

but I'm not sure whether the $from_email should be passed or the party_id!

Clearly the 'complex' procs can deal with both internal ids (and look up the email) and simple emails. But the non-complex code seems to be email only.

It looks to me as if recent mods to enhance acs-mail-lite have broken this.

Any guidance eagerly invited! Who is the maintainer for notifications?

Regards
Richard