# File lib/puppet/provider/mailalias/aliases.rb, line 12
12:         def post_parse(record)
13:             # LAK:NOTE See http://snurl.com/21zf8  [groups_google_com]
14:             # It's not sufficient to assign to an existing hash.
15:             recipient = record[:recipient].split(/\s*,\s*/).collect { |d| d.gsub(/^['"]|['"]$/, '') }
16:             record[:recipient] = recipient
17:             record
18:         end