Index: openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/sample-article-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/sample-article-create.sql,v diff -u -N -r1.5 -r1.6 --- openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/sample-article-create.sql 14 May 2001 23:16:08 -0000 1.5 +++ openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/sample-article-create.sql 9 Oct 2001 00:03:15 -0000 1.6 @@ -217,6 +217,27 @@ ''; end if; + -- NOTICE, NOTICE, NOTICE + -- + -- Since postgresql doesn't support out parameters, this + -- function call has been moved from workflow_case.notify_assignee + -- into the callback function. + + -- If you implement a new notification callback, make sure + -- that this function call is included at the end of the + -- callback routine just as we have done for this example code. + -- + -- DanW (dcwickstrom@earthlink.net) + + v_request_id := acs_mail_nt__post_request ( + notification__party_from, -- party_from + notification__party_to, -- party_to + ''f'', -- expand_group + v_subject, -- subject + v_body, -- message + 0 -- max_retries + ); + return null; end;' language 'plpgsql';