Define this function to crm_helpdesk.py
    def message_get_reply_to(self, cr, uid, ids, context=None):
        replies = []
        for crm in self.browse(cr, uid, ids, context):
            if crm.section_id and crm.section_id.reply_to:
 replies.append(crm.section_id.reply_to)