Commit 73c86df4 authored by Yusei Tahara's avatar Yusei Tahara

2009-03-02 yusei

* Bug fixed. Recipients of ingested email should be set to destination category on event.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@25760 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 19d5f2da
......@@ -62,6 +62,9 @@ for recipient in text.split(\',\'):\n
if "<" in recipient:\n
recipient = recipient[recipient.find(\'<\') + 1:]\n
recipient = recipient[:recipient.find(\'>\')]\n
else:\n
# Remove extra spaces.\n
recipient = recipient.strip()\n
if recipient:\n
email = getResultValue(url_string=recipient, portal_type=\'Email\', parent_portal_type=\'Person\')\n
if email is None:\n
......
2009-03-02 yusei
* Bug fixed. Recipients of ingested email should be set to destination category on event.
2008-11-13 yusei
* Start to develop version 5.4.
......
334
\ No newline at end of file
335
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment